diff --git a/src/wasm-lib/Cargo.lock b/src/wasm-lib/Cargo.lock index a7def2efe..6b3bcc0ad 100644 --- a/src/wasm-lib/Cargo.lock +++ b/src/wasm-lib/Cargo.lock @@ -1589,6 +1589,8 @@ dependencies = [ "console", "lazy_static", "linked-hash-map", + "pest", + "pest_derive", "regex", "serde", "similar", diff --git a/src/wasm-lib/justfile b/src/wasm-lib/justfile index 58c6815a3..819ecb241 100644 --- a/src/wasm-lib/justfile +++ b/src/wasm-lib/justfile @@ -13,15 +13,7 @@ redo-kcl-stdlib-docs: EXPECTORATE=overwrite {{cnr}} -p kcl-lib docs::gen_std_tests::test_generate_stdlib # Create a new KCL deterministic simulation test case. -new-sim-test test_name kcl_program render_to_png="true": - # Each test file gets its own directory. This will contain the KCL program, and its - # snapshotted artifacts (e.g. serialized tokens, serialized ASTs, program memory, - # PNG snapshots, etc). - mkdir kcl/tests/{{test_name}} - echo "{{kcl_program}}" > kcl/tests/{{test_name}}/input.kcl - # Add the various tests for this new test case. - cat kcl/tests/simtest.tmpl | sed "s/TEST_NAME_HERE/{{test_name}}/" | sed "s/RENDER_TO_PNG/{{render_to_png}}/" >> kcl/src/simulation_tests.rs - # Run all the tests for the first time, in the right order. +new-sim-test test_name render_to_png="true": {{cita}} -p kcl-lib -- tests::{{test_name}}::tokenize {{cita}} -p kcl-lib -- tests::{{test_name}}::parse {{cita}} -p kcl-lib -- tests::{{test_name}}::unparse diff --git a/src/wasm-lib/kcl/Cargo.toml b/src/wasm-lib/kcl/Cargo.toml index 0bfb1325d..a8cb0d9c7 100644 --- a/src/wasm-lib/kcl/Cargo.toml +++ b/src/wasm-lib/kcl/Cargo.toml @@ -86,7 +86,7 @@ expectorate = "1.1.0" handlebars = "6.2.0" iai = "0.1" image = { version = "0.25.5", default-features = false, features = ["png"] } -insta = { version = "1.41.1", features = ["json", "filters"] } +insta = { version = "1.41.1", features = ["json", "filters", "redactions"] } itertools = "0.13.0" pretty_assertions = "1.4.1" tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros", "time"] } diff --git a/src/wasm-lib/kcl/benches/compiler_benchmark_criterion.rs b/src/wasm-lib/kcl/benches/compiler_benchmark_criterion.rs index 6205afc6f..ca3d76274 100644 --- a/src/wasm-lib/kcl/benches/compiler_benchmark_criterion.rs +++ b/src/wasm-lib/kcl/benches/compiler_benchmark_criterion.rs @@ -39,5 +39,5 @@ const KITT_PROGRAM: &str = include_str!("../../tests/executor/inputs/kittycad_sv const PIPES_PROGRAM: &str = include_str!("../../tests/executor/inputs/pipes_on_pipes.kcl"); const CUBE_PROGRAM: &str = include_str!("../../tests/executor/inputs/cube.kcl"); const MATH_PROGRAM: &str = include_str!("../../tests/executor/inputs/math.kcl"); -const MIKE_STRESS_TEST_PROGRAM: &str = include_str!("../../tests/executor/inputs/mike_stress_test.kcl"); +const MIKE_STRESS_TEST_PROGRAM: &str = include_str!("../tests/mike_stress_test/input.kcl"); const LSYSTEM_KOCH_SNOWFLAKE_PROGRAM: &str = include_str!("../../tests/executor/inputs/lsystem.kcl"); diff --git a/src/wasm-lib/kcl/benches/digest_benchmark.rs b/src/wasm-lib/kcl/benches/digest_benchmark.rs index 33bdbd14a..a1739cd6f 100644 --- a/src/wasm-lib/kcl/benches/digest_benchmark.rs +++ b/src/wasm-lib/kcl/benches/digest_benchmark.rs @@ -28,5 +28,5 @@ const KITT_PROGRAM: &str = include_str!("../../tests/executor/inputs/kittycad_sv const PIPES_PROGRAM: &str = include_str!("../../tests/executor/inputs/pipes_on_pipes.kcl"); const CUBE_PROGRAM: &str = include_str!("../../tests/executor/inputs/cube.kcl"); const MATH_PROGRAM: &str = include_str!("../../tests/executor/inputs/math.kcl"); -const MIKE_STRESS_TEST_PROGRAM: &str = include_str!("../../tests/executor/inputs/mike_stress_test.kcl"); +const MIKE_STRESS_TEST_PROGRAM: &str = include_str!("../tests/mike_stress_test/input.kcl"); const LSYSTEM_PROGRAM: &str = include_str!("../../tests/executor/inputs/lsystem.kcl"); diff --git a/src/wasm-lib/kcl/benches/lsp_semantic_tokens_benchmark_criterion.rs b/src/wasm-lib/kcl/benches/lsp_semantic_tokens_benchmark_criterion.rs index d74b95c05..02ac54653 100644 --- a/src/wasm-lib/kcl/benches/lsp_semantic_tokens_benchmark_criterion.rs +++ b/src/wasm-lib/kcl/benches/lsp_semantic_tokens_benchmark_criterion.rs @@ -62,6 +62,6 @@ const KITT_PROGRAM: &str = include_str!("../../tests/executor/inputs/kittycad_sv const PIPES_PROGRAM: &str = include_str!("../../tests/executor/inputs/pipes_on_pipes.kcl"); const CUBE_PROGRAM: &str = include_str!("../../tests/executor/inputs/cube.kcl"); const MATH_PROGRAM: &str = include_str!("../../tests/executor/inputs/math.kcl"); -const MIKE_STRESS_TEST_PROGRAM: &str = include_str!("../../tests/executor/inputs/mike_stress_test.kcl"); +const MIKE_STRESS_TEST_PROGRAM: &str = include_str!("../tests/mike_stress_test/input.kcl"); const GLOBAL_TAGS_FILE: &str = include_str!("../../tests/executor/inputs/global-tags.kcl"); const LSYSTEM_PROGRAM: &str = include_str!("../../tests/executor/inputs/lsystem.kcl"); diff --git a/src/wasm-lib/kcl/src/simulation_tests.rs b/src/wasm-lib/kcl/src/simulation_tests.rs index 4a7c67e00..94865d2f6 100644 --- a/src/wasm-lib/kcl/src/simulation_tests.rs +++ b/src/wasm-lib/kcl/src/simulation_tests.rs @@ -1,3 +1,5 @@ +use insta::rounded_redaction; + use crate::{ ast::types::{ModuleId, Node, Program}, errors::KclError, @@ -97,7 +99,13 @@ async fn execute(test_name: &str, render_to_png: bool) { 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", program_memory); + insta::assert_json_snapshot!("program_memory", program_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), + }); }); } Err(e) => { @@ -432,3 +440,1137 @@ mod array_elem_push { super::execute(TEST_NAME, false).await } } +mod invalid_index_str { + const TEST_NAME: &str = "invalid_index_str"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod invalid_index_negative { + const TEST_NAME: &str = "invalid_index_negative"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod invalid_index_fractional { + const TEST_NAME: &str = "invalid_index_fractional"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod invalid_member_object { + const TEST_NAME: &str = "invalid_member_object"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod invalid_member_object_prop { + const TEST_NAME: &str = "invalid_member_object_prop"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod non_string_key_of_object { + const TEST_NAME: &str = "non_string_key_of_object"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod array_index_oob { + const TEST_NAME: &str = "array_index_oob"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod object_prop_not_found { + const TEST_NAME: &str = "object_prop_not_found"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod pipe_substitution_inside_function_called_from_pipeline { + const TEST_NAME: &str = "pipe_substitution_inside_function_called_from_pipeline"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod comparisons_multiple { + const TEST_NAME: &str = "comparisons_multiple"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod import_cycle1 { + const TEST_NAME: &str = "import_cycle1"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod import_constant { + const TEST_NAME: &str = "import_constant"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod import_side_effect { + const TEST_NAME: &str = "import_side_effect"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod array_elem_push_fail { + const TEST_NAME: &str = "array_elem_push_fail"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, false).await + } +} +mod sketch_on_face { + const TEST_NAME: &str = "sketch_on_face"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod poop_chute { + const TEST_NAME: &str = "poop_chute"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod neg_xz_plane { + const TEST_NAME: &str = "neg_xz_plane"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod xz_plane { + const TEST_NAME: &str = "xz_plane"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod sketch_on_face_after_fillets_referencing_face { + const TEST_NAME: &str = "sketch_on_face_after_fillets_referencing_face"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod circular_pattern3d_a_pattern { + const TEST_NAME: &str = "circular_pattern3d_a_pattern"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod linear_pattern3d_a_pattern { + const TEST_NAME: &str = "linear_pattern3d_a_pattern"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod tangential_arc { + const TEST_NAME: &str = "tangential_arc"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod big_number_angle_to_match_length_x { + const TEST_NAME: &str = "big_number_angle_to_match_length_x"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod big_number_angle_to_match_length_y { + const TEST_NAME: &str = "big_number_angle_to_match_length_y"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod sketch_on_face_circle_tagged { + const TEST_NAME: &str = "sketch_on_face_circle_tagged"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod basic_fillet_cube_start { + const TEST_NAME: &str = "basic_fillet_cube_start"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod basic_fillet_cube_next_adjacent { + const TEST_NAME: &str = "basic_fillet_cube_next_adjacent"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod basic_fillet_cube_previous_adjacent { + const TEST_NAME: &str = "basic_fillet_cube_previous_adjacent"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod basic_fillet_cube_end { + const TEST_NAME: &str = "basic_fillet_cube_end"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod basic_fillet_cube_close_opposite { + const TEST_NAME: &str = "basic_fillet_cube_close_opposite"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod sketch_on_face_end { + const TEST_NAME: &str = "sketch_on_face_end"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod sketch_on_face_start { + const TEST_NAME: &str = "sketch_on_face_start"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod sketch_on_face_end_negative_extrude { + const TEST_NAME: &str = "sketch_on_face_end_negative_extrude"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod mike_stress_test { + const TEST_NAME: &str = "mike_stress_test"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod pentagon_fillet_sugar { + const TEST_NAME: &str = "pentagon_fillet_sugar"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod pipe_as_arg { + const TEST_NAME: &str = "pipe_as_arg"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod computed_var { + const TEST_NAME: &str = "computed_var"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod riddle_small { + const TEST_NAME: &str = "riddle_small"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod tan_arc_x_line { + const TEST_NAME: &str = "tan_arc_x_line"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod fillet_and_shell { + const TEST_NAME: &str = "fillet-and-shell"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod sketch_on_chamfer_two_times { + const TEST_NAME: &str = "sketch-on-chamfer-two-times"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} +mod sketch_on_chamfer_two_times_different_order { + const TEST_NAME: &str = "sketch-on-chamfer-two-times-different-order"; + + /// Test tokenizing KCL. + #[test] + fn tokenize() { + super::tokenize(TEST_NAME) + } + + /// Test parsing KCL. + #[test] + fn parse() { + super::parse(TEST_NAME) + } + + /// Test that parsing and unparsing KCL produces the original KCL input. + #[test] + fn unparse() { + super::unparse(TEST_NAME) + } + + /// Test that KCL is executed correctly. + #[tokio::test(flavor = "multi_thread")] + async fn kcl_test_execute() { + super::execute(TEST_NAME, true).await + } +} diff --git a/src/wasm-lib/kcl/tests/array_elem_push_fail/ast.snap b/src/wasm-lib/kcl/tests/array_elem_push_fail/ast.snap new file mode 100644 index 000000000..3dbdee066 --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_elem_push_fail/ast.snap @@ -0,0 +1,157 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing array_elem_push_fail.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 15, + "id": { + "end": 3, + "name": "arr", + "start": 0, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 8, + "raw": "1", + "start": 7, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 11, + "raw": "2", + "start": 10, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + { + "end": 14, + "raw": "3", + "start": 13, + "type": "Literal", + "type": "Literal", + "value": 3 + } + ], + "end": 15, + "start": 6, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 15, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 40, + "id": { + "end": 25, + "name": "pushedArr", + "start": 16, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 36, + "name": "arr", + "start": 33, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 39, + "raw": "4", + "start": 38, + "type": "Literal", + "type": "Literal", + "value": 4 + } + ], + "callee": { + "end": 32, + "name": "push", + "start": 28, + "type": "Identifier" + }, + "end": 40, + "optional": false, + "start": 28, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 16, + "type": "VariableDeclarator" + } + ], + "end": 40, + "kind": "const", + "start": 16, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 54, + "id": { + "end": 45, + "name": "fail", + "start": 41, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 54, + "object": { + "end": 51, + "name": "arr", + "start": 48, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 53, + "raw": "3", + "start": 52, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + "start": 48, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 41, + "type": "VariableDeclarator" + } + ], + "end": 54, + "kind": "const", + "start": 41, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 55, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/array_elem_push_fail/execution_error.snap b/src/wasm-lib/kcl/tests/array_elem_push_fail/execution_error.snap new file mode 100644 index 000000000..f7a769447 --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_elem_push_fail/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing array_elem_push_fail.kcl +snapshot_kind: text +--- +undefined value: KclErrorDetails { source_ranges: [SourceRange([48, 54, 0])], message: "The array doesn't have any item at index 3" } diff --git a/src/wasm-lib/kcl/tests/array_elem_push_fail/input.kcl b/src/wasm-lib/kcl/tests/array_elem_push_fail/input.kcl new file mode 100644 index 000000000..733c22e95 --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_elem_push_fail/input.kcl @@ -0,0 +1,3 @@ +arr = [1, 2, 3] +pushedArr = push(arr, 4) +fail = arr[3] diff --git a/src/wasm-lib/kcl/tests/array_elem_push_fail/tokens.snap b/src/wasm-lib/kcl/tests/array_elem_push_fail/tokens.snap new file mode 100644 index 000000000..267e2e6c6 --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_elem_push_fail/tokens.snap @@ -0,0 +1,219 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing array_elem_push_fail.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "arr" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "[" + }, + { + "type": "number", + "start": 7, + "end": 8, + "value": "1" + }, + { + "type": "comma", + "start": 8, + "end": 9, + "value": "," + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "number", + "start": 10, + "end": 11, + "value": "2" + }, + { + "type": "comma", + "start": 11, + "end": 12, + "value": "," + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "number", + "start": 13, + "end": 14, + "value": "3" + }, + { + "type": "brace", + "start": 14, + "end": 15, + "value": "]" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": "\n" + }, + { + "type": "word", + "start": 16, + "end": 25, + "value": "pushedArr" + }, + { + "type": "whitespace", + "start": 25, + "end": 26, + "value": " " + }, + { + "type": "operator", + "start": 26, + "end": 27, + "value": "=" + }, + { + "type": "whitespace", + "start": 27, + "end": 28, + "value": " " + }, + { + "type": "word", + "start": 28, + "end": 32, + "value": "push" + }, + { + "type": "brace", + "start": 32, + "end": 33, + "value": "(" + }, + { + "type": "word", + "start": 33, + "end": 36, + "value": "arr" + }, + { + "type": "comma", + "start": 36, + "end": 37, + "value": "," + }, + { + "type": "whitespace", + "start": 37, + "end": 38, + "value": " " + }, + { + "type": "number", + "start": 38, + "end": 39, + "value": "4" + }, + { + "type": "brace", + "start": 39, + "end": 40, + "value": ")" + }, + { + "type": "whitespace", + "start": 40, + "end": 41, + "value": "\n" + }, + { + "type": "word", + "start": 41, + "end": 45, + "value": "fail" + }, + { + "type": "whitespace", + "start": 45, + "end": 46, + "value": " " + }, + { + "type": "operator", + "start": 46, + "end": 47, + "value": "=" + }, + { + "type": "whitespace", + "start": 47, + "end": 48, + "value": " " + }, + { + "type": "word", + "start": 48, + "end": 51, + "value": "arr" + }, + { + "type": "brace", + "start": 51, + "end": 52, + "value": "[" + }, + { + "type": "number", + "start": 52, + "end": 53, + "value": "3" + }, + { + "type": "brace", + "start": 53, + "end": 54, + "value": "]" + }, + { + "type": "whitespace", + "start": 54, + "end": 55, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/array_index_oob/ast.snap b/src/wasm-lib/kcl/tests/array_index_oob/ast.snap new file mode 100644 index 000000000..5ba9f2eef --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_index_oob/ast.snap @@ -0,0 +1,82 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing array_index_oob.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 8, + "id": { + "end": 3, + "name": "arr", + "start": 0, + "type": "Identifier" + }, + "init": { + "elements": [], + "end": 8, + "start": 6, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 8, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 19, + "id": { + "end": 10, + "name": "x", + "start": 9, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 19, + "object": { + "end": 16, + "name": "arr", + "start": 13, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 18, + "raw": "0", + "start": 17, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 13, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 9, + "type": "VariableDeclarator" + } + ], + "end": 19, + "kind": "const", + "start": 9, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 20, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/array_index_oob/execution_error.snap b/src/wasm-lib/kcl/tests/array_index_oob/execution_error.snap new file mode 100644 index 000000000..525b9c860 --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_index_oob/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing array_index_oob.kcl +snapshot_kind: text +--- +undefined value: KclErrorDetails { source_ranges: [SourceRange([13, 19, 0])], message: "The array doesn't have any item at index 0" } diff --git a/src/wasm-lib/kcl/tests/array_index_oob/input.kcl b/src/wasm-lib/kcl/tests/array_index_oob/input.kcl new file mode 100644 index 000000000..53a30946b --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_index_oob/input.kcl @@ -0,0 +1,2 @@ +arr = [] +x = arr[0] diff --git a/src/wasm-lib/kcl/tests/array_index_oob/tokens.snap b/src/wasm-lib/kcl/tests/array_index_oob/tokens.snap new file mode 100644 index 000000000..d394d812a --- /dev/null +++ b/src/wasm-lib/kcl/tests/array_index_oob/tokens.snap @@ -0,0 +1,105 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing array_index_oob.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "arr" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "[" + }, + { + "type": "brace", + "start": 7, + "end": 8, + "value": "]" + }, + { + "type": "whitespace", + "start": 8, + "end": 9, + "value": "\n" + }, + { + "type": "word", + "start": 9, + "end": 10, + "value": "x" + }, + { + "type": "whitespace", + "start": 10, + "end": 11, + "value": " " + }, + { + "type": "operator", + "start": 11, + "end": 12, + "value": "=" + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "word", + "start": 13, + "end": 16, + "value": "arr" + }, + { + "type": "brace", + "start": 16, + "end": 17, + "value": "[" + }, + { + "type": "number", + "start": 17, + "end": 18, + "value": "0" + }, + { + "type": "brace", + "start": 18, + "end": 19, + "value": "]" + }, + { + "type": "whitespace", + "start": 19, + "end": 20, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/ast.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/ast.snap new file mode 100644 index 000000000..9af793012 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/ast.snap @@ -0,0 +1,418 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing basic_fillet_cube_close_opposite.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 277, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73, + "raw": "0", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 77, + "raw": "10", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 78, + "start": 71, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 81, + "start": 80, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing" + } + ], + "callee": { + "end": 70, + "name": "line", + "start": 66, + "type": "Identifier" + }, + "end": 90, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 104, + "raw": "10", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 107, + "raw": "0", + "start": 106, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 108, + "start": 101, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 111, + "start": 110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 100, + "name": "line", + "start": 96, + "type": "Identifier" + }, + "end": 112, + "optional": false, + "start": 96, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 125, + "raw": "0", + "start": 124, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 130, + "raw": "10", + "start": 128, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 130, + "operator": "-", + "start": 127, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 131, + "start": 123, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 134, + "start": 133, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing2" + } + ], + "callee": { + "end": 122, + "name": "line", + "start": 118, + "type": "Identifier" + }, + "end": 144, + "optional": false, + "start": 118, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 157, + "start": 156, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 166, + "start": 159, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing3" + } + ], + "callee": { + "end": 155, + "name": "close", + "start": 150, + "type": "Identifier" + }, + "end": 167, + "optional": false, + "start": 150, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 183, + "raw": "10", + "start": 181, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 186, + "start": 185, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 180, + "name": "extrude", + "start": 173, + "type": "Identifier" + }, + "end": 187, + "optional": false, + "start": 173, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 273, + "properties": [ + { + "end": 218, + "key": { + "end": 215, + "name": "radius", + "start": 209, + "type": "Identifier" + }, + "start": 209, + "type": "ObjectProperty", + "value": { + "end": 218, + "raw": "2", + "start": 217, + "type": "Literal", + "type": "Literal", + "value": 2 + } + }, + { + "end": 266, + "key": { + "end": 231, + "name": "tags", + "start": 227, + "type": "Identifier" + }, + "start": 227, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 240, + "name": "thing3", + "start": 234, + "type": "Identifier", + "type": "Identifier" + }, + { + "arguments": [ + { + "end": 264, + "name": "thing3", + "start": 258, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 257, + "name": "getOppositeEdge", + "start": 242, + "type": "Identifier" + }, + "end": 265, + "optional": false, + "start": 242, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 266, + "start": 233, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 200, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 276, + "start": 275, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 199, + "name": "fillet", + "start": 193, + "type": "Identifier" + }, + "end": 277, + "optional": false, + "start": 193, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 277, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 277, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 278, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/input.kcl b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/input.kcl new file mode 100644 index 000000000..8f871a6f3 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/input.kcl @@ -0,0 +1,11 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([0, 10], %, $thing) + |> line([10, 0], %) + |> line([0, -10], %, $thing2) + |> close(%, $thing3) + |> extrude(10, %) + |> fillet({ + radius: 2, + tags: [thing3, getOppositeEdge(thing3)] + }, %) 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 new file mode 100644 index 000000000..b0f985237 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap @@ -0,0 +1,644 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing basic_fillet_cube_close_opposite.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 150, + 167, + 0 + ], + "tag": { + "end": 166, + "start": 159, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 112, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 150, + 167, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 166, + "start": 159, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 136, + 143, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 150, + 167, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 166, + "start": 159, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 150, + 167, + 0 + ], + "tag": { + "end": 166, + "start": 159, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 159, + 166, + 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 + } + ], + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 136, + 143, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 150, + 167, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 166, + "start": 159, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 150, + 167, + 0 + ], + "tag": { + "end": 166, + "start": 159, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 159, + 166, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/rendered_model.png b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/rendered_model.png new file mode 100644 index 000000000..0e9eeead6 Binary files /dev/null and b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/tokens.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/tokens.snap new file mode 100644 index 000000000..496cf9ef1 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/tokens.snap @@ -0,0 +1,789 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing basic_fillet_cube_close_opposite.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 70, + "value": "line" + }, + { + "type": "brace", + "start": 70, + "end": 71, + "value": "(" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "[" + }, + { + "type": "number", + "start": 72, + "end": 73, + "value": "0" + }, + { + "type": "comma", + "start": 73, + "end": 74, + "value": "," + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "number", + "start": 75, + "end": 77, + "value": "10" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "]" + }, + { + "type": "comma", + "start": 78, + "end": 79, + "value": "," + }, + { + "type": "whitespace", + "start": 79, + "end": 80, + "value": " " + }, + { + "type": "operator", + "start": 80, + "end": 81, + "value": "%" + }, + { + "type": "comma", + "start": 81, + "end": 82, + "value": "," + }, + { + "type": "whitespace", + "start": 82, + "end": 83, + "value": " " + }, + { + "type": "dollar", + "start": 83, + "end": 84, + "value": "$" + }, + { + "type": "word", + "start": 84, + "end": 89, + "value": "thing" + }, + { + "type": "brace", + "start": 89, + "end": 90, + "value": ")" + }, + { + "type": "whitespace", + "start": 90, + "end": 93, + "value": "\n " + }, + { + "type": "operator", + "start": 93, + "end": 95, + "value": "|>" + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "word", + "start": 96, + "end": 100, + "value": "line" + }, + { + "type": "brace", + "start": 100, + "end": 101, + "value": "(" + }, + { + "type": "brace", + "start": 101, + "end": 102, + "value": "[" + }, + { + "type": "number", + "start": 102, + "end": 104, + "value": "10" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "number", + "start": 106, + "end": 107, + "value": "0" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": "]" + }, + { + "type": "comma", + "start": 108, + "end": 109, + "value": "," + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "operator", + "start": 110, + "end": 111, + "value": "%" + }, + { + "type": "brace", + "start": 111, + "end": 112, + "value": ")" + }, + { + "type": "whitespace", + "start": 112, + "end": 115, + "value": "\n " + }, + { + "type": "operator", + "start": 115, + "end": 117, + "value": "|>" + }, + { + "type": "whitespace", + "start": 117, + "end": 118, + "value": " " + }, + { + "type": "word", + "start": 118, + "end": 122, + "value": "line" + }, + { + "type": "brace", + "start": 122, + "end": 123, + "value": "(" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "[" + }, + { + "type": "number", + "start": 124, + "end": 125, + "value": "0" + }, + { + "type": "comma", + "start": 125, + "end": 126, + "value": "," + }, + { + "type": "whitespace", + "start": 126, + "end": 127, + "value": " " + }, + { + "type": "operator", + "start": 127, + "end": 128, + "value": "-" + }, + { + "type": "number", + "start": 128, + "end": 130, + "value": "10" + }, + { + "type": "brace", + "start": 130, + "end": 131, + "value": "]" + }, + { + "type": "comma", + "start": 131, + "end": 132, + "value": "," + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "operator", + "start": 133, + "end": 134, + "value": "%" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "dollar", + "start": 136, + "end": 137, + "value": "$" + }, + { + "type": "word", + "start": 137, + "end": 143, + "value": "thing2" + }, + { + "type": "brace", + "start": 143, + "end": 144, + "value": ")" + }, + { + "type": "whitespace", + "start": 144, + "end": 147, + "value": "\n " + }, + { + "type": "operator", + "start": 147, + "end": 149, + "value": "|>" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "word", + "start": 150, + "end": 155, + "value": "close" + }, + { + "type": "brace", + "start": 155, + "end": 156, + "value": "(" + }, + { + "type": "operator", + "start": 156, + "end": 157, + "value": "%" + }, + { + "type": "comma", + "start": 157, + "end": 158, + "value": "," + }, + { + "type": "whitespace", + "start": 158, + "end": 159, + "value": " " + }, + { + "type": "dollar", + "start": 159, + "end": 160, + "value": "$" + }, + { + "type": "word", + "start": 160, + "end": 166, + "value": "thing3" + }, + { + "type": "brace", + "start": 166, + "end": 167, + "value": ")" + }, + { + "type": "whitespace", + "start": 167, + "end": 170, + "value": "\n " + }, + { + "type": "operator", + "start": 170, + "end": 172, + "value": "|>" + }, + { + "type": "whitespace", + "start": 172, + "end": 173, + "value": " " + }, + { + "type": "word", + "start": 173, + "end": 180, + "value": "extrude" + }, + { + "type": "brace", + "start": 180, + "end": 181, + "value": "(" + }, + { + "type": "number", + "start": 181, + "end": 183, + "value": "10" + }, + { + "type": "comma", + "start": 183, + "end": 184, + "value": "," + }, + { + "type": "whitespace", + "start": 184, + "end": 185, + "value": " " + }, + { + "type": "operator", + "start": 185, + "end": 186, + "value": "%" + }, + { + "type": "brace", + "start": 186, + "end": 187, + "value": ")" + }, + { + "type": "whitespace", + "start": 187, + "end": 190, + "value": "\n " + }, + { + "type": "operator", + "start": 190, + "end": 192, + "value": "|>" + }, + { + "type": "whitespace", + "start": 192, + "end": 193, + "value": " " + }, + { + "type": "word", + "start": 193, + "end": 199, + "value": "fillet" + }, + { + "type": "brace", + "start": 199, + "end": 200, + "value": "(" + }, + { + "type": "brace", + "start": 200, + "end": 201, + "value": "{" + }, + { + "type": "whitespace", + "start": 201, + "end": 209, + "value": "\n " + }, + { + "type": "word", + "start": 209, + "end": 215, + "value": "radius" + }, + { + "type": "colon", + "start": 215, + "end": 216, + "value": ":" + }, + { + "type": "whitespace", + "start": 216, + "end": 217, + "value": " " + }, + { + "type": "number", + "start": 217, + "end": 218, + "value": "2" + }, + { + "type": "comma", + "start": 218, + "end": 219, + "value": "," + }, + { + "type": "whitespace", + "start": 219, + "end": 227, + "value": "\n " + }, + { + "type": "word", + "start": 227, + "end": 231, + "value": "tags" + }, + { + "type": "colon", + "start": 231, + "end": 232, + "value": ":" + }, + { + "type": "whitespace", + "start": 232, + "end": 233, + "value": " " + }, + { + "type": "brace", + "start": 233, + "end": 234, + "value": "[" + }, + { + "type": "word", + "start": 234, + "end": 240, + "value": "thing3" + }, + { + "type": "comma", + "start": 240, + "end": 241, + "value": "," + }, + { + "type": "whitespace", + "start": 241, + "end": 242, + "value": " " + }, + { + "type": "word", + "start": 242, + "end": 257, + "value": "getOppositeEdge" + }, + { + "type": "brace", + "start": 257, + "end": 258, + "value": "(" + }, + { + "type": "word", + "start": 258, + "end": 264, + "value": "thing3" + }, + { + "type": "brace", + "start": 264, + "end": 265, + "value": ")" + }, + { + "type": "brace", + "start": 265, + "end": 266, + "value": "]" + }, + { + "type": "whitespace", + "start": 266, + "end": 272, + "value": "\n " + }, + { + "type": "brace", + "start": 272, + "end": 273, + "value": "}" + }, + { + "type": "comma", + "start": 273, + "end": 274, + "value": "," + }, + { + "type": "whitespace", + "start": 274, + "end": 275, + "value": " " + }, + { + "type": "operator", + "start": 275, + "end": 276, + "value": "%" + }, + { + "type": "brace", + "start": 276, + "end": 277, + "value": ")" + }, + { + "type": "whitespace", + "start": 277, + "end": 278, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/ast.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/ast.snap new file mode 100644 index 000000000..2f8eaeda8 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/ast.snap @@ -0,0 +1,411 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing basic_fillet_cube_end.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 266, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73, + "raw": "0", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 77, + "raw": "10", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 78, + "start": 71, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 81, + "start": 80, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing" + } + ], + "callee": { + "end": 70, + "name": "line", + "start": 66, + "type": "Identifier" + }, + "end": 90, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 104, + "raw": "10", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 107, + "raw": "0", + "start": 106, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 108, + "start": 101, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 111, + "start": 110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 100, + "name": "line", + "start": 96, + "type": "Identifier" + }, + "end": 112, + "optional": false, + "start": 96, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 125, + "raw": "0", + "start": 124, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 130, + "raw": "10", + "start": 128, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 130, + "operator": "-", + "start": 127, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 131, + "start": 123, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 134, + "start": 133, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing2" + } + ], + "callee": { + "end": 122, + "name": "line", + "start": 118, + "type": "Identifier" + }, + "end": 144, + "optional": false, + "start": 118, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 157, + "start": 156, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 155, + "name": "close", + "start": 150, + "type": "Identifier" + }, + "end": 158, + "optional": false, + "start": 150, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 174, + "raw": "10", + "start": 172, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 177, + "start": 176, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 171, + "name": "extrude", + "start": 164, + "type": "Identifier" + }, + "end": 178, + "optional": false, + "start": 164, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 262, + "properties": [ + { + "end": 209, + "key": { + "end": 206, + "name": "radius", + "start": 200, + "type": "Identifier" + }, + "start": 200, + "type": "ObjectProperty", + "value": { + "end": 209, + "raw": "2", + "start": 208, + "type": "Literal", + "type": "Literal", + "value": 2 + } + }, + { + "end": 255, + "key": { + "end": 222, + "name": "tags", + "start": 218, + "type": "Identifier" + }, + "start": 218, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 230, + "name": "thing", + "start": 225, + "type": "Identifier", + "type": "Identifier" + }, + { + "arguments": [ + { + "end": 253, + "name": "thing", + "start": 248, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 247, + "name": "getOppositeEdge", + "start": 232, + "type": "Identifier" + }, + "end": 254, + "optional": false, + "start": 232, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 255, + "start": 224, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 191, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 265, + "start": 264, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 190, + "name": "fillet", + "start": 184, + "type": "Identifier" + }, + "end": 266, + "optional": false, + "start": 184, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 266, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 266, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 267, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/input.kcl b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/input.kcl new file mode 100644 index 000000000..c488d992a --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/input.kcl @@ -0,0 +1,11 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([0, 10], %, $thing) + |> line([10, 0], %) + |> line([0, -10], %, $thing2) + |> close(%) + |> extrude(10, %) + |> fillet({ + radius: 2, + tags: [thing, getOppositeEdge(thing)] + }, %) 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 new file mode 100644 index 000000000..71e470fb8 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap @@ -0,0 +1,515 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing basic_fillet_cube_end.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 150, + 158, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 112, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 150, + 158, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 136, + 143, + 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 + } + ], + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 136, + 143, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/rendered_model.png b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/rendered_model.png new file mode 100644 index 000000000..14693be28 Binary files /dev/null and b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/tokens.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/tokens.snap new file mode 100644 index 000000000..242408cf5 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/tokens.snap @@ -0,0 +1,765 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing basic_fillet_cube_end.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 70, + "value": "line" + }, + { + "type": "brace", + "start": 70, + "end": 71, + "value": "(" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "[" + }, + { + "type": "number", + "start": 72, + "end": 73, + "value": "0" + }, + { + "type": "comma", + "start": 73, + "end": 74, + "value": "," + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "number", + "start": 75, + "end": 77, + "value": "10" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "]" + }, + { + "type": "comma", + "start": 78, + "end": 79, + "value": "," + }, + { + "type": "whitespace", + "start": 79, + "end": 80, + "value": " " + }, + { + "type": "operator", + "start": 80, + "end": 81, + "value": "%" + }, + { + "type": "comma", + "start": 81, + "end": 82, + "value": "," + }, + { + "type": "whitespace", + "start": 82, + "end": 83, + "value": " " + }, + { + "type": "dollar", + "start": 83, + "end": 84, + "value": "$" + }, + { + "type": "word", + "start": 84, + "end": 89, + "value": "thing" + }, + { + "type": "brace", + "start": 89, + "end": 90, + "value": ")" + }, + { + "type": "whitespace", + "start": 90, + "end": 93, + "value": "\n " + }, + { + "type": "operator", + "start": 93, + "end": 95, + "value": "|>" + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "word", + "start": 96, + "end": 100, + "value": "line" + }, + { + "type": "brace", + "start": 100, + "end": 101, + "value": "(" + }, + { + "type": "brace", + "start": 101, + "end": 102, + "value": "[" + }, + { + "type": "number", + "start": 102, + "end": 104, + "value": "10" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "number", + "start": 106, + "end": 107, + "value": "0" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": "]" + }, + { + "type": "comma", + "start": 108, + "end": 109, + "value": "," + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "operator", + "start": 110, + "end": 111, + "value": "%" + }, + { + "type": "brace", + "start": 111, + "end": 112, + "value": ")" + }, + { + "type": "whitespace", + "start": 112, + "end": 115, + "value": "\n " + }, + { + "type": "operator", + "start": 115, + "end": 117, + "value": "|>" + }, + { + "type": "whitespace", + "start": 117, + "end": 118, + "value": " " + }, + { + "type": "word", + "start": 118, + "end": 122, + "value": "line" + }, + { + "type": "brace", + "start": 122, + "end": 123, + "value": "(" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "[" + }, + { + "type": "number", + "start": 124, + "end": 125, + "value": "0" + }, + { + "type": "comma", + "start": 125, + "end": 126, + "value": "," + }, + { + "type": "whitespace", + "start": 126, + "end": 127, + "value": " " + }, + { + "type": "operator", + "start": 127, + "end": 128, + "value": "-" + }, + { + "type": "number", + "start": 128, + "end": 130, + "value": "10" + }, + { + "type": "brace", + "start": 130, + "end": 131, + "value": "]" + }, + { + "type": "comma", + "start": 131, + "end": 132, + "value": "," + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "operator", + "start": 133, + "end": 134, + "value": "%" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "dollar", + "start": 136, + "end": 137, + "value": "$" + }, + { + "type": "word", + "start": 137, + "end": 143, + "value": "thing2" + }, + { + "type": "brace", + "start": 143, + "end": 144, + "value": ")" + }, + { + "type": "whitespace", + "start": 144, + "end": 147, + "value": "\n " + }, + { + "type": "operator", + "start": 147, + "end": 149, + "value": "|>" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "word", + "start": 150, + "end": 155, + "value": "close" + }, + { + "type": "brace", + "start": 155, + "end": 156, + "value": "(" + }, + { + "type": "operator", + "start": 156, + "end": 157, + "value": "%" + }, + { + "type": "brace", + "start": 157, + "end": 158, + "value": ")" + }, + { + "type": "whitespace", + "start": 158, + "end": 161, + "value": "\n " + }, + { + "type": "operator", + "start": 161, + "end": 163, + "value": "|>" + }, + { + "type": "whitespace", + "start": 163, + "end": 164, + "value": " " + }, + { + "type": "word", + "start": 164, + "end": 171, + "value": "extrude" + }, + { + "type": "brace", + "start": 171, + "end": 172, + "value": "(" + }, + { + "type": "number", + "start": 172, + "end": 174, + "value": "10" + }, + { + "type": "comma", + "start": 174, + "end": 175, + "value": "," + }, + { + "type": "whitespace", + "start": 175, + "end": 176, + "value": " " + }, + { + "type": "operator", + "start": 176, + "end": 177, + "value": "%" + }, + { + "type": "brace", + "start": 177, + "end": 178, + "value": ")" + }, + { + "type": "whitespace", + "start": 178, + "end": 181, + "value": "\n " + }, + { + "type": "operator", + "start": 181, + "end": 183, + "value": "|>" + }, + { + "type": "whitespace", + "start": 183, + "end": 184, + "value": " " + }, + { + "type": "word", + "start": 184, + "end": 190, + "value": "fillet" + }, + { + "type": "brace", + "start": 190, + "end": 191, + "value": "(" + }, + { + "type": "brace", + "start": 191, + "end": 192, + "value": "{" + }, + { + "type": "whitespace", + "start": 192, + "end": 200, + "value": "\n " + }, + { + "type": "word", + "start": 200, + "end": 206, + "value": "radius" + }, + { + "type": "colon", + "start": 206, + "end": 207, + "value": ":" + }, + { + "type": "whitespace", + "start": 207, + "end": 208, + "value": " " + }, + { + "type": "number", + "start": 208, + "end": 209, + "value": "2" + }, + { + "type": "comma", + "start": 209, + "end": 210, + "value": "," + }, + { + "type": "whitespace", + "start": 210, + "end": 218, + "value": "\n " + }, + { + "type": "word", + "start": 218, + "end": 222, + "value": "tags" + }, + { + "type": "colon", + "start": 222, + "end": 223, + "value": ":" + }, + { + "type": "whitespace", + "start": 223, + "end": 224, + "value": " " + }, + { + "type": "brace", + "start": 224, + "end": 225, + "value": "[" + }, + { + "type": "word", + "start": 225, + "end": 230, + "value": "thing" + }, + { + "type": "comma", + "start": 230, + "end": 231, + "value": "," + }, + { + "type": "whitespace", + "start": 231, + "end": 232, + "value": " " + }, + { + "type": "word", + "start": 232, + "end": 247, + "value": "getOppositeEdge" + }, + { + "type": "brace", + "start": 247, + "end": 248, + "value": "(" + }, + { + "type": "word", + "start": 248, + "end": 253, + "value": "thing" + }, + { + "type": "brace", + "start": 253, + "end": 254, + "value": ")" + }, + { + "type": "brace", + "start": 254, + "end": 255, + "value": "]" + }, + { + "type": "whitespace", + "start": 255, + "end": 261, + "value": "\n " + }, + { + "type": "brace", + "start": 261, + "end": 262, + "value": "}" + }, + { + "type": "comma", + "start": 262, + "end": 263, + "value": "," + }, + { + "type": "whitespace", + "start": 263, + "end": 264, + "value": " " + }, + { + "type": "operator", + "start": 264, + "end": 265, + "value": "%" + }, + { + "type": "brace", + "start": 265, + "end": 266, + "value": ")" + }, + { + "type": "whitespace", + "start": 266, + "end": 267, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/ast.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/ast.snap new file mode 100644 index 000000000..291eab3c0 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/ast.snap @@ -0,0 +1,418 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing basic_fillet_cube_next_adjacent.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 282, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73, + "raw": "0", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 77, + "raw": "10", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 78, + "start": 71, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 81, + "start": 80, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing" + } + ], + "callee": { + "end": 70, + "name": "line", + "start": 66, + "type": "Identifier" + }, + "end": 90, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 104, + "raw": "10", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 107, + "raw": "0", + "start": 106, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 108, + "start": 101, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 111, + "start": 110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing1" + } + ], + "callee": { + "end": 100, + "name": "line", + "start": 96, + "type": "Identifier" + }, + "end": 121, + "optional": false, + "start": 96, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 134, + "raw": "0", + "start": 133, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 139, + "raw": "10", + "start": 137, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 139, + "operator": "-", + "start": 136, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 140, + "start": 132, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 143, + "start": 142, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing2" + } + ], + "callee": { + "end": 131, + "name": "line", + "start": 127, + "type": "Identifier" + }, + "end": 153, + "optional": false, + "start": 127, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 166, + "start": 165, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing3" + } + ], + "callee": { + "end": 164, + "name": "close", + "start": 159, + "type": "Identifier" + }, + "end": 176, + "optional": false, + "start": 159, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 192, + "raw": "10", + "start": 190, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 195, + "start": 194, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 189, + "name": "extrude", + "start": 182, + "type": "Identifier" + }, + "end": 196, + "optional": false, + "start": 182, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 278, + "properties": [ + { + "end": 227, + "key": { + "end": 224, + "name": "radius", + "start": 218, + "type": "Identifier" + }, + "start": 218, + "type": "ObjectProperty", + "value": { + "end": 227, + "raw": "2", + "start": 226, + "type": "Literal", + "type": "Literal", + "value": 2 + } + }, + { + "end": 271, + "key": { + "end": 240, + "name": "tags", + "start": 236, + "type": "Identifier" + }, + "start": 236, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "arguments": [ + { + "end": 269, + "name": "thing3", + "start": 263, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 262, + "name": "getNextAdjacentEdge", + "start": 243, + "type": "Identifier" + }, + "end": 270, + "optional": false, + "start": 243, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 271, + "start": 242, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 209, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 281, + "start": 280, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 208, + "name": "fillet", + "start": 202, + "type": "Identifier" + }, + "end": 282, + "optional": false, + "start": 202, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 282, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 282, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 283, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/input.kcl b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/input.kcl new file mode 100644 index 000000000..4b7a8633b --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/input.kcl @@ -0,0 +1,11 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([0, 10], %, $thing) + |> line([10, 0], %, $thing1) + |> line([0, -10], %, $thing2) + |> close(%, $thing3) + |> extrude(10, %) + |> fillet({ + radius: 2, + tags: [getNextAdjacentEdge(thing3)] + }, %) 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 new file mode 100644 index 000000000..e8979c8e8 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap @@ -0,0 +1,766 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing basic_fillet_cube_next_adjacent.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 113, + 120, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 145, + 152, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 168, + 175, + 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 + } + ], + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 113, + 120, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 145, + 152, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 168, + 175, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/rendered_model.png b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/rendered_model.png new file mode 100644 index 000000000..562ca4b89 Binary files /dev/null and b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/tokens.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/tokens.snap new file mode 100644 index 000000000..4e7a21202 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/tokens.snap @@ -0,0 +1,795 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing basic_fillet_cube_next_adjacent.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 70, + "value": "line" + }, + { + "type": "brace", + "start": 70, + "end": 71, + "value": "(" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "[" + }, + { + "type": "number", + "start": 72, + "end": 73, + "value": "0" + }, + { + "type": "comma", + "start": 73, + "end": 74, + "value": "," + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "number", + "start": 75, + "end": 77, + "value": "10" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "]" + }, + { + "type": "comma", + "start": 78, + "end": 79, + "value": "," + }, + { + "type": "whitespace", + "start": 79, + "end": 80, + "value": " " + }, + { + "type": "operator", + "start": 80, + "end": 81, + "value": "%" + }, + { + "type": "comma", + "start": 81, + "end": 82, + "value": "," + }, + { + "type": "whitespace", + "start": 82, + "end": 83, + "value": " " + }, + { + "type": "dollar", + "start": 83, + "end": 84, + "value": "$" + }, + { + "type": "word", + "start": 84, + "end": 89, + "value": "thing" + }, + { + "type": "brace", + "start": 89, + "end": 90, + "value": ")" + }, + { + "type": "whitespace", + "start": 90, + "end": 93, + "value": "\n " + }, + { + "type": "operator", + "start": 93, + "end": 95, + "value": "|>" + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "word", + "start": 96, + "end": 100, + "value": "line" + }, + { + "type": "brace", + "start": 100, + "end": 101, + "value": "(" + }, + { + "type": "brace", + "start": 101, + "end": 102, + "value": "[" + }, + { + "type": "number", + "start": 102, + "end": 104, + "value": "10" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "number", + "start": 106, + "end": 107, + "value": "0" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": "]" + }, + { + "type": "comma", + "start": 108, + "end": 109, + "value": "," + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "operator", + "start": 110, + "end": 111, + "value": "%" + }, + { + "type": "comma", + "start": 111, + "end": 112, + "value": "," + }, + { + "type": "whitespace", + "start": 112, + "end": 113, + "value": " " + }, + { + "type": "dollar", + "start": 113, + "end": 114, + "value": "$" + }, + { + "type": "word", + "start": 114, + "end": 120, + "value": "thing1" + }, + { + "type": "brace", + "start": 120, + "end": 121, + "value": ")" + }, + { + "type": "whitespace", + "start": 121, + "end": 124, + "value": "\n " + }, + { + "type": "operator", + "start": 124, + "end": 126, + "value": "|>" + }, + { + "type": "whitespace", + "start": 126, + "end": 127, + "value": " " + }, + { + "type": "word", + "start": 127, + "end": 131, + "value": "line" + }, + { + "type": "brace", + "start": 131, + "end": 132, + "value": "(" + }, + { + "type": "brace", + "start": 132, + "end": 133, + "value": "[" + }, + { + "type": "number", + "start": 133, + "end": 134, + "value": "0" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "operator", + "start": 136, + "end": 137, + "value": "-" + }, + { + "type": "number", + "start": 137, + "end": 139, + "value": "10" + }, + { + "type": "brace", + "start": 139, + "end": 140, + "value": "]" + }, + { + "type": "comma", + "start": 140, + "end": 141, + "value": "," + }, + { + "type": "whitespace", + "start": 141, + "end": 142, + "value": " " + }, + { + "type": "operator", + "start": 142, + "end": 143, + "value": "%" + }, + { + "type": "comma", + "start": 143, + "end": 144, + "value": "," + }, + { + "type": "whitespace", + "start": 144, + "end": 145, + "value": " " + }, + { + "type": "dollar", + "start": 145, + "end": 146, + "value": "$" + }, + { + "type": "word", + "start": 146, + "end": 152, + "value": "thing2" + }, + { + "type": "brace", + "start": 152, + "end": 153, + "value": ")" + }, + { + "type": "whitespace", + "start": 153, + "end": 156, + "value": "\n " + }, + { + "type": "operator", + "start": 156, + "end": 158, + "value": "|>" + }, + { + "type": "whitespace", + "start": 158, + "end": 159, + "value": " " + }, + { + "type": "word", + "start": 159, + "end": 164, + "value": "close" + }, + { + "type": "brace", + "start": 164, + "end": 165, + "value": "(" + }, + { + "type": "operator", + "start": 165, + "end": 166, + "value": "%" + }, + { + "type": "comma", + "start": 166, + "end": 167, + "value": "," + }, + { + "type": "whitespace", + "start": 167, + "end": 168, + "value": " " + }, + { + "type": "dollar", + "start": 168, + "end": 169, + "value": "$" + }, + { + "type": "word", + "start": 169, + "end": 175, + "value": "thing3" + }, + { + "type": "brace", + "start": 175, + "end": 176, + "value": ")" + }, + { + "type": "whitespace", + "start": 176, + "end": 179, + "value": "\n " + }, + { + "type": "operator", + "start": 179, + "end": 181, + "value": "|>" + }, + { + "type": "whitespace", + "start": 181, + "end": 182, + "value": " " + }, + { + "type": "word", + "start": 182, + "end": 189, + "value": "extrude" + }, + { + "type": "brace", + "start": 189, + "end": 190, + "value": "(" + }, + { + "type": "number", + "start": 190, + "end": 192, + "value": "10" + }, + { + "type": "comma", + "start": 192, + "end": 193, + "value": "," + }, + { + "type": "whitespace", + "start": 193, + "end": 194, + "value": " " + }, + { + "type": "operator", + "start": 194, + "end": 195, + "value": "%" + }, + { + "type": "brace", + "start": 195, + "end": 196, + "value": ")" + }, + { + "type": "whitespace", + "start": 196, + "end": 199, + "value": "\n " + }, + { + "type": "operator", + "start": 199, + "end": 201, + "value": "|>" + }, + { + "type": "whitespace", + "start": 201, + "end": 202, + "value": " " + }, + { + "type": "word", + "start": 202, + "end": 208, + "value": "fillet" + }, + { + "type": "brace", + "start": 208, + "end": 209, + "value": "(" + }, + { + "type": "brace", + "start": 209, + "end": 210, + "value": "{" + }, + { + "type": "whitespace", + "start": 210, + "end": 218, + "value": "\n " + }, + { + "type": "word", + "start": 218, + "end": 224, + "value": "radius" + }, + { + "type": "colon", + "start": 224, + "end": 225, + "value": ":" + }, + { + "type": "whitespace", + "start": 225, + "end": 226, + "value": " " + }, + { + "type": "number", + "start": 226, + "end": 227, + "value": "2" + }, + { + "type": "comma", + "start": 227, + "end": 228, + "value": "," + }, + { + "type": "whitespace", + "start": 228, + "end": 236, + "value": "\n " + }, + { + "type": "word", + "start": 236, + "end": 240, + "value": "tags" + }, + { + "type": "colon", + "start": 240, + "end": 241, + "value": ":" + }, + { + "type": "whitespace", + "start": 241, + "end": 242, + "value": " " + }, + { + "type": "brace", + "start": 242, + "end": 243, + "value": "[" + }, + { + "type": "word", + "start": 243, + "end": 262, + "value": "getNextAdjacentEdge" + }, + { + "type": "brace", + "start": 262, + "end": 263, + "value": "(" + }, + { + "type": "word", + "start": 263, + "end": 269, + "value": "thing3" + }, + { + "type": "brace", + "start": 269, + "end": 270, + "value": ")" + }, + { + "type": "brace", + "start": 270, + "end": 271, + "value": "]" + }, + { + "type": "whitespace", + "start": 271, + "end": 277, + "value": "\n " + }, + { + "type": "brace", + "start": 277, + "end": 278, + "value": "}" + }, + { + "type": "comma", + "start": 278, + "end": 279, + "value": "," + }, + { + "type": "whitespace", + "start": 279, + "end": 280, + "value": " " + }, + { + "type": "operator", + "start": 280, + "end": 281, + "value": "%" + }, + { + "type": "brace", + "start": 281, + "end": 282, + "value": ")" + }, + { + "type": "whitespace", + "start": 282, + "end": 283, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/ast.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/ast.snap new file mode 100644 index 000000000..81a9b55d7 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/ast.snap @@ -0,0 +1,418 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing basic_fillet_cube_previous_adjacent.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 286, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73, + "raw": "0", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 77, + "raw": "10", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 78, + "start": 71, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 81, + "start": 80, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing" + } + ], + "callee": { + "end": 70, + "name": "line", + "start": 66, + "type": "Identifier" + }, + "end": 90, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 104, + "raw": "10", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 107, + "raw": "0", + "start": 106, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 108, + "start": 101, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 111, + "start": 110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing1" + } + ], + "callee": { + "end": 100, + "name": "line", + "start": 96, + "type": "Identifier" + }, + "end": 121, + "optional": false, + "start": 96, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 134, + "raw": "0", + "start": 133, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 139, + "raw": "10", + "start": 137, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 139, + "operator": "-", + "start": 136, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 140, + "start": 132, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 143, + "start": 142, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing2" + } + ], + "callee": { + "end": 131, + "name": "line", + "start": 127, + "type": "Identifier" + }, + "end": 153, + "optional": false, + "start": 127, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 166, + "start": 165, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing3" + } + ], + "callee": { + "end": 164, + "name": "close", + "start": 159, + "type": "Identifier" + }, + "end": 176, + "optional": false, + "start": 159, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 192, + "raw": "10", + "start": 190, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 195, + "start": 194, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 189, + "name": "extrude", + "start": 182, + "type": "Identifier" + }, + "end": 196, + "optional": false, + "start": 182, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 282, + "properties": [ + { + "end": 227, + "key": { + "end": 224, + "name": "radius", + "start": 218, + "type": "Identifier" + }, + "start": 218, + "type": "ObjectProperty", + "value": { + "end": 227, + "raw": "2", + "start": 226, + "type": "Literal", + "type": "Literal", + "value": 2 + } + }, + { + "end": 275, + "key": { + "end": 240, + "name": "tags", + "start": 236, + "type": "Identifier" + }, + "start": 236, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "arguments": [ + { + "end": 273, + "name": "thing3", + "start": 267, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 266, + "name": "getPreviousAdjacentEdge", + "start": 243, + "type": "Identifier" + }, + "end": 274, + "optional": false, + "start": 243, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 275, + "start": 242, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 209, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 285, + "start": 284, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 208, + "name": "fillet", + "start": 202, + "type": "Identifier" + }, + "end": 286, + "optional": false, + "start": 202, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 286, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 286, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 287, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/input.kcl b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/input.kcl new file mode 100644 index 000000000..6e7d72dcb --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/input.kcl @@ -0,0 +1,11 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([0, 10], %, $thing) + |> line([10, 0], %, $thing1) + |> line([0, -10], %, $thing2) + |> close(%, $thing3) + |> extrude(10, %) + |> fillet({ + radius: 2, + tags: [getPreviousAdjacentEdge(thing3)] + }, %) 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 new file mode 100644 index 000000000..bf5f12953 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap @@ -0,0 +1,766 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing basic_fillet_cube_previous_adjacent.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 113, + 120, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 145, + 152, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 168, + 175, + 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 + } + ], + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 121, + 0 + ], + "tag": { + "end": 120, + "start": 113, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 113, + 120, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 127, + 153, + 0 + ], + "tag": { + "end": 152, + "start": 145, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 145, + 152, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 159, + 176, + 0 + ], + "tag": { + "end": 175, + "start": 168, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 168, + 175, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/rendered_model.png b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/rendered_model.png new file mode 100644 index 000000000..091962613 Binary files /dev/null and b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/tokens.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/tokens.snap new file mode 100644 index 000000000..3cda4172a --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/tokens.snap @@ -0,0 +1,795 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing basic_fillet_cube_previous_adjacent.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 70, + "value": "line" + }, + { + "type": "brace", + "start": 70, + "end": 71, + "value": "(" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "[" + }, + { + "type": "number", + "start": 72, + "end": 73, + "value": "0" + }, + { + "type": "comma", + "start": 73, + "end": 74, + "value": "," + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "number", + "start": 75, + "end": 77, + "value": "10" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "]" + }, + { + "type": "comma", + "start": 78, + "end": 79, + "value": "," + }, + { + "type": "whitespace", + "start": 79, + "end": 80, + "value": " " + }, + { + "type": "operator", + "start": 80, + "end": 81, + "value": "%" + }, + { + "type": "comma", + "start": 81, + "end": 82, + "value": "," + }, + { + "type": "whitespace", + "start": 82, + "end": 83, + "value": " " + }, + { + "type": "dollar", + "start": 83, + "end": 84, + "value": "$" + }, + { + "type": "word", + "start": 84, + "end": 89, + "value": "thing" + }, + { + "type": "brace", + "start": 89, + "end": 90, + "value": ")" + }, + { + "type": "whitespace", + "start": 90, + "end": 93, + "value": "\n " + }, + { + "type": "operator", + "start": 93, + "end": 95, + "value": "|>" + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "word", + "start": 96, + "end": 100, + "value": "line" + }, + { + "type": "brace", + "start": 100, + "end": 101, + "value": "(" + }, + { + "type": "brace", + "start": 101, + "end": 102, + "value": "[" + }, + { + "type": "number", + "start": 102, + "end": 104, + "value": "10" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "number", + "start": 106, + "end": 107, + "value": "0" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": "]" + }, + { + "type": "comma", + "start": 108, + "end": 109, + "value": "," + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "operator", + "start": 110, + "end": 111, + "value": "%" + }, + { + "type": "comma", + "start": 111, + "end": 112, + "value": "," + }, + { + "type": "whitespace", + "start": 112, + "end": 113, + "value": " " + }, + { + "type": "dollar", + "start": 113, + "end": 114, + "value": "$" + }, + { + "type": "word", + "start": 114, + "end": 120, + "value": "thing1" + }, + { + "type": "brace", + "start": 120, + "end": 121, + "value": ")" + }, + { + "type": "whitespace", + "start": 121, + "end": 124, + "value": "\n " + }, + { + "type": "operator", + "start": 124, + "end": 126, + "value": "|>" + }, + { + "type": "whitespace", + "start": 126, + "end": 127, + "value": " " + }, + { + "type": "word", + "start": 127, + "end": 131, + "value": "line" + }, + { + "type": "brace", + "start": 131, + "end": 132, + "value": "(" + }, + { + "type": "brace", + "start": 132, + "end": 133, + "value": "[" + }, + { + "type": "number", + "start": 133, + "end": 134, + "value": "0" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "operator", + "start": 136, + "end": 137, + "value": "-" + }, + { + "type": "number", + "start": 137, + "end": 139, + "value": "10" + }, + { + "type": "brace", + "start": 139, + "end": 140, + "value": "]" + }, + { + "type": "comma", + "start": 140, + "end": 141, + "value": "," + }, + { + "type": "whitespace", + "start": 141, + "end": 142, + "value": " " + }, + { + "type": "operator", + "start": 142, + "end": 143, + "value": "%" + }, + { + "type": "comma", + "start": 143, + "end": 144, + "value": "," + }, + { + "type": "whitespace", + "start": 144, + "end": 145, + "value": " " + }, + { + "type": "dollar", + "start": 145, + "end": 146, + "value": "$" + }, + { + "type": "word", + "start": 146, + "end": 152, + "value": "thing2" + }, + { + "type": "brace", + "start": 152, + "end": 153, + "value": ")" + }, + { + "type": "whitespace", + "start": 153, + "end": 156, + "value": "\n " + }, + { + "type": "operator", + "start": 156, + "end": 158, + "value": "|>" + }, + { + "type": "whitespace", + "start": 158, + "end": 159, + "value": " " + }, + { + "type": "word", + "start": 159, + "end": 164, + "value": "close" + }, + { + "type": "brace", + "start": 164, + "end": 165, + "value": "(" + }, + { + "type": "operator", + "start": 165, + "end": 166, + "value": "%" + }, + { + "type": "comma", + "start": 166, + "end": 167, + "value": "," + }, + { + "type": "whitespace", + "start": 167, + "end": 168, + "value": " " + }, + { + "type": "dollar", + "start": 168, + "end": 169, + "value": "$" + }, + { + "type": "word", + "start": 169, + "end": 175, + "value": "thing3" + }, + { + "type": "brace", + "start": 175, + "end": 176, + "value": ")" + }, + { + "type": "whitespace", + "start": 176, + "end": 179, + "value": "\n " + }, + { + "type": "operator", + "start": 179, + "end": 181, + "value": "|>" + }, + { + "type": "whitespace", + "start": 181, + "end": 182, + "value": " " + }, + { + "type": "word", + "start": 182, + "end": 189, + "value": "extrude" + }, + { + "type": "brace", + "start": 189, + "end": 190, + "value": "(" + }, + { + "type": "number", + "start": 190, + "end": 192, + "value": "10" + }, + { + "type": "comma", + "start": 192, + "end": 193, + "value": "," + }, + { + "type": "whitespace", + "start": 193, + "end": 194, + "value": " " + }, + { + "type": "operator", + "start": 194, + "end": 195, + "value": "%" + }, + { + "type": "brace", + "start": 195, + "end": 196, + "value": ")" + }, + { + "type": "whitespace", + "start": 196, + "end": 199, + "value": "\n " + }, + { + "type": "operator", + "start": 199, + "end": 201, + "value": "|>" + }, + { + "type": "whitespace", + "start": 201, + "end": 202, + "value": " " + }, + { + "type": "word", + "start": 202, + "end": 208, + "value": "fillet" + }, + { + "type": "brace", + "start": 208, + "end": 209, + "value": "(" + }, + { + "type": "brace", + "start": 209, + "end": 210, + "value": "{" + }, + { + "type": "whitespace", + "start": 210, + "end": 218, + "value": "\n " + }, + { + "type": "word", + "start": 218, + "end": 224, + "value": "radius" + }, + { + "type": "colon", + "start": 224, + "end": 225, + "value": ":" + }, + { + "type": "whitespace", + "start": 225, + "end": 226, + "value": " " + }, + { + "type": "number", + "start": 226, + "end": 227, + "value": "2" + }, + { + "type": "comma", + "start": 227, + "end": 228, + "value": "," + }, + { + "type": "whitespace", + "start": 228, + "end": 236, + "value": "\n " + }, + { + "type": "word", + "start": 236, + "end": 240, + "value": "tags" + }, + { + "type": "colon", + "start": 240, + "end": 241, + "value": ":" + }, + { + "type": "whitespace", + "start": 241, + "end": 242, + "value": " " + }, + { + "type": "brace", + "start": 242, + "end": 243, + "value": "[" + }, + { + "type": "word", + "start": 243, + "end": 266, + "value": "getPreviousAdjacentEdge" + }, + { + "type": "brace", + "start": 266, + "end": 267, + "value": "(" + }, + { + "type": "word", + "start": 267, + "end": 273, + "value": "thing3" + }, + { + "type": "brace", + "start": 273, + "end": 274, + "value": ")" + }, + { + "type": "brace", + "start": 274, + "end": 275, + "value": "]" + }, + { + "type": "whitespace", + "start": 275, + "end": 281, + "value": "\n " + }, + { + "type": "brace", + "start": 281, + "end": 282, + "value": "}" + }, + { + "type": "comma", + "start": 282, + "end": 283, + "value": "," + }, + { + "type": "whitespace", + "start": 283, + "end": 284, + "value": " " + }, + { + "type": "operator", + "start": 284, + "end": 285, + "value": "%" + }, + { + "type": "brace", + "start": 285, + "end": 286, + "value": ")" + }, + { + "type": "whitespace", + "start": 286, + "end": 287, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/ast.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/ast.snap new file mode 100644 index 000000000..4ad43276f --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/ast.snap @@ -0,0 +1,396 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing basic_fillet_cube_start.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 231, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73, + "raw": "0", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 77, + "raw": "10", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 78, + "start": 71, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 81, + "start": 80, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing" + } + ], + "callee": { + "end": 70, + "name": "line", + "start": 66, + "type": "Identifier" + }, + "end": 90, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 104, + "raw": "10", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 107, + "raw": "0", + "start": 106, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 108, + "start": 101, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 111, + "start": 110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 100, + "name": "line", + "start": 96, + "type": "Identifier" + }, + "end": 112, + "optional": false, + "start": 96, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 125, + "raw": "0", + "start": 124, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 130, + "raw": "10", + "start": 128, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 130, + "operator": "-", + "start": 127, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 131, + "start": 123, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 134, + "start": 133, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "thing2" + } + ], + "callee": { + "end": 122, + "name": "line", + "start": 118, + "type": "Identifier" + }, + "end": 144, + "optional": false, + "start": 118, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 157, + "start": 156, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 155, + "name": "close", + "start": 150, + "type": "Identifier" + }, + "end": 158, + "optional": false, + "start": 150, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 174, + "raw": "10", + "start": 172, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 177, + "start": 176, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 171, + "name": "extrude", + "start": 164, + "type": "Identifier" + }, + "end": 178, + "optional": false, + "start": 164, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 227, + "properties": [ + { + "end": 202, + "key": { + "end": 199, + "name": "radius", + "start": 193, + "type": "Identifier" + }, + "start": 193, + "type": "ObjectProperty", + "value": { + "end": 202, + "raw": "2", + "start": 201, + "type": "Literal", + "type": "Literal", + "value": 2 + } + }, + { + "end": 225, + "key": { + "end": 208, + "name": "tags", + "start": 204, + "type": "Identifier" + }, + "start": 204, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 216, + "name": "thing", + "start": 211, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 224, + "name": "thing2", + "start": 218, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 225, + "start": 210, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 191, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 230, + "start": 229, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 190, + "name": "fillet", + "start": 184, + "type": "Identifier" + }, + "end": 231, + "optional": false, + "start": 184, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 231, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 231, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 232, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/input.kcl b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/input.kcl new file mode 100644 index 000000000..9bd0be501 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/input.kcl @@ -0,0 +1,8 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([0, 10], %, $thing) + |> line([10, 0], %) + |> line([0, -10], %, $thing2) + |> close(%) + |> extrude(10, %) + |> fillet({ radius: 2, tags: [thing, thing2] }, %) 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 new file mode 100644 index 000000000..b71b23d14 --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap @@ -0,0 +1,515 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing basic_fillet_cube_start.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 150, + 158, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 112, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 150, + 158, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 136, + 143, + 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 + } + ], + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 90, + 0 + ], + "tag": { + "end": 89, + "start": 83, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 83, + 89, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 144, + 0 + ], + "tag": { + "end": 143, + "start": 136, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 136, + 143, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/rendered_model.png b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/rendered_model.png new file mode 100644 index 000000000..8b46c59cf Binary files /dev/null and b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/tokens.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/tokens.snap new file mode 100644 index 000000000..cb45c85ae --- /dev/null +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/tokens.snap @@ -0,0 +1,747 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing basic_fillet_cube_start.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 70, + "value": "line" + }, + { + "type": "brace", + "start": 70, + "end": 71, + "value": "(" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "[" + }, + { + "type": "number", + "start": 72, + "end": 73, + "value": "0" + }, + { + "type": "comma", + "start": 73, + "end": 74, + "value": "," + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "number", + "start": 75, + "end": 77, + "value": "10" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "]" + }, + { + "type": "comma", + "start": 78, + "end": 79, + "value": "," + }, + { + "type": "whitespace", + "start": 79, + "end": 80, + "value": " " + }, + { + "type": "operator", + "start": 80, + "end": 81, + "value": "%" + }, + { + "type": "comma", + "start": 81, + "end": 82, + "value": "," + }, + { + "type": "whitespace", + "start": 82, + "end": 83, + "value": " " + }, + { + "type": "dollar", + "start": 83, + "end": 84, + "value": "$" + }, + { + "type": "word", + "start": 84, + "end": 89, + "value": "thing" + }, + { + "type": "brace", + "start": 89, + "end": 90, + "value": ")" + }, + { + "type": "whitespace", + "start": 90, + "end": 93, + "value": "\n " + }, + { + "type": "operator", + "start": 93, + "end": 95, + "value": "|>" + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "word", + "start": 96, + "end": 100, + "value": "line" + }, + { + "type": "brace", + "start": 100, + "end": 101, + "value": "(" + }, + { + "type": "brace", + "start": 101, + "end": 102, + "value": "[" + }, + { + "type": "number", + "start": 102, + "end": 104, + "value": "10" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "number", + "start": 106, + "end": 107, + "value": "0" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": "]" + }, + { + "type": "comma", + "start": 108, + "end": 109, + "value": "," + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "operator", + "start": 110, + "end": 111, + "value": "%" + }, + { + "type": "brace", + "start": 111, + "end": 112, + "value": ")" + }, + { + "type": "whitespace", + "start": 112, + "end": 115, + "value": "\n " + }, + { + "type": "operator", + "start": 115, + "end": 117, + "value": "|>" + }, + { + "type": "whitespace", + "start": 117, + "end": 118, + "value": " " + }, + { + "type": "word", + "start": 118, + "end": 122, + "value": "line" + }, + { + "type": "brace", + "start": 122, + "end": 123, + "value": "(" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "[" + }, + { + "type": "number", + "start": 124, + "end": 125, + "value": "0" + }, + { + "type": "comma", + "start": 125, + "end": 126, + "value": "," + }, + { + "type": "whitespace", + "start": 126, + "end": 127, + "value": " " + }, + { + "type": "operator", + "start": 127, + "end": 128, + "value": "-" + }, + { + "type": "number", + "start": 128, + "end": 130, + "value": "10" + }, + { + "type": "brace", + "start": 130, + "end": 131, + "value": "]" + }, + { + "type": "comma", + "start": 131, + "end": 132, + "value": "," + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "operator", + "start": 133, + "end": 134, + "value": "%" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "dollar", + "start": 136, + "end": 137, + "value": "$" + }, + { + "type": "word", + "start": 137, + "end": 143, + "value": "thing2" + }, + { + "type": "brace", + "start": 143, + "end": 144, + "value": ")" + }, + { + "type": "whitespace", + "start": 144, + "end": 147, + "value": "\n " + }, + { + "type": "operator", + "start": 147, + "end": 149, + "value": "|>" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "word", + "start": 150, + "end": 155, + "value": "close" + }, + { + "type": "brace", + "start": 155, + "end": 156, + "value": "(" + }, + { + "type": "operator", + "start": 156, + "end": 157, + "value": "%" + }, + { + "type": "brace", + "start": 157, + "end": 158, + "value": ")" + }, + { + "type": "whitespace", + "start": 158, + "end": 161, + "value": "\n " + }, + { + "type": "operator", + "start": 161, + "end": 163, + "value": "|>" + }, + { + "type": "whitespace", + "start": 163, + "end": 164, + "value": " " + }, + { + "type": "word", + "start": 164, + "end": 171, + "value": "extrude" + }, + { + "type": "brace", + "start": 171, + "end": 172, + "value": "(" + }, + { + "type": "number", + "start": 172, + "end": 174, + "value": "10" + }, + { + "type": "comma", + "start": 174, + "end": 175, + "value": "," + }, + { + "type": "whitespace", + "start": 175, + "end": 176, + "value": " " + }, + { + "type": "operator", + "start": 176, + "end": 177, + "value": "%" + }, + { + "type": "brace", + "start": 177, + "end": 178, + "value": ")" + }, + { + "type": "whitespace", + "start": 178, + "end": 181, + "value": "\n " + }, + { + "type": "operator", + "start": 181, + "end": 183, + "value": "|>" + }, + { + "type": "whitespace", + "start": 183, + "end": 184, + "value": " " + }, + { + "type": "word", + "start": 184, + "end": 190, + "value": "fillet" + }, + { + "type": "brace", + "start": 190, + "end": 191, + "value": "(" + }, + { + "type": "brace", + "start": 191, + "end": 192, + "value": "{" + }, + { + "type": "whitespace", + "start": 192, + "end": 193, + "value": " " + }, + { + "type": "word", + "start": 193, + "end": 199, + "value": "radius" + }, + { + "type": "colon", + "start": 199, + "end": 200, + "value": ":" + }, + { + "type": "whitespace", + "start": 200, + "end": 201, + "value": " " + }, + { + "type": "number", + "start": 201, + "end": 202, + "value": "2" + }, + { + "type": "comma", + "start": 202, + "end": 203, + "value": "," + }, + { + "type": "whitespace", + "start": 203, + "end": 204, + "value": " " + }, + { + "type": "word", + "start": 204, + "end": 208, + "value": "tags" + }, + { + "type": "colon", + "start": 208, + "end": 209, + "value": ":" + }, + { + "type": "whitespace", + "start": 209, + "end": 210, + "value": " " + }, + { + "type": "brace", + "start": 210, + "end": 211, + "value": "[" + }, + { + "type": "word", + "start": 211, + "end": 216, + "value": "thing" + }, + { + "type": "comma", + "start": 216, + "end": 217, + "value": "," + }, + { + "type": "whitespace", + "start": 217, + "end": 218, + "value": " " + }, + { + "type": "word", + "start": 218, + "end": 224, + "value": "thing2" + }, + { + "type": "brace", + "start": 224, + "end": 225, + "value": "]" + }, + { + "type": "whitespace", + "start": 225, + "end": 226, + "value": " " + }, + { + "type": "brace", + "start": 226, + "end": 227, + "value": "}" + }, + { + "type": "comma", + "start": 227, + "end": 228, + "value": "," + }, + { + "type": "whitespace", + "start": 228, + "end": 229, + "value": " " + }, + { + "type": "operator", + "start": 229, + "end": 230, + "value": "%" + }, + { + "type": "brace", + "start": 230, + "end": 231, + "value": ")" + }, + { + "type": "whitespace", + "start": 231, + "end": 232, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/ast.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/ast.snap new file mode 100644 index 000000000..fa34a2740 --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/ast.snap @@ -0,0 +1,291 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing big_number_angle_to_match_length_x.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 188, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73, + "raw": "1", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 79, + "raw": "3.82", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 3.82 + } + ], + "end": 80, + "start": 71, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + ], + "callee": { + "end": 70, + "name": "line", + "start": 66, + "type": "Identifier" + }, + "end": 92, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "arguments": [ + { + "end": 139, + "name": "seg01", + "start": 134, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 142, + "raw": "3", + "start": 141, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + { + "end": 145, + "start": 144, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 133, + "name": "angleToMatchLengthX", + "start": 114, + "type": "Identifier" + }, + "end": 146, + "optional": false, + "start": 114, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 146, + "operator": "-", + "start": 113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 149, + "raw": "3", + "start": 148, + "type": "Literal", + "type": "Literal", + "value": 3 + } + ], + "end": 150, + "start": 112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 153, + "start": 152, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 111, + "name": "angledLineToX", + "start": 98, + "type": "Identifier" + }, + "end": 154, + "optional": false, + "start": 98, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 167, + "start": 166, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 165, + "name": "close", + "start": 160, + "type": "Identifier" + }, + "end": 168, + "optional": false, + "start": 160, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 184, + "raw": "10", + "start": 182, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 187, + "start": 186, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 181, + "name": "extrude", + "start": 174, + "type": "Identifier" + }, + "end": 188, + "optional": false, + "start": 174, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 188, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 188, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 189, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/input.kcl b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/input.kcl new file mode 100644 index 000000000..95bea0ad9 --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/input.kcl @@ -0,0 +1,6 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([1, 3.82], %, $seg01) + |> angledLineToX([-angleToMatchLengthX(seg01, 3, %), 3], %) + |> close(%) + |> extrude(10, %) 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 new file mode 100644 index 000000000..902b80baf --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap @@ -0,0 +1,339 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing big_number_angle_to_match_length_x.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 98, + 154, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 168, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 98, + 154, + 0 + ] + }, + "from": [ + 1.0, + 3.82 + ], + "tag": null, + "to": [ + 3.0, + 0.4152 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 168, + 0 + ] + }, + "from": [ + 3.0, + 0.4152 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 92, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 85, + 91, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 85, + 91, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/rendered_model.png b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/rendered_model.png new file mode 100644 index 000000000..c7864ad3c Binary files /dev/null and b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/tokens.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/tokens.snap new file mode 100644 index 000000000..e686cf772 --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/tokens.snap @@ -0,0 +1,519 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing big_number_angle_to_match_length_x.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 70, + "value": "line" + }, + { + "type": "brace", + "start": 70, + "end": 71, + "value": "(" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "[" + }, + { + "type": "number", + "start": 72, + "end": 73, + "value": "1" + }, + { + "type": "comma", + "start": 73, + "end": 74, + "value": "," + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "number", + "start": 75, + "end": 79, + "value": "3.82" + }, + { + "type": "brace", + "start": 79, + "end": 80, + "value": "]" + }, + { + "type": "comma", + "start": 80, + "end": 81, + "value": "," + }, + { + "type": "whitespace", + "start": 81, + "end": 82, + "value": " " + }, + { + "type": "operator", + "start": 82, + "end": 83, + "value": "%" + }, + { + "type": "comma", + "start": 83, + "end": 84, + "value": "," + }, + { + "type": "whitespace", + "start": 84, + "end": 85, + "value": " " + }, + { + "type": "dollar", + "start": 85, + "end": 86, + "value": "$" + }, + { + "type": "word", + "start": 86, + "end": 91, + "value": "seg01" + }, + { + "type": "brace", + "start": 91, + "end": 92, + "value": ")" + }, + { + "type": "whitespace", + "start": 92, + "end": 95, + "value": "\n " + }, + { + "type": "operator", + "start": 95, + "end": 97, + "value": "|>" + }, + { + "type": "whitespace", + "start": 97, + "end": 98, + "value": " " + }, + { + "type": "word", + "start": 98, + "end": 111, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 111, + "end": 112, + "value": "(" + }, + { + "type": "brace", + "start": 112, + "end": 113, + "value": "[" + }, + { + "type": "operator", + "start": 113, + "end": 114, + "value": "-" + }, + { + "type": "word", + "start": 114, + "end": 133, + "value": "angleToMatchLengthX" + }, + { + "type": "brace", + "start": 133, + "end": 134, + "value": "(" + }, + { + "type": "word", + "start": 134, + "end": 139, + "value": "seg01" + }, + { + "type": "comma", + "start": 139, + "end": 140, + "value": "," + }, + { + "type": "whitespace", + "start": 140, + "end": 141, + "value": " " + }, + { + "type": "number", + "start": 141, + "end": 142, + "value": "3" + }, + { + "type": "comma", + "start": 142, + "end": 143, + "value": "," + }, + { + "type": "whitespace", + "start": 143, + "end": 144, + "value": " " + }, + { + "type": "operator", + "start": 144, + "end": 145, + "value": "%" + }, + { + "type": "brace", + "start": 145, + "end": 146, + "value": ")" + }, + { + "type": "comma", + "start": 146, + "end": 147, + "value": "," + }, + { + "type": "whitespace", + "start": 147, + "end": 148, + "value": " " + }, + { + "type": "number", + "start": 148, + "end": 149, + "value": "3" + }, + { + "type": "brace", + "start": 149, + "end": 150, + "value": "]" + }, + { + "type": "comma", + "start": 150, + "end": 151, + "value": "," + }, + { + "type": "whitespace", + "start": 151, + "end": 152, + "value": " " + }, + { + "type": "operator", + "start": 152, + "end": 153, + "value": "%" + }, + { + "type": "brace", + "start": 153, + "end": 154, + "value": ")" + }, + { + "type": "whitespace", + "start": 154, + "end": 157, + "value": "\n " + }, + { + "type": "operator", + "start": 157, + "end": 159, + "value": "|>" + }, + { + "type": "whitespace", + "start": 159, + "end": 160, + "value": " " + }, + { + "type": "word", + "start": 160, + "end": 165, + "value": "close" + }, + { + "type": "brace", + "start": 165, + "end": 166, + "value": "(" + }, + { + "type": "operator", + "start": 166, + "end": 167, + "value": "%" + }, + { + "type": "brace", + "start": 167, + "end": 168, + "value": ")" + }, + { + "type": "whitespace", + "start": 168, + "end": 171, + "value": "\n " + }, + { + "type": "operator", + "start": 171, + "end": 173, + "value": "|>" + }, + { + "type": "whitespace", + "start": 173, + "end": 174, + "value": " " + }, + { + "type": "word", + "start": 174, + "end": 181, + "value": "extrude" + }, + { + "type": "brace", + "start": 181, + "end": 182, + "value": "(" + }, + { + "type": "number", + "start": 182, + "end": 184, + "value": "10" + }, + { + "type": "comma", + "start": 184, + "end": 185, + "value": "," + }, + { + "type": "whitespace", + "start": 185, + "end": 186, + "value": " " + }, + { + "type": "operator", + "start": 186, + "end": 187, + "value": "%" + }, + { + "type": "brace", + "start": 187, + "end": 188, + "value": ")" + }, + { + "type": "whitespace", + "start": 188, + "end": 189, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/ast.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/ast.snap new file mode 100644 index 000000000..55e8d40f1 --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/ast.snap @@ -0,0 +1,291 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing big_number_angle_to_match_length_y.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 188, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73, + "raw": "1", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 79, + "raw": "3.82", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 3.82 + } + ], + "end": 80, + "start": 71, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + ], + "callee": { + "end": 70, + "name": "line", + "start": 66, + "type": "Identifier" + }, + "end": 92, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "arguments": [ + { + "end": 139, + "name": "seg01", + "start": 134, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 142, + "raw": "3", + "start": 141, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + { + "end": 145, + "start": 144, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 133, + "name": "angleToMatchLengthY", + "start": 114, + "type": "Identifier" + }, + "end": 146, + "optional": false, + "start": 114, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 146, + "operator": "-", + "start": 113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 149, + "raw": "3", + "start": 148, + "type": "Literal", + "type": "Literal", + "value": 3 + } + ], + "end": 150, + "start": 112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 153, + "start": 152, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 111, + "name": "angledLineToX", + "start": 98, + "type": "Identifier" + }, + "end": 154, + "optional": false, + "start": 98, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 167, + "start": 166, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 165, + "name": "close", + "start": 160, + "type": "Identifier" + }, + "end": 168, + "optional": false, + "start": 160, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 184, + "raw": "10", + "start": 182, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 187, + "start": 186, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 181, + "name": "extrude", + "start": 174, + "type": "Identifier" + }, + "end": 188, + "optional": false, + "start": 174, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 188, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 188, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 189, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/input.kcl b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/input.kcl new file mode 100644 index 000000000..848ea0af8 --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/input.kcl @@ -0,0 +1,6 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([1, 3.82], %, $seg01) + |> angledLineToX([-angleToMatchLengthY(seg01, 3, %), 3], %) + |> close(%) + |> extrude(10, %) 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 new file mode 100644 index 000000000..4b7bb4c54 --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap @@ -0,0 +1,339 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing big_number_angle_to_match_length_y.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 98, + 154, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 168, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 98, + 154, + 0 + ] + }, + "from": [ + 1.0, + 3.82 + ], + "tag": null, + "to": [ + 3.0, + 3.3954 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 168, + 0 + ] + }, + "from": [ + 3.0, + 3.3954 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 92, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 85, + 91, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 92, + 0 + ], + "tag": { + "end": 91, + "start": 85, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 85, + 91, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/rendered_model.png b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/rendered_model.png new file mode 100644 index 000000000..33c9af361 Binary files /dev/null and b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/tokens.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/tokens.snap new file mode 100644 index 000000000..f3236600d --- /dev/null +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/tokens.snap @@ -0,0 +1,519 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing big_number_angle_to_match_length_y.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 70, + "value": "line" + }, + { + "type": "brace", + "start": 70, + "end": 71, + "value": "(" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "[" + }, + { + "type": "number", + "start": 72, + "end": 73, + "value": "1" + }, + { + "type": "comma", + "start": 73, + "end": 74, + "value": "," + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "number", + "start": 75, + "end": 79, + "value": "3.82" + }, + { + "type": "brace", + "start": 79, + "end": 80, + "value": "]" + }, + { + "type": "comma", + "start": 80, + "end": 81, + "value": "," + }, + { + "type": "whitespace", + "start": 81, + "end": 82, + "value": " " + }, + { + "type": "operator", + "start": 82, + "end": 83, + "value": "%" + }, + { + "type": "comma", + "start": 83, + "end": 84, + "value": "," + }, + { + "type": "whitespace", + "start": 84, + "end": 85, + "value": " " + }, + { + "type": "dollar", + "start": 85, + "end": 86, + "value": "$" + }, + { + "type": "word", + "start": 86, + "end": 91, + "value": "seg01" + }, + { + "type": "brace", + "start": 91, + "end": 92, + "value": ")" + }, + { + "type": "whitespace", + "start": 92, + "end": 95, + "value": "\n " + }, + { + "type": "operator", + "start": 95, + "end": 97, + "value": "|>" + }, + { + "type": "whitespace", + "start": 97, + "end": 98, + "value": " " + }, + { + "type": "word", + "start": 98, + "end": 111, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 111, + "end": 112, + "value": "(" + }, + { + "type": "brace", + "start": 112, + "end": 113, + "value": "[" + }, + { + "type": "operator", + "start": 113, + "end": 114, + "value": "-" + }, + { + "type": "word", + "start": 114, + "end": 133, + "value": "angleToMatchLengthY" + }, + { + "type": "brace", + "start": 133, + "end": 134, + "value": "(" + }, + { + "type": "word", + "start": 134, + "end": 139, + "value": "seg01" + }, + { + "type": "comma", + "start": 139, + "end": 140, + "value": "," + }, + { + "type": "whitespace", + "start": 140, + "end": 141, + "value": " " + }, + { + "type": "number", + "start": 141, + "end": 142, + "value": "3" + }, + { + "type": "comma", + "start": 142, + "end": 143, + "value": "," + }, + { + "type": "whitespace", + "start": 143, + "end": 144, + "value": " " + }, + { + "type": "operator", + "start": 144, + "end": 145, + "value": "%" + }, + { + "type": "brace", + "start": 145, + "end": 146, + "value": ")" + }, + { + "type": "comma", + "start": 146, + "end": 147, + "value": "," + }, + { + "type": "whitespace", + "start": 147, + "end": 148, + "value": " " + }, + { + "type": "number", + "start": 148, + "end": 149, + "value": "3" + }, + { + "type": "brace", + "start": 149, + "end": 150, + "value": "]" + }, + { + "type": "comma", + "start": 150, + "end": 151, + "value": "," + }, + { + "type": "whitespace", + "start": 151, + "end": 152, + "value": " " + }, + { + "type": "operator", + "start": 152, + "end": 153, + "value": "%" + }, + { + "type": "brace", + "start": 153, + "end": 154, + "value": ")" + }, + { + "type": "whitespace", + "start": 154, + "end": 157, + "value": "\n " + }, + { + "type": "operator", + "start": 157, + "end": 159, + "value": "|>" + }, + { + "type": "whitespace", + "start": 159, + "end": 160, + "value": " " + }, + { + "type": "word", + "start": 160, + "end": 165, + "value": "close" + }, + { + "type": "brace", + "start": 165, + "end": 166, + "value": "(" + }, + { + "type": "operator", + "start": 166, + "end": 167, + "value": "%" + }, + { + "type": "brace", + "start": 167, + "end": 168, + "value": ")" + }, + { + "type": "whitespace", + "start": 168, + "end": 171, + "value": "\n " + }, + { + "type": "operator", + "start": 171, + "end": 173, + "value": "|>" + }, + { + "type": "whitespace", + "start": 173, + "end": 174, + "value": " " + }, + { + "type": "word", + "start": 174, + "end": 181, + "value": "extrude" + }, + { + "type": "brace", + "start": 181, + "end": 182, + "value": "(" + }, + { + "type": "number", + "start": 182, + "end": 184, + "value": "10" + }, + { + "type": "comma", + "start": 184, + "end": 185, + "value": "," + }, + { + "type": "whitespace", + "start": 185, + "end": 186, + "value": " " + }, + { + "type": "operator", + "start": 186, + "end": 187, + "value": "%" + }, + { + "type": "brace", + "start": 187, + "end": 188, + "value": ")" + }, + { + "type": "whitespace", + "start": 188, + "end": 189, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/ast.snap b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/ast.snap new file mode 100644 index 000000000..fad12181b --- /dev/null +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/ast.snap @@ -0,0 +1,671 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing circular_pattern3d_a_pattern.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 163, + "id": { + "end": 13, + "name": "exampleSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 34, + "raw": "'XZ'", + "start": 30, + "type": "Literal", + "type": "Literal", + "value": "XZ" + } + ], + "callee": { + "end": 29, + "name": "startSketchOn", + "start": 16, + "type": "Identifier" + }, + "end": 35, + "optional": false, + "start": 16, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58, + "raw": "0", + "start": 57, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 61, + "raw": "0", + "start": 60, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 62, + "start": 56, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65, + "start": 64, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55, + "name": "startProfileAt", + "start": 41, + "type": "Identifier" + }, + "end": 66, + "optional": false, + "start": 41, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 79, + "raw": "0", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 82, + "raw": "2", + "start": 81, + "type": "Literal", + "type": "Literal", + "value": 2 + } + ], + "end": 83, + "start": 77, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 86, + "start": 85, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "line", + "start": 72, + "type": "Identifier" + }, + "end": 87, + "optional": false, + "start": 72, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 100, + "raw": "3", + "start": 99, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + { + "end": 103, + "raw": "1", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 1 + } + ], + "end": 104, + "start": 98, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 107, + "start": 106, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 97, + "name": "line", + "start": 93, + "type": "Identifier" + }, + "end": 108, + "optional": false, + "start": 93, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 121, + "raw": "0", + "start": 120, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 125, + "raw": "4", + "start": 124, + "type": "Literal", + "type": "Literal", + "value": 4 + }, + "end": 125, + "operator": "-", + "start": 123, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 126, + "start": 119, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 129, + "start": 128, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 118, + "name": "line", + "start": 114, + "type": "Identifier" + }, + "end": 130, + "optional": false, + "start": 114, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 143, + "start": 142, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 141, + "name": "close", + "start": 136, + "type": "Identifier" + }, + "end": 144, + "optional": false, + "start": 136, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 159, + "raw": "1", + "start": 158, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 162, + "start": 161, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 157, + "name": "extrude", + "start": 150, + "type": "Identifier" + }, + "end": 163, + "optional": false, + "start": 150, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 163, + "start": 16, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 163, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 258, + "id": { + "end": 171, + "name": "pattn1", + "start": 165, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 242, + "properties": [ + { + "end": 209, + "key": { + "end": 198, + "name": "axis", + "start": 194, + "type": "Identifier" + }, + "start": 194, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 202, + "raw": "1", + "start": 201, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 205, + "raw": "0", + "start": 204, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 208, + "raw": "0", + "start": 207, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 209, + "start": 200, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 225, + "key": { + "end": 222, + "name": "instances", + "start": 213, + "type": "Identifier" + }, + "start": 213, + "type": "ObjectProperty", + "value": { + "end": 225, + "raw": "7", + "start": 224, + "type": "Literal", + "type": "Literal", + "value": 7 + } + }, + { + "end": 240, + "key": { + "end": 237, + "name": "distance", + "start": 229, + "type": "Identifier" + }, + "start": 229, + "type": "ObjectProperty", + "value": { + "end": 240, + "raw": "6", + "start": 239, + "type": "Literal", + "type": "Literal", + "value": 6 + } + } + ], + "start": 190, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 257, + "name": "exampleSketch", + "start": 244, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 189, + "name": "patternLinear3d", + "start": 174, + "type": "Identifier" + }, + "end": 258, + "optional": false, + "start": 174, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 165, + "type": "VariableDeclarator" + } + ], + "end": 258, + "kind": "const", + "start": 165, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 407, + "id": { + "end": 266, + "name": "pattn2", + "start": 260, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 398, + "properties": [ + { + "end": 306, + "key": { + "end": 295, + "name": "axis", + "start": 291, + "type": "Identifier" + }, + "start": 291, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 299, + "raw": "0", + "start": 298, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 302, + "raw": "0", + "start": 301, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 305, + "raw": "1", + "start": 304, + "type": "Literal", + "type": "Literal", + "value": 1 + } + ], + "end": 306, + "start": 297, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 333, + "key": { + "end": 316, + "name": "center", + "start": 310, + "type": "Identifier" + }, + "start": 310, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "argument": { + "end": 322, + "raw": "20", + "start": 320, + "type": "Literal", + "type": "Literal", + "value": 20 + }, + "end": 322, + "operator": "-", + "start": 319, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 327, + "raw": "20", + "start": 325, + "type": "Literal", + "type": "Literal", + "value": 20 + }, + "end": 327, + "operator": "-", + "start": 324, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 332, + "raw": "20", + "start": 330, + "type": "Literal", + "type": "Literal", + "value": 20 + }, + "end": 332, + "operator": "-", + "start": 329, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 333, + "start": 318, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 350, + "key": { + "end": 346, + "name": "instances", + "start": 337, + "type": "Identifier" + }, + "start": 337, + "type": "ObjectProperty", + "value": { + "end": 350, + "raw": "41", + "start": 348, + "type": "Literal", + "type": "Literal", + "value": 41 + } + }, + { + "end": 369, + "key": { + "end": 364, + "name": "arcDegrees", + "start": 354, + "type": "Identifier" + }, + "start": 354, + "type": "ObjectProperty", + "value": { + "end": 369, + "raw": "360", + "start": 366, + "type": "Literal", + "type": "Literal", + "value": 360 + } + }, + { + "end": 396, + "key": { + "end": 389, + "name": "rotateDuplicates", + "start": 373, + "type": "Identifier" + }, + "start": 373, + "type": "ObjectProperty", + "value": { + "end": 396, + "raw": "false", + "start": 391, + "type": "Literal", + "type": "Literal", + "value": false + } + } + ], + "start": 287, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 406, + "name": "pattn1", + "start": 400, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 286, + "name": "patternCircular3d", + "start": 269, + "type": "Identifier" + }, + "end": 407, + "optional": false, + "start": 269, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 260, + "type": "VariableDeclarator" + } + ], + "end": 407, + "kind": "const", + "start": 260, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 408, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 165, + "start": 163, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "1": [ + { + "end": 260, + "start": 258, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/input.kcl b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/input.kcl new file mode 100644 index 000000000..6cc31d531 --- /dev/null +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/input.kcl @@ -0,0 +1,21 @@ +exampleSketch = startSketchOn('XZ') + |> startProfileAt([0, 0], %) + |> line([0, 2], %) + |> line([3, 1], %) + |> line([0, -4], %) + |> close(%) + |> extrude(1, %) + +pattn1 = patternLinear3d({ + axis: [1, 0, 0], + instances: 7, + distance: 6 +}, exampleSketch) + +pattn2 = patternCircular3d({ + axis: [0, 0, 1], + center: [-20, -20, -20], + instances: 41, + arcDegrees: 360, + rotateDuplicates: false +}, pattn1) 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 new file mode 100644 index 000000000..690040530 --- /dev/null +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap @@ -0,0 +1,59637 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing circular_pattern3d_a_pattern.kcl +snapshot_kind: text +--- +{ + "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": [] + }, + "exampleSketch": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "pattn1": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + }, + "pattn2": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/rendered_model.png b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/rendered_model.png new file mode 100644 index 000000000..7ca32ad13 Binary files /dev/null and b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/tokens.snap b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/tokens.snap new file mode 100644 index 000000000..336520c8b --- /dev/null +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/tokens.snap @@ -0,0 +1,1137 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing circular_pattern3d_a_pattern.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 13, + "value": "exampleSketch" + }, + { + "type": "whitespace", + "start": 13, + "end": 14, + "value": " " + }, + { + "type": "operator", + "start": 14, + "end": 15, + "value": "=" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "word", + "start": 16, + "end": 29, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 29, + "end": 30, + "value": "(" + }, + { + "type": "string", + "start": 30, + "end": 34, + "value": "'XZ'" + }, + { + "type": "brace", + "start": 34, + "end": 35, + "value": ")" + }, + { + "type": "whitespace", + "start": 35, + "end": 38, + "value": "\n " + }, + { + "type": "operator", + "start": 38, + "end": 40, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40, + "end": 41, + "value": " " + }, + { + "type": "word", + "start": 41, + "end": 55, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "(" + }, + { + "type": "brace", + "start": 56, + "end": 57, + "value": "[" + }, + { + "type": "number", + "start": 57, + "end": 58, + "value": "0" + }, + { + "type": "comma", + "start": 58, + "end": 59, + "value": "," + }, + { + "type": "whitespace", + "start": 59, + "end": 60, + "value": " " + }, + { + "type": "number", + "start": 60, + "end": 61, + "value": "0" + }, + { + "type": "brace", + "start": 61, + "end": 62, + "value": "]" + }, + { + "type": "comma", + "start": 62, + "end": 63, + "value": "," + }, + { + "type": "whitespace", + "start": 63, + "end": 64, + "value": " " + }, + { + "type": "operator", + "start": 64, + "end": 65, + "value": "%" + }, + { + "type": "brace", + "start": 65, + "end": 66, + "value": ")" + }, + { + "type": "whitespace", + "start": 66, + "end": 69, + "value": "\n " + }, + { + "type": "operator", + "start": 69, + "end": 71, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71, + "end": 72, + "value": " " + }, + { + "type": "word", + "start": 72, + "end": 76, + "value": "line" + }, + { + "type": "brace", + "start": 76, + "end": 77, + "value": "(" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "[" + }, + { + "type": "number", + "start": 78, + "end": 79, + "value": "0" + }, + { + "type": "comma", + "start": 79, + "end": 80, + "value": "," + }, + { + "type": "whitespace", + "start": 80, + "end": 81, + "value": " " + }, + { + "type": "number", + "start": 81, + "end": 82, + "value": "2" + }, + { + "type": "brace", + "start": 82, + "end": 83, + "value": "]" + }, + { + "type": "comma", + "start": 83, + "end": 84, + "value": "," + }, + { + "type": "whitespace", + "start": 84, + "end": 85, + "value": " " + }, + { + "type": "operator", + "start": 85, + "end": 86, + "value": "%" + }, + { + "type": "brace", + "start": 86, + "end": 87, + "value": ")" + }, + { + "type": "whitespace", + "start": 87, + "end": 90, + "value": "\n " + }, + { + "type": "operator", + "start": 90, + "end": 92, + "value": "|>" + }, + { + "type": "whitespace", + "start": 92, + "end": 93, + "value": " " + }, + { + "type": "word", + "start": 93, + "end": 97, + "value": "line" + }, + { + "type": "brace", + "start": 97, + "end": 98, + "value": "(" + }, + { + "type": "brace", + "start": 98, + "end": 99, + "value": "[" + }, + { + "type": "number", + "start": 99, + "end": 100, + "value": "3" + }, + { + "type": "comma", + "start": 100, + "end": 101, + "value": "," + }, + { + "type": "whitespace", + "start": 101, + "end": 102, + "value": " " + }, + { + "type": "number", + "start": 102, + "end": 103, + "value": "1" + }, + { + "type": "brace", + "start": 103, + "end": 104, + "value": "]" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "operator", + "start": 106, + "end": 107, + "value": "%" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": ")" + }, + { + "type": "whitespace", + "start": 108, + "end": 111, + "value": "\n " + }, + { + "type": "operator", + "start": 111, + "end": 113, + "value": "|>" + }, + { + "type": "whitespace", + "start": 113, + "end": 114, + "value": " " + }, + { + "type": "word", + "start": 114, + "end": 118, + "value": "line" + }, + { + "type": "brace", + "start": 118, + "end": 119, + "value": "(" + }, + { + "type": "brace", + "start": 119, + "end": 120, + "value": "[" + }, + { + "type": "number", + "start": 120, + "end": 121, + "value": "0" + }, + { + "type": "comma", + "start": 121, + "end": 122, + "value": "," + }, + { + "type": "whitespace", + "start": 122, + "end": 123, + "value": " " + }, + { + "type": "operator", + "start": 123, + "end": 124, + "value": "-" + }, + { + "type": "number", + "start": 124, + "end": 125, + "value": "4" + }, + { + "type": "brace", + "start": 125, + "end": 126, + "value": "]" + }, + { + "type": "comma", + "start": 126, + "end": 127, + "value": "," + }, + { + "type": "whitespace", + "start": 127, + "end": 128, + "value": " " + }, + { + "type": "operator", + "start": 128, + "end": 129, + "value": "%" + }, + { + "type": "brace", + "start": 129, + "end": 130, + "value": ")" + }, + { + "type": "whitespace", + "start": 130, + "end": 133, + "value": "\n " + }, + { + "type": "operator", + "start": 133, + "end": 135, + "value": "|>" + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "word", + "start": 136, + "end": 141, + "value": "close" + }, + { + "type": "brace", + "start": 141, + "end": 142, + "value": "(" + }, + { + "type": "operator", + "start": 142, + "end": 143, + "value": "%" + }, + { + "type": "brace", + "start": 143, + "end": 144, + "value": ")" + }, + { + "type": "whitespace", + "start": 144, + "end": 147, + "value": "\n " + }, + { + "type": "operator", + "start": 147, + "end": 149, + "value": "|>" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "word", + "start": 150, + "end": 157, + "value": "extrude" + }, + { + "type": "brace", + "start": 157, + "end": 158, + "value": "(" + }, + { + "type": "number", + "start": 158, + "end": 159, + "value": "1" + }, + { + "type": "comma", + "start": 159, + "end": 160, + "value": "," + }, + { + "type": "whitespace", + "start": 160, + "end": 161, + "value": " " + }, + { + "type": "operator", + "start": 161, + "end": 162, + "value": "%" + }, + { + "type": "brace", + "start": 162, + "end": 163, + "value": ")" + }, + { + "type": "whitespace", + "start": 163, + "end": 165, + "value": "\n\n" + }, + { + "type": "word", + "start": 165, + "end": 171, + "value": "pattn1" + }, + { + "type": "whitespace", + "start": 171, + "end": 172, + "value": " " + }, + { + "type": "operator", + "start": 172, + "end": 173, + "value": "=" + }, + { + "type": "whitespace", + "start": 173, + "end": 174, + "value": " " + }, + { + "type": "word", + "start": 174, + "end": 189, + "value": "patternLinear3d" + }, + { + "type": "brace", + "start": 189, + "end": 190, + "value": "(" + }, + { + "type": "brace", + "start": 190, + "end": 191, + "value": "{" + }, + { + "type": "whitespace", + "start": 191, + "end": 194, + "value": "\n " + }, + { + "type": "word", + "start": 194, + "end": 198, + "value": "axis" + }, + { + "type": "colon", + "start": 198, + "end": 199, + "value": ":" + }, + { + "type": "whitespace", + "start": 199, + "end": 200, + "value": " " + }, + { + "type": "brace", + "start": 200, + "end": 201, + "value": "[" + }, + { + "type": "number", + "start": 201, + "end": 202, + "value": "1" + }, + { + "type": "comma", + "start": 202, + "end": 203, + "value": "," + }, + { + "type": "whitespace", + "start": 203, + "end": 204, + "value": " " + }, + { + "type": "number", + "start": 204, + "end": 205, + "value": "0" + }, + { + "type": "comma", + "start": 205, + "end": 206, + "value": "," + }, + { + "type": "whitespace", + "start": 206, + "end": 207, + "value": " " + }, + { + "type": "number", + "start": 207, + "end": 208, + "value": "0" + }, + { + "type": "brace", + "start": 208, + "end": 209, + "value": "]" + }, + { + "type": "comma", + "start": 209, + "end": 210, + "value": "," + }, + { + "type": "whitespace", + "start": 210, + "end": 213, + "value": "\n " + }, + { + "type": "word", + "start": 213, + "end": 222, + "value": "instances" + }, + { + "type": "colon", + "start": 222, + "end": 223, + "value": ":" + }, + { + "type": "whitespace", + "start": 223, + "end": 224, + "value": " " + }, + { + "type": "number", + "start": 224, + "end": 225, + "value": "7" + }, + { + "type": "comma", + "start": 225, + "end": 226, + "value": "," + }, + { + "type": "whitespace", + "start": 226, + "end": 229, + "value": "\n " + }, + { + "type": "word", + "start": 229, + "end": 237, + "value": "distance" + }, + { + "type": "colon", + "start": 237, + "end": 238, + "value": ":" + }, + { + "type": "whitespace", + "start": 238, + "end": 239, + "value": " " + }, + { + "type": "number", + "start": 239, + "end": 240, + "value": "6" + }, + { + "type": "whitespace", + "start": 240, + "end": 241, + "value": "\n" + }, + { + "type": "brace", + "start": 241, + "end": 242, + "value": "}" + }, + { + "type": "comma", + "start": 242, + "end": 243, + "value": "," + }, + { + "type": "whitespace", + "start": 243, + "end": 244, + "value": " " + }, + { + "type": "word", + "start": 244, + "end": 257, + "value": "exampleSketch" + }, + { + "type": "brace", + "start": 257, + "end": 258, + "value": ")" + }, + { + "type": "whitespace", + "start": 258, + "end": 260, + "value": "\n\n" + }, + { + "type": "word", + "start": 260, + "end": 266, + "value": "pattn2" + }, + { + "type": "whitespace", + "start": 266, + "end": 267, + "value": " " + }, + { + "type": "operator", + "start": 267, + "end": 268, + "value": "=" + }, + { + "type": "whitespace", + "start": 268, + "end": 269, + "value": " " + }, + { + "type": "word", + "start": 269, + "end": 286, + "value": "patternCircular3d" + }, + { + "type": "brace", + "start": 286, + "end": 287, + "value": "(" + }, + { + "type": "brace", + "start": 287, + "end": 288, + "value": "{" + }, + { + "type": "whitespace", + "start": 288, + "end": 291, + "value": "\n " + }, + { + "type": "word", + "start": 291, + "end": 295, + "value": "axis" + }, + { + "type": "colon", + "start": 295, + "end": 296, + "value": ":" + }, + { + "type": "whitespace", + "start": 296, + "end": 297, + "value": " " + }, + { + "type": "brace", + "start": 297, + "end": 298, + "value": "[" + }, + { + "type": "number", + "start": 298, + "end": 299, + "value": "0" + }, + { + "type": "comma", + "start": 299, + "end": 300, + "value": "," + }, + { + "type": "whitespace", + "start": 300, + "end": 301, + "value": " " + }, + { + "type": "number", + "start": 301, + "end": 302, + "value": "0" + }, + { + "type": "comma", + "start": 302, + "end": 303, + "value": "," + }, + { + "type": "whitespace", + "start": 303, + "end": 304, + "value": " " + }, + { + "type": "number", + "start": 304, + "end": 305, + "value": "1" + }, + { + "type": "brace", + "start": 305, + "end": 306, + "value": "]" + }, + { + "type": "comma", + "start": 306, + "end": 307, + "value": "," + }, + { + "type": "whitespace", + "start": 307, + "end": 310, + "value": "\n " + }, + { + "type": "word", + "start": 310, + "end": 316, + "value": "center" + }, + { + "type": "colon", + "start": 316, + "end": 317, + "value": ":" + }, + { + "type": "whitespace", + "start": 317, + "end": 318, + "value": " " + }, + { + "type": "brace", + "start": 318, + "end": 319, + "value": "[" + }, + { + "type": "operator", + "start": 319, + "end": 320, + "value": "-" + }, + { + "type": "number", + "start": 320, + "end": 322, + "value": "20" + }, + { + "type": "comma", + "start": 322, + "end": 323, + "value": "," + }, + { + "type": "whitespace", + "start": 323, + "end": 324, + "value": " " + }, + { + "type": "operator", + "start": 324, + "end": 325, + "value": "-" + }, + { + "type": "number", + "start": 325, + "end": 327, + "value": "20" + }, + { + "type": "comma", + "start": 327, + "end": 328, + "value": "," + }, + { + "type": "whitespace", + "start": 328, + "end": 329, + "value": " " + }, + { + "type": "operator", + "start": 329, + "end": 330, + "value": "-" + }, + { + "type": "number", + "start": 330, + "end": 332, + "value": "20" + }, + { + "type": "brace", + "start": 332, + "end": 333, + "value": "]" + }, + { + "type": "comma", + "start": 333, + "end": 334, + "value": "," + }, + { + "type": "whitespace", + "start": 334, + "end": 337, + "value": "\n " + }, + { + "type": "word", + "start": 337, + "end": 346, + "value": "instances" + }, + { + "type": "colon", + "start": 346, + "end": 347, + "value": ":" + }, + { + "type": "whitespace", + "start": 347, + "end": 348, + "value": " " + }, + { + "type": "number", + "start": 348, + "end": 350, + "value": "41" + }, + { + "type": "comma", + "start": 350, + "end": 351, + "value": "," + }, + { + "type": "whitespace", + "start": 351, + "end": 354, + "value": "\n " + }, + { + "type": "word", + "start": 354, + "end": 364, + "value": "arcDegrees" + }, + { + "type": "colon", + "start": 364, + "end": 365, + "value": ":" + }, + { + "type": "whitespace", + "start": 365, + "end": 366, + "value": " " + }, + { + "type": "number", + "start": 366, + "end": 369, + "value": "360" + }, + { + "type": "comma", + "start": 369, + "end": 370, + "value": "," + }, + { + "type": "whitespace", + "start": 370, + "end": 373, + "value": "\n " + }, + { + "type": "word", + "start": 373, + "end": 389, + "value": "rotateDuplicates" + }, + { + "type": "colon", + "start": 389, + "end": 390, + "value": ":" + }, + { + "type": "whitespace", + "start": 390, + "end": 391, + "value": " " + }, + { + "type": "keyword", + "start": 391, + "end": 396, + "value": "false" + }, + { + "type": "whitespace", + "start": 396, + "end": 397, + "value": "\n" + }, + { + "type": "brace", + "start": 397, + "end": 398, + "value": "}" + }, + { + "type": "comma", + "start": 398, + "end": 399, + "value": "," + }, + { + "type": "whitespace", + "start": 399, + "end": 400, + "value": " " + }, + { + "type": "word", + "start": 400, + "end": 406, + "value": "pattn1" + }, + { + "type": "brace", + "start": 406, + "end": 407, + "value": ")" + }, + { + "type": "whitespace", + "start": 407, + "end": 408, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/comparisons_multiple/ast.snap b/src/wasm-lib/kcl/tests/comparisons_multiple/ast.snap new file mode 100644 index 000000000..b8c8de189 --- /dev/null +++ b/src/wasm-lib/kcl/tests/comparisons_multiple/ast.snap @@ -0,0 +1,80 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing comparisons_multiple.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "end": 46, + "expression": { + "arguments": [ + { + "end": 18, + "left": { + "end": 13, + "left": { + "end": 8, + "raw": "3", + "start": 7, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + "operator": "==", + "right": { + "end": 13, + "raw": "3", + "start": 12, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + "start": 7, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "==", + "right": { + "end": 18, + "raw": "3", + "start": 17, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + "start": 7, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 45, + "raw": "\"this should not compile\"", + "start": 20, + "type": "Literal", + "type": "Literal", + "value": "this should not compile" + } + ], + "callee": { + "end": 6, + "name": "assert", + "start": 0, + "type": "Identifier" + }, + "end": 46, + "optional": false, + "start": 0, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "end": 47, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/comparisons_multiple/execution_error.snap b/src/wasm-lib/kcl/tests/comparisons_multiple/execution_error.snap new file mode 100644 index 000000000..2a7bc6941 --- /dev/null +++ b/src/wasm-lib/kcl/tests/comparisons_multiple/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing comparisons_multiple.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([7, 13, 0])], message: "Expected a number, but found a boolean (true/false value)" } diff --git a/src/wasm-lib/kcl/tests/comparisons_multiple/input.kcl b/src/wasm-lib/kcl/tests/comparisons_multiple/input.kcl new file mode 100644 index 000000000..23492e838 --- /dev/null +++ b/src/wasm-lib/kcl/tests/comparisons_multiple/input.kcl @@ -0,0 +1 @@ +assert(3 == 3 == 3, "this should not compile") diff --git a/src/wasm-lib/kcl/tests/comparisons_multiple/tokens.snap b/src/wasm-lib/kcl/tests/comparisons_multiple/tokens.snap new file mode 100644 index 000000000..c6d3736ad --- /dev/null +++ b/src/wasm-lib/kcl/tests/comparisons_multiple/tokens.snap @@ -0,0 +1,105 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing comparisons_multiple.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 6, + "value": "assert" + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "(" + }, + { + "type": "number", + "start": 7, + "end": 8, + "value": "3" + }, + { + "type": "whitespace", + "start": 8, + "end": 9, + "value": " " + }, + { + "type": "operator", + "start": 9, + "end": 11, + "value": "==" + }, + { + "type": "whitespace", + "start": 11, + "end": 12, + "value": " " + }, + { + "type": "number", + "start": 12, + "end": 13, + "value": "3" + }, + { + "type": "whitespace", + "start": 13, + "end": 14, + "value": " " + }, + { + "type": "operator", + "start": 14, + "end": 16, + "value": "==" + }, + { + "type": "whitespace", + "start": 16, + "end": 17, + "value": " " + }, + { + "type": "number", + "start": 17, + "end": 18, + "value": "3" + }, + { + "type": "comma", + "start": 18, + "end": 19, + "value": "," + }, + { + "type": "whitespace", + "start": 19, + "end": 20, + "value": " " + }, + { + "type": "string", + "start": 20, + "end": 45, + "value": "\"this should not compile\"" + }, + { + "type": "brace", + "start": 45, + "end": 46, + "value": ")" + }, + { + "type": "whitespace", + "start": 46, + "end": 47, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/computed_var/ast.snap b/src/wasm-lib/kcl/tests/computed_var/ast.snap new file mode 100644 index 000000000..ed01e5243 --- /dev/null +++ b/src/wasm-lib/kcl/tests/computed_var/ast.snap @@ -0,0 +1,435 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing computed_var.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 56, + "id": { + "end": 40, + "name": "arr", + "start": 37, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 45, + "raw": "0", + "start": 44, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 48, + "raw": "0", + "start": 47, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 51, + "raw": "0", + "start": 50, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "10", + "start": 53, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 56, + "start": 43, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 37, + "type": "VariableDeclarator" + } + ], + "end": 56, + "kind": "const", + "start": 37, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 62, + "id": { + "end": 58, + "name": "i", + "start": 57, + "type": "Identifier" + }, + "init": { + "end": 62, + "raw": "3", + "start": 61, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + "start": 57, + "type": "VariableDeclarator" + } + ], + "end": 62, + "kind": "const", + "start": 57, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 75, + "id": { + "end": 66, + "name": "ten", + "start": 63, + "type": "Identifier" + }, + "init": { + "computed": true, + "end": 75, + "object": { + "end": 72, + "name": "arr", + "start": 69, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 74, + "name": "i", + "start": 73, + "type": "Identifier", + "type": "Identifier" + }, + "start": 69, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 63, + "type": "VariableDeclarator" + } + ], + "end": 75, + "kind": "const", + "start": 63, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "end": 115, + "expression": { + "arguments": [ + { + "end": 92, + "name": "ten", + "start": 89, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 96, + "raw": "10", + "start": 94, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 106, + "raw": "0.000001", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0.000001 + }, + { + "end": 114, + "raw": "\"oops\"", + "start": 108, + "type": "Literal", + "type": "Literal", + "value": "oops" + } + ], + "callee": { + "end": 88, + "name": "assertEqual", + "start": 77, + "type": "Identifier" + }, + "end": 115, + "optional": false, + "start": 77, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 77, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "declarations": [ + { + "end": 126, + "id": { + "end": 118, + "name": "p", + "start": 117, + "type": "Identifier" + }, + "init": { + "end": 126, + "raw": "\"foo\"", + "start": 121, + "type": "Literal", + "type": "Literal", + "value": "foo" + }, + "start": 117, + "type": "VariableDeclarator" + } + ], + "end": 126, + "kind": "const", + "start": 117, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 151, + "id": { + "end": 130, + "name": "obj", + "start": 127, + "type": "Identifier" + }, + "init": { + "end": 151, + "properties": [ + { + "end": 141, + "key": { + "end": 138, + "name": "foo", + "start": 135, + "type": "Identifier" + }, + "start": 135, + "type": "ObjectProperty", + "value": { + "end": 141, + "raw": "1", + "start": 140, + "type": "Literal", + "type": "Literal", + "value": 1 + } + }, + { + "end": 149, + "key": { + "end": 146, + "name": "bar", + "start": 143, + "type": "Identifier" + }, + "start": 143, + "type": "ObjectProperty", + "value": { + "end": 149, + "raw": "0", + "start": 148, + "type": "Literal", + "type": "Literal", + "value": 0 + } + } + ], + "start": 133, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + "start": 127, + "type": "VariableDeclarator" + } + ], + "end": 151, + "kind": "const", + "start": 127, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 164, + "id": { + "end": 155, + "name": "one", + "start": 152, + "type": "Identifier" + }, + "init": { + "computed": true, + "end": 164, + "object": { + "end": 161, + "name": "obj", + "start": 158, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 163, + "name": "p", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "start": 158, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 152, + "type": "VariableDeclarator" + } + ], + "end": 164, + "kind": "const", + "start": 152, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "end": 204, + "expression": { + "arguments": [ + { + "end": 181, + "name": "one", + "start": 178, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 184, + "raw": "1", + "start": 183, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 195, + "raw": "0.0000001", + "start": 186, + "type": "Literal", + "type": "Literal", + "value": 0.0000001 + }, + { + "end": 203, + "raw": "\"oops\"", + "start": 197, + "type": "Literal", + "type": "Literal", + "value": "oops" + } + ], + "callee": { + "end": 177, + "name": "assertEqual", + "start": 166, + "type": "Identifier" + }, + "end": 204, + "optional": false, + "start": 166, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 166, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "end": 205, + "nonCodeMeta": { + "nonCodeNodes": { + "2": [ + { + "end": 77, + "start": 75, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "3": [ + { + "end": 117, + "start": 115, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "6": [ + { + "end": 166, + "start": 164, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [ + { + "end": 34, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "This tests computed properties.", + "style": "line" + } + }, + { + "end": 37, + "start": 34, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/computed_var/input.kcl b/src/wasm-lib/kcl/tests/computed_var/input.kcl new file mode 100644 index 000000000..fa2aade6c --- /dev/null +++ b/src/wasm-lib/kcl/tests/computed_var/input.kcl @@ -0,0 +1,14 @@ +// This tests computed properties. + + +arr = [0, 0, 0, 10] +i = 3 +ten = arr[i] + +assertEqual(ten, 10, 0.000001, "oops") + +p = "foo" +obj = { foo: 1, bar: 0 } +one = obj[p] + +assertEqual(one, 1, 0.0000001, "oops") diff --git a/src/wasm-lib/kcl/tests/computed_var/program_memory.snap b/src/wasm-lib/kcl/tests/computed_var/program_memory.snap new file mode 100644 index 000000000..911deb222 --- /dev/null +++ b/src/wasm-lib/kcl/tests/computed_var/program_memory.snap @@ -0,0 +1,194 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing computed_var.kcl +snapshot_kind: text +--- +{ + "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": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 44, + 45, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 47, + 48, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 50, + 51, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 10, + "__meta": [ + { + "sourceRange": [ + 53, + 55, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 43, + 56, + 0 + ] + } + ] + }, + "i": { + "type": "Int", + "value": 3, + "__meta": [ + { + "sourceRange": [ + 61, + 62, + 0 + ] + } + ] + }, + "obj": { + "type": "Object", + "value": { + "bar": { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 148, + 149, + 0 + ] + } + ] + }, + "foo": { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 140, + 141, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 133, + 151, + 0 + ] + } + ] + }, + "one": { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 140, + 141, + 0 + ] + } + ] + }, + "p": { + "type": "String", + "value": "foo", + "__meta": [ + { + "sourceRange": [ + 121, + 126, + 0 + ] + } + ] + }, + "ten": { + "type": "Int", + "value": 10, + "__meta": [ + { + "sourceRange": [ + 53, + 55, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/computed_var/rendered_model.png b/src/wasm-lib/kcl/tests/computed_var/rendered_model.png new file mode 100644 index 000000000..6148ae432 Binary files /dev/null and b/src/wasm-lib/kcl/tests/computed_var/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/computed_var/tokens.snap b/src/wasm-lib/kcl/tests/computed_var/tokens.snap new file mode 100644 index 000000000..c4aa46e12 --- /dev/null +++ b/src/wasm-lib/kcl/tests/computed_var/tokens.snap @@ -0,0 +1,585 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing computed_var.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "lineComment", + "start": 0, + "end": 34, + "value": "// This tests computed properties." + }, + { + "type": "whitespace", + "start": 34, + "end": 37, + "value": "\n\n\n" + }, + { + "type": "word", + "start": 37, + "end": 40, + "value": "arr" + }, + { + "type": "whitespace", + "start": 40, + "end": 41, + "value": " " + }, + { + "type": "operator", + "start": 41, + "end": 42, + "value": "=" + }, + { + "type": "whitespace", + "start": 42, + "end": 43, + "value": " " + }, + { + "type": "brace", + "start": 43, + "end": 44, + "value": "[" + }, + { + "type": "number", + "start": 44, + "end": 45, + "value": "0" + }, + { + "type": "comma", + "start": 45, + "end": 46, + "value": "," + }, + { + "type": "whitespace", + "start": 46, + "end": 47, + "value": " " + }, + { + "type": "number", + "start": 47, + "end": 48, + "value": "0" + }, + { + "type": "comma", + "start": 48, + "end": 49, + "value": "," + }, + { + "type": "whitespace", + "start": 49, + "end": 50, + "value": " " + }, + { + "type": "number", + "start": 50, + "end": 51, + "value": "0" + }, + { + "type": "comma", + "start": 51, + "end": 52, + "value": "," + }, + { + "type": "whitespace", + "start": 52, + "end": 53, + "value": " " + }, + { + "type": "number", + "start": 53, + "end": 55, + "value": "10" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "whitespace", + "start": 56, + "end": 57, + "value": "\n" + }, + { + "type": "word", + "start": 57, + "end": 58, + "value": "i" + }, + { + "type": "whitespace", + "start": 58, + "end": 59, + "value": " " + }, + { + "type": "operator", + "start": 59, + "end": 60, + "value": "=" + }, + { + "type": "whitespace", + "start": 60, + "end": 61, + "value": " " + }, + { + "type": "number", + "start": 61, + "end": 62, + "value": "3" + }, + { + "type": "whitespace", + "start": 62, + "end": 63, + "value": "\n" + }, + { + "type": "word", + "start": 63, + "end": 66, + "value": "ten" + }, + { + "type": "whitespace", + "start": 66, + "end": 67, + "value": " " + }, + { + "type": "operator", + "start": 67, + "end": 68, + "value": "=" + }, + { + "type": "whitespace", + "start": 68, + "end": 69, + "value": " " + }, + { + "type": "word", + "start": 69, + "end": 72, + "value": "arr" + }, + { + "type": "brace", + "start": 72, + "end": 73, + "value": "[" + }, + { + "type": "word", + "start": 73, + "end": 74, + "value": "i" + }, + { + "type": "brace", + "start": 74, + "end": 75, + "value": "]" + }, + { + "type": "whitespace", + "start": 75, + "end": 77, + "value": "\n\n" + }, + { + "type": "word", + "start": 77, + "end": 88, + "value": "assertEqual" + }, + { + "type": "brace", + "start": 88, + "end": 89, + "value": "(" + }, + { + "type": "word", + "start": 89, + "end": 92, + "value": "ten" + }, + { + "type": "comma", + "start": 92, + "end": 93, + "value": "," + }, + { + "type": "whitespace", + "start": 93, + "end": 94, + "value": " " + }, + { + "type": "number", + "start": 94, + "end": 96, + "value": "10" + }, + { + "type": "comma", + "start": 96, + "end": 97, + "value": "," + }, + { + "type": "whitespace", + "start": 97, + "end": 98, + "value": " " + }, + { + "type": "number", + "start": 98, + "end": 106, + "value": "0.000001" + }, + { + "type": "comma", + "start": 106, + "end": 107, + "value": "," + }, + { + "type": "whitespace", + "start": 107, + "end": 108, + "value": " " + }, + { + "type": "string", + "start": 108, + "end": 114, + "value": "\"oops\"" + }, + { + "type": "brace", + "start": 114, + "end": 115, + "value": ")" + }, + { + "type": "whitespace", + "start": 115, + "end": 117, + "value": "\n\n" + }, + { + "type": "word", + "start": 117, + "end": 118, + "value": "p" + }, + { + "type": "whitespace", + "start": 118, + "end": 119, + "value": " " + }, + { + "type": "operator", + "start": 119, + "end": 120, + "value": "=" + }, + { + "type": "whitespace", + "start": 120, + "end": 121, + "value": " " + }, + { + "type": "string", + "start": 121, + "end": 126, + "value": "\"foo\"" + }, + { + "type": "whitespace", + "start": 126, + "end": 127, + "value": "\n" + }, + { + "type": "word", + "start": 127, + "end": 130, + "value": "obj" + }, + { + "type": "whitespace", + "start": 130, + "end": 131, + "value": " " + }, + { + "type": "operator", + "start": 131, + "end": 132, + "value": "=" + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "brace", + "start": 133, + "end": 134, + "value": "{" + }, + { + "type": "whitespace", + "start": 134, + "end": 135, + "value": " " + }, + { + "type": "word", + "start": 135, + "end": 138, + "value": "foo" + }, + { + "type": "colon", + "start": 138, + "end": 139, + "value": ":" + }, + { + "type": "whitespace", + "start": 139, + "end": 140, + "value": " " + }, + { + "type": "number", + "start": 140, + "end": 141, + "value": "1" + }, + { + "type": "comma", + "start": 141, + "end": 142, + "value": "," + }, + { + "type": "whitespace", + "start": 142, + "end": 143, + "value": " " + }, + { + "type": "word", + "start": 143, + "end": 146, + "value": "bar" + }, + { + "type": "colon", + "start": 146, + "end": 147, + "value": ":" + }, + { + "type": "whitespace", + "start": 147, + "end": 148, + "value": " " + }, + { + "type": "number", + "start": 148, + "end": 149, + "value": "0" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "brace", + "start": 150, + "end": 151, + "value": "}" + }, + { + "type": "whitespace", + "start": 151, + "end": 152, + "value": "\n" + }, + { + "type": "word", + "start": 152, + "end": 155, + "value": "one" + }, + { + "type": "whitespace", + "start": 155, + "end": 156, + "value": " " + }, + { + "type": "operator", + "start": 156, + "end": 157, + "value": "=" + }, + { + "type": "whitespace", + "start": 157, + "end": 158, + "value": " " + }, + { + "type": "word", + "start": 158, + "end": 161, + "value": "obj" + }, + { + "type": "brace", + "start": 161, + "end": 162, + "value": "[" + }, + { + "type": "word", + "start": 162, + "end": 163, + "value": "p" + }, + { + "type": "brace", + "start": 163, + "end": 164, + "value": "]" + }, + { + "type": "whitespace", + "start": 164, + "end": 166, + "value": "\n\n" + }, + { + "type": "word", + "start": 166, + "end": 177, + "value": "assertEqual" + }, + { + "type": "brace", + "start": 177, + "end": 178, + "value": "(" + }, + { + "type": "word", + "start": 178, + "end": 181, + "value": "one" + }, + { + "type": "comma", + "start": 181, + "end": 182, + "value": "," + }, + { + "type": "whitespace", + "start": 182, + "end": 183, + "value": " " + }, + { + "type": "number", + "start": 183, + "end": 184, + "value": "1" + }, + { + "type": "comma", + "start": 184, + "end": 185, + "value": "," + }, + { + "type": "whitespace", + "start": 185, + "end": 186, + "value": " " + }, + { + "type": "number", + "start": 186, + "end": 195, + "value": "0.0000001" + }, + { + "type": "comma", + "start": 195, + "end": 196, + "value": "," + }, + { + "type": "whitespace", + "start": 196, + "end": 197, + "value": " " + }, + { + "type": "string", + "start": 197, + "end": 203, + "value": "\"oops\"" + }, + { + "type": "brace", + "start": 203, + "end": 204, + "value": ")" + }, + { + "type": "whitespace", + "start": 204, + "end": 205, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/ast.snap b/src/wasm-lib/kcl/tests/fillet-and-shell/ast.snap new file mode 100644 index 000000000..f1353ce37 --- /dev/null +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/ast.snap @@ -0,0 +1,2694 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing fillet-and-shell.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 14, + "id": { + "end": 9, + "name": "rpizWidth", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 14, + "raw": "30", + "start": 12, + "type": "Literal", + "type": "Literal", + "value": 30 + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 14, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 30, + "id": { + "end": 25, + "name": "rpizLength", + "start": 15, + "type": "Identifier" + }, + "init": { + "end": 30, + "raw": "65", + "start": 28, + "type": "Literal", + "type": "Literal", + "value": 65 + }, + "start": 15, + "type": "VariableDeclarator" + } + ], + "end": 30, + "kind": "const", + "start": 15, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 49, + "id": { + "end": 45, + "name": "caseThickness", + "start": 32, + "type": "Identifier" + }, + "init": { + "end": 49, + "raw": "1", + "start": 48, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 32, + "type": "VariableDeclarator" + } + ], + "end": 49, + "kind": "const", + "start": 32, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 61, + "id": { + "end": 57, + "name": "border", + "start": 51, + "type": "Identifier" + }, + "init": { + "end": 61, + "raw": "4", + "start": 60, + "type": "Literal", + "type": "Literal", + "value": 4 + }, + "start": 51, + "type": "VariableDeclarator" + } + ], + "end": 61, + "kind": "const", + "start": 51, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 78, + "id": { + "end": 74, + "name": "screwHeight", + "start": 63, + "type": "Identifier" + }, + "init": { + "end": 78, + "raw": "4", + "start": 77, + "type": "Literal", + "type": "Literal", + "value": 4 + }, + "start": 63, + "type": "VariableDeclarator" + } + ], + "end": 78, + "kind": "const", + "start": 63, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 114, + "id": { + "end": 89, + "name": "caseWidth", + "start": 80, + "type": "Identifier" + }, + "init": { + "end": 114, + "left": { + "end": 101, + "name": "rpizWidth", + "start": 92, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 114, + "left": { + "end": 110, + "name": "border", + "start": 104, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 114, + "raw": "2", + "start": 113, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 104, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 92, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 80, + "type": "VariableDeclarator" + } + ], + "end": 114, + "kind": "const", + "start": 80, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 151, + "id": { + "end": 125, + "name": "caseLength", + "start": 115, + "type": "Identifier" + }, + "init": { + "end": 151, + "left": { + "end": 138, + "name": "rpizLength", + "start": 128, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 151, + "left": { + "end": 147, + "name": "border", + "start": 141, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 151, + "raw": "2", + "start": 150, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 141, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 128, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 115, + "type": "VariableDeclarator" + } + ], + "end": 151, + "kind": "const", + "start": 115, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 166, + "id": { + "end": 162, + "name": "caseHeight", + "start": 152, + "type": "Identifier" + }, + "init": { + "end": 166, + "raw": "8", + "start": 165, + "type": "Literal", + "type": "Literal", + "value": 8 + }, + "start": 152, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 152, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 191, + "id": { + "end": 186, + "name": "widthBetweenScrews", + "start": 168, + "type": "Identifier" + }, + "init": { + "end": 191, + "raw": "23", + "start": 189, + "type": "Literal", + "type": "Literal", + "value": 23 + }, + "start": 168, + "type": "VariableDeclarator" + } + ], + "end": 191, + "kind": "const", + "start": 168, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 220, + "id": { + "end": 211, + "name": "lengthBetweenScrews", + "start": 192, + "type": "Identifier" + }, + "init": { + "end": 220, + "left": { + "end": 216, + "raw": "29", + "start": 214, + "type": "Literal", + "type": "Literal", + "value": 29 + }, + "operator": "*", + "right": { + "end": 220, + "raw": "2", + "start": 219, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 214, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 192, + "type": "VariableDeclarator" + } + ], + "end": 220, + "kind": "const", + "start": 192, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 245, + "id": { + "end": 238, + "name": "miniHdmiDistance", + "start": 222, + "type": "Identifier" + }, + "init": { + "end": 245, + "raw": "12.4", + "start": 241, + "type": "Literal", + "type": "Literal", + "value": 12.4 + }, + "start": 222, + "type": "VariableDeclarator" + } + ], + "end": 245, + "kind": "const", + "start": 222, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 270, + "id": { + "end": 263, + "name": "microUsb1Distance", + "start": 246, + "type": "Identifier" + }, + "init": { + "end": 270, + "raw": "41.4", + "start": 266, + "type": "Literal", + "type": "Literal", + "value": 41.4 + }, + "start": 246, + "type": "VariableDeclarator" + } + ], + "end": 270, + "kind": "const", + "start": 246, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 293, + "id": { + "end": 288, + "name": "microUsb2Distance", + "start": 271, + "type": "Identifier" + }, + "init": { + "end": 293, + "raw": "54", + "start": 291, + "type": "Literal", + "type": "Literal", + "value": 54 + }, + "start": 271, + "type": "VariableDeclarator" + } + ], + "end": 293, + "kind": "const", + "start": 271, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 315, + "id": { + "end": 308, + "name": "miniHdmiWidth", + "start": 295, + "type": "Identifier" + }, + "init": { + "end": 315, + "raw": "11.2", + "start": 311, + "type": "Literal", + "type": "Literal", + "value": 11.2 + }, + "start": 295, + "type": "VariableDeclarator" + } + ], + "end": 315, + "kind": "const", + "start": 295, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 335, + "id": { + "end": 329, + "name": "microUsbWidth", + "start": 316, + "type": "Identifier" + }, + "init": { + "end": 335, + "raw": "7.4", + "start": 332, + "type": "Literal", + "type": "Literal", + "value": 7.4 + }, + "start": 316, + "type": "VariableDeclarator" + } + ], + "end": 335, + "kind": "const", + "start": 316, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 356, + "id": { + "end": 352, + "name": "connectorPadding", + "start": 336, + "type": "Identifier" + }, + "init": { + "end": 356, + "raw": "4", + "start": 355, + "type": "Literal", + "type": "Literal", + "value": 4 + }, + "start": 336, + "type": "VariableDeclarator" + } + ], + "end": 356, + "kind": "const", + "start": 336, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 741, + "id": { + "end": 370, + "name": "miniHdmiHole", + "start": 358, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "elements": [ + { + "end": 397, + "raw": "0", + "start": 396, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 452, + "left": { + "end": 431, + "left": { + "end": 412, + "name": "border", + "start": 406, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 431, + "name": "miniHdmiDistance", + "start": 415, + "type": "Identifier", + "type": "Identifier" + }, + "start": 406, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "end": 452, + "left": { + "end": 448, + "name": "miniHdmiWidth", + "start": 435, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 452, + "raw": "2", + "start": 451, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 435, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 406, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 460, + "start": 387, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + ], + "callee": { + "end": 386, + "name": "startSketchAt", + "start": 373, + "type": "Identifier" + }, + "end": 461, + "optional": false, + "start": 373, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 484, + "raw": "0", + "start": 483, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 538, + "left": { + "end": 518, + "left": { + "end": 499, + "name": "border", + "start": 493, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 518, + "name": "miniHdmiDistance", + "start": 502, + "type": "Identifier", + "type": "Identifier" + }, + "start": 493, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 538, + "left": { + "end": 534, + "name": "miniHdmiWidth", + "start": 521, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 538, + "raw": "2", + "start": 537, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 521, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 493, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 545, + "start": 474, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 548, + "start": 547, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 473, + "name": "lineTo", + "start": 467, + "type": "Identifier" + }, + "end": 549, + "optional": false, + "start": 467, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 572, + "raw": "1", + "start": 571, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 626, + "left": { + "end": 606, + "left": { + "end": 587, + "name": "border", + "start": 581, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 606, + "name": "miniHdmiDistance", + "start": 590, + "type": "Identifier", + "type": "Identifier" + }, + "start": 581, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 626, + "left": { + "end": 622, + "name": "miniHdmiWidth", + "start": 609, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 626, + "raw": "2", + "start": 625, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 609, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 581, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 633, + "start": 562, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 636, + "start": 635, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 561, + "name": "lineTo", + "start": 555, + "type": "Identifier" + }, + "end": 637, + "optional": false, + "start": 555, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 660, + "raw": "1", + "start": 659, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 715, + "left": { + "end": 694, + "left": { + "end": 675, + "name": "border", + "start": 669, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 694, + "name": "miniHdmiDistance", + "start": 678, + "type": "Identifier", + "type": "Identifier" + }, + "start": 669, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "end": 715, + "left": { + "end": 711, + "name": "miniHdmiWidth", + "start": 698, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 715, + "raw": "2", + "start": 714, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 698, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 669, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 723, + "start": 650, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 726, + "start": 725, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 649, + "name": "lineTo", + "start": 643, + "type": "Identifier" + }, + "end": 727, + "optional": false, + "start": 643, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 740, + "start": 739, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 738, + "name": "close", + "start": 733, + "type": "Identifier" + }, + "end": 741, + "optional": false, + "start": 733, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 741, + "start": 373, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 358, + "type": "VariableDeclarator" + } + ], + "end": 741, + "kind": "const", + "start": 358, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1191, + "id": { + "end": 747, + "name": "case", + "start": 743, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 768, + "raw": "'XY'", + "start": 764, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 763, + "name": "startSketchOn", + "start": 750, + "type": "Identifier" + }, + "end": 769, + "optional": false, + "start": 750, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 792, + "raw": "0", + "start": 791, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 795, + "raw": "0", + "start": 794, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 796, + "start": 790, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 799, + "start": 798, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 789, + "name": "startProfileAt", + "start": 775, + "type": "Identifier" + }, + "end": 800, + "optional": false, + "start": 775, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 823, + "name": "caseWidth", + "start": 814, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 826, + "raw": "0", + "start": 825, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 827, + "start": 813, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 830, + "start": 829, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "edge1" + } + ], + "callee": { + "end": 812, + "name": "lineTo", + "start": 806, + "type": "Identifier" + }, + "end": 839, + "optional": false, + "start": 806, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 862, + "name": "caseWidth", + "start": 853, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 874, + "name": "caseLength", + "start": 864, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 875, + "start": 852, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 878, + "start": 877, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "edge2" + } + ], + "callee": { + "end": 851, + "name": "lineTo", + "start": 845, + "type": "Identifier" + }, + "end": 887, + "optional": false, + "start": 845, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 902, + "raw": "0", + "start": 901, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 914, + "name": "caseLength", + "start": 904, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 915, + "start": 900, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 918, + "start": 917, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "edge3" + } + ], + "callee": { + "end": 899, + "name": "lineTo", + "start": 893, + "type": "Identifier" + }, + "end": 927, + "optional": false, + "start": 893, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 940, + "start": 939, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "edge4" + } + ], + "callee": { + "end": 938, + "name": "close", + "start": 933, + "type": "Identifier" + }, + "end": 949, + "optional": false, + "start": 933, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 973, + "name": "caseHeight", + "start": 963, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 976, + "start": 975, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 962, + "name": "extrude", + "start": 955, + "type": "Identifier" + }, + "end": 977, + "optional": false, + "start": 955, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1187, + "properties": [ + { + "end": 1008, + "key": { + "end": 1005, + "name": "radius", + "start": 999, + "type": "Identifier" + }, + "start": 999, + "type": "ObjectProperty", + "value": { + "end": 1008, + "raw": "1", + "start": 1007, + "type": "Literal", + "type": "Literal", + "value": 1 + } + }, + { + "end": 1180, + "key": { + "end": 1021, + "name": "tags", + "start": 1017, + "type": "Identifier" + }, + "start": 1017, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "arguments": [ + { + "end": 1059, + "name": "edge1", + "start": 1054, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1053, + "name": "getNextAdjacentEdge", + "start": 1034, + "type": "Identifier" + }, + "end": 1060, + "optional": false, + "start": 1034, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1096, + "name": "edge2", + "start": 1091, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1090, + "name": "getNextAdjacentEdge", + "start": 1071, + "type": "Identifier" + }, + "end": 1097, + "optional": false, + "start": 1071, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1133, + "name": "edge3", + "start": 1128, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1127, + "name": "getNextAdjacentEdge", + "start": 1108, + "type": "Identifier" + }, + "end": 1134, + "optional": false, + "start": 1108, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1170, + "name": "edge4", + "start": 1165, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1164, + "name": "getNextAdjacentEdge", + "start": 1145, + "type": "Identifier" + }, + "end": 1171, + "optional": false, + "start": 1145, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1180, + "start": 1023, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 990, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1190, + "start": 1189, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 989, + "name": "fillet", + "start": 983, + "type": "Identifier" + }, + "end": 1191, + "optional": false, + "start": 983, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1191, + "start": 750, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 743, + "type": "VariableDeclarator" + } + ], + "end": 1191, + "kind": "const", + "start": 743, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1442, + "id": { + "end": 1204, + "name": "m25Screw", + "start": 1196, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "declarations": [ + { + "end": 1425, + "id": { + "end": 1234, + "name": "screw", + "start": 1229, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 1255, + "raw": "\"XY\"", + "start": 1251, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 1250, + "name": "startSketchOn", + "start": 1237, + "type": "Identifier" + }, + "end": 1256, + "optional": false, + "start": 1237, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1281, + "raw": "0", + "start": 1280, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1284, + "raw": "0", + "start": 1283, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 1285, + "start": 1279, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1288, + "start": 1287, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1278, + "name": "startProfileAt", + "start": 1264, + "type": "Identifier" + }, + "end": 1289, + "optional": false, + "start": 1264, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1335, + "properties": [ + { + "end": 1320, + "key": { + "end": 1312, + "name": "center", + "start": 1306, + "type": "Identifier" + }, + "start": 1306, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 1316, + "name": "x", + "start": 1315, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1319, + "name": "y", + "start": 1318, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 1320, + "start": 1314, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 1333, + "key": { + "end": 1328, + "name": "radius", + "start": 1322, + "type": "Identifier" + }, + "start": 1322, + "type": "ObjectProperty", + "value": { + "end": 1333, + "raw": "2.5", + "start": 1330, + "type": "Literal", + "type": "Literal", + "value": 2.5 + } + } + ], + "start": 1304, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1338, + "start": 1337, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1303, + "name": "circle", + "start": 1297, + "type": "Identifier" + }, + "end": 1339, + "optional": false, + "start": 1297, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "arguments": [ + { + "end": 1391, + "properties": [ + { + "end": 1375, + "key": { + "end": 1367, + "name": "center", + "start": 1361, + "type": "Identifier" + }, + "start": 1361, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 1371, + "name": "x", + "start": 1370, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1374, + "name": "y", + "start": 1373, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 1375, + "start": 1369, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 1389, + "key": { + "end": 1383, + "name": "radius", + "start": 1377, + "type": "Identifier" + }, + "start": 1377, + "type": "ObjectProperty", + "value": { + "end": 1389, + "raw": "1.25", + "start": 1385, + "type": "Literal", + "type": "Literal", + "value": 1.25 + } + } + ], + "start": 1359, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1394, + "start": 1393, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1358, + "name": "circle", + "start": 1352, + "type": "Identifier" + }, + "end": 1395, + "optional": false, + "start": 1352, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "end": 1398, + "start": 1397, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1351, + "name": "hole", + "start": 1347, + "type": "Identifier" + }, + "end": 1399, + "optional": false, + "start": 1347, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1421, + "name": "height", + "start": 1415, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1424, + "start": 1423, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1414, + "name": "extrude", + "start": 1407, + "type": "Identifier" + }, + "end": 1425, + "optional": false, + "start": 1407, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1425, + "start": 1237, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 1229, + "type": "VariableDeclarator" + } + ], + "end": 1425, + "kind": "const", + "start": 1229, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 1440, + "name": "screw", + "start": 1435, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1440, + "start": 1428, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 1442, + "start": 1225 + }, + "end": 1442, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 1209, + "name": "x", + "start": 1208, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 1212, + "name": "y", + "start": 1211, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 1220, + "name": "height", + "start": 1214, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 1207, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 1196, + "type": "VariableDeclarator" + } + ], + "end": 1442, + "kind": "fn", + "start": 1193, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "end": 1573, + "expression": { + "arguments": [ + { + "end": 1501, + "left": { + "end": 1475, + "left": { + "end": 1459, + "name": "border", + "start": 1453, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 1475, + "left": { + "end": 1471, + "name": "rpizWidth", + "start": 1462, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1475, + "raw": "2", + "start": 1474, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1462, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1453, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "end": 1501, + "left": { + "end": 1497, + "name": "widthBetweenScrews", + "start": 1479, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1501, + "raw": "2", + "start": 1500, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1479, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1453, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1558, + "left": { + "end": 1531, + "left": { + "end": 1514, + "left": { + "end": 1505, + "raw": "0", + "start": 1504, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "operator": "+", + "right": { + "end": 1514, + "name": "border", + "start": 1508, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1504, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1531, + "left": { + "end": 1527, + "name": "rpizLength", + "start": 1517, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1531, + "raw": "2", + "start": 1530, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1517, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1504, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "end": 1558, + "left": { + "end": 1554, + "name": "lengthBetweenScrews", + "start": 1535, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1558, + "raw": "2", + "start": 1557, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1535, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1504, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1572, + "name": "screwHeight", + "start": 1561, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1452, + "name": "m25Screw", + "start": 1444, + "type": "Identifier" + }, + "end": 1573, + "optional": false, + "start": 1444, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 1444, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "end": 1702, + "expression": { + "arguments": [ + { + "end": 1632, + "left": { + "end": 1606, + "left": { + "end": 1590, + "name": "border", + "start": 1584, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 1606, + "left": { + "end": 1602, + "name": "rpizWidth", + "start": 1593, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1606, + "raw": "2", + "start": 1605, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1593, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1584, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "end": 1632, + "left": { + "end": 1628, + "name": "widthBetweenScrews", + "start": 1610, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1632, + "raw": "2", + "start": 1631, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1610, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1584, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1688, + "left": { + "end": 1662, + "left": { + "end": 1645, + "left": { + "end": 1636, + "raw": "0", + "start": 1635, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "operator": "+", + "right": { + "end": 1645, + "name": "border", + "start": 1639, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1635, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1662, + "left": { + "end": 1658, + "name": "rpizLength", + "start": 1648, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1662, + "raw": "2", + "start": 1661, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1648, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1635, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1688, + "left": { + "end": 1684, + "name": "lengthBetweenScrews", + "start": 1665, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1688, + "raw": "2", + "start": 1687, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1665, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1635, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1701, + "name": "screwHeight", + "start": 1690, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1583, + "name": "m25Screw", + "start": 1575, + "type": "Identifier" + }, + "end": 1702, + "optional": false, + "start": 1575, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 1575, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "end": 1829, + "expression": { + "arguments": [ + { + "end": 1760, + "left": { + "end": 1735, + "left": { + "end": 1719, + "name": "border", + "start": 1713, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 1735, + "left": { + "end": 1731, + "name": "rpizWidth", + "start": 1722, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1735, + "raw": "2", + "start": 1734, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1722, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1713, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1760, + "left": { + "end": 1756, + "name": "widthBetweenScrews", + "start": 1738, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1760, + "raw": "2", + "start": 1759, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1738, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1713, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1815, + "left": { + "end": 1789, + "left": { + "end": 1772, + "left": { + "end": 1763, + "raw": "0", + "start": 1762, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "operator": "+", + "right": { + "end": 1772, + "name": "border", + "start": 1766, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1762, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1789, + "left": { + "end": 1785, + "name": "rpizLength", + "start": 1775, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1789, + "raw": "2", + "start": 1788, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1775, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1762, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1815, + "left": { + "end": 1811, + "name": "lengthBetweenScrews", + "start": 1792, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1815, + "raw": "2", + "start": 1814, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1792, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1762, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1828, + "name": "screwHeight", + "start": 1817, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1712, + "name": "m25Screw", + "start": 1704, + "type": "Identifier" + }, + "end": 1829, + "optional": false, + "start": 1704, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 1704, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "end": 1958, + "expression": { + "arguments": [ + { + "end": 1887, + "left": { + "end": 1862, + "left": { + "end": 1846, + "name": "border", + "start": 1840, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 1862, + "left": { + "end": 1858, + "name": "rpizWidth", + "start": 1849, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1862, + "raw": "2", + "start": 1861, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1849, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1840, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1887, + "left": { + "end": 1883, + "name": "widthBetweenScrews", + "start": 1865, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1887, + "raw": "2", + "start": 1886, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1865, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1840, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1943, + "left": { + "end": 1916, + "left": { + "end": 1899, + "left": { + "end": 1890, + "raw": "0", + "start": 1889, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "operator": "+", + "right": { + "end": 1899, + "name": "border", + "start": 1893, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1889, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1916, + "left": { + "end": 1912, + "name": "rpizLength", + "start": 1902, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1916, + "raw": "2", + "start": 1915, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1902, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1889, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "end": 1943, + "left": { + "end": 1939, + "name": "lengthBetweenScrews", + "start": 1920, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1943, + "raw": "2", + "start": 1942, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1920, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1889, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1957, + "name": "screwHeight", + "start": 1946, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1839, + "name": "m25Screw", + "start": 1831, + "type": "Identifier" + }, + "end": 1958, + "optional": false, + "start": 1831, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 1831, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "end": 2021, + "expression": { + "arguments": [ + { + "end": 2014, + "properties": [ + { + "end": 1984, + "key": { + "end": 1975, + "name": "faces", + "start": 1970, + "type": "Identifier" + }, + "start": 1970, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 1983, + "raw": "'end'", + "start": 1978, + "type": "Literal", + "type": "Literal", + "value": "end" + } + ], + "end": 1984, + "start": 1977, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 2012, + "key": { + "end": 1997, + "name": "thickness", + "start": 1988, + "type": "Identifier" + }, + "start": 1988, + "type": "ObjectProperty", + "value": { + "end": 2012, + "name": "caseThickness", + "start": 1999, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 1966, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 2020, + "name": "case", + "start": 2016, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1965, + "name": "shell", + "start": 1960, + "type": "Identifier" + }, + "end": 2021, + "optional": false, + "start": 1960, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 1960, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "end": 2022, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 32, + "start": 30, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "2": [ + { + "end": 51, + "start": 49, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "3": [ + { + "end": 63, + "start": 61, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "4": [ + { + "end": 80, + "start": 78, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "7": [ + { + "end": 168, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "9": [ + { + "end": 222, + "start": 220, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "12": [ + { + "end": 295, + "start": 293, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "15": [ + { + "end": 358, + "start": 356, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "16": [ + { + "end": 743, + "start": 741, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "17": [ + { + "end": 1193, + "start": 1191, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "18": [ + { + "end": 1444, + "start": 1442, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "19": [ + { + "end": 1575, + "start": 1573, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "20": [ + { + "end": 1704, + "start": 1702, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "21": [ + { + "end": 1831, + "start": 1829, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "22": [ + { + "end": 1960, + "start": 1958, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/input.kcl b/src/wasm-lib/kcl/tests/fillet-and-shell/input.kcl new file mode 100644 index 000000000..8a650ff21 --- /dev/null +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/input.kcl @@ -0,0 +1,80 @@ +rpizWidth = 30 +rpizLength = 65 + +caseThickness = 1 + +border = 4 + +screwHeight = 4 + +caseWidth = rpizWidth + border * 2 +caseLength = rpizLength + border * 2 +caseHeight = 8 + +widthBetweenScrews = 23 +lengthBetweenScrews = 29 * 2 + +miniHdmiDistance = 12.4 +microUsb1Distance = 41.4 +microUsb2Distance = 54 + +miniHdmiWidth = 11.2 +microUsbWidth = 7.4 +connectorPadding = 4 + +miniHdmiHole = startSketchAt([ + 0, + border + miniHdmiDistance - (miniHdmiWidth / 2) + ]) + |> lineTo([ + 0, + border + miniHdmiDistance + miniHdmiWidth / 2 + ], %) + |> lineTo([ + 1, + border + miniHdmiDistance + miniHdmiWidth / 2 + ], %) + |> lineTo([ + 1, + border + miniHdmiDistance - (miniHdmiWidth / 2) + ], %) + |> close(%) + +case = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> lineTo([caseWidth, 0], %, $edge1) + |> lineTo([caseWidth, caseLength], %, $edge2) + |> lineTo([0, caseLength], %, $edge3) + |> close(%, $edge4) + |> extrude(caseHeight, %) + |> fillet({ + radius: 1, + tags: [ + getNextAdjacentEdge(edge1), + getNextAdjacentEdge(edge2), + getNextAdjacentEdge(edge3), + getNextAdjacentEdge(edge4) + ] + }, %) + +fn m25Screw = (x, y, height) => { + screw = startSketchOn("XY") + |> startProfileAt([0, 0], %) + |> circle({ center: [x, y], radius: 2.5 }, %) + |> hole(circle({ center: [x, y], radius: 1.25 }, %), %) + |> extrude(height, %) + return screw +} + +m25Screw(border + rpizWidth / 2 - (widthBetweenScrews / 2), 0 + border + rpizLength / 2 - (lengthBetweenScrews / 2), screwHeight) + +m25Screw(border + rpizWidth / 2 - (widthBetweenScrews / 2), 0 + border + rpizLength / 2 + lengthBetweenScrews / 2, screwHeight) + +m25Screw(border + rpizWidth / 2 + widthBetweenScrews / 2, 0 + border + rpizLength / 2 + lengthBetweenScrews / 2, screwHeight) + +m25Screw(border + rpizWidth / 2 + widthBetweenScrews / 2, 0 + border + rpizLength / 2 - (lengthBetweenScrews / 2), screwHeight) + +shell({ + faces: ['end'], + thickness: caseThickness +}, case) 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 new file mode 100644 index 000000000..a9e1a99f7 --- /dev/null +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap @@ -0,0 +1,2716 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing fillet-and-shell.kcl +snapshot_kind: text +--- +{ + "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": [] + }, + "border": { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 60, + 61, + 0 + ] + } + ] + }, + "case": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 775, + 800, + 0 + ] + } + }, + "tags": { + "edge1": { + "type": "TagIdentifier", + "value": "edge1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 832, + 838, + 0 + ] + } + ] + }, + "edge2": { + "type": "TagIdentifier", + "value": "edge2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 880, + 886, + 0 + ] + } + ] + }, + "edge3": { + "type": "TagIdentifier", + "value": "edge3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 920, + 926, + 0 + ] + } + ] + }, + "edge4": { + "type": "TagIdentifier", + "value": "edge4", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 942, + 948, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 775, + 800, + 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 + } + ], + "__meta": [ + { + "sourceRange": [ + 775, + 800, + 0 + ] + } + ] + }, + "caseHeight": { + "type": "Int", + "value": 8, + "__meta": [ + { + "sourceRange": [ + 165, + 166, + 0 + ] + } + ] + }, + "caseLength": { + "type": "Number", + "value": 73.0, + "__meta": [ + { + "sourceRange": [ + 28, + 30, + 0 + ] + }, + { + "sourceRange": [ + 60, + 61, + 0 + ] + }, + { + "sourceRange": [ + 150, + 151, + 0 + ] + } + ] + }, + "caseThickness": { + "type": "Int", + "value": 1, + "__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": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 355, + 356, + 0 + ] + } + ] + }, + "edge1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 832, + 838, + 0 + ] + } + ] + }, + "edge2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 880, + 886, + 0 + ] + } + ] + }, + "edge3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 920, + 926, + 0 + ] + } + ] + }, + "edge4": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge4", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 942, + 948, + 0 + ] + } + ] + }, + "lengthBetweenScrews": { + "type": "Number", + "value": 58.0, + "__meta": [ + { + "sourceRange": [ + 214, + 216, + 0 + ] + }, + { + "sourceRange": [ + 219, + 220, + 0 + ] + } + ] + }, + "m25Screw": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declarations": [ + { + "end": 1425, + "id": { + "end": 1234, + "name": "screw", + "start": 1229, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 1255, + "raw": "\"XY\"", + "start": 1251, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 1250, + "name": "startSketchOn", + "start": 1237, + "type": "Identifier" + }, + "end": 1256, + "optional": false, + "start": 1237, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1281, + "raw": "0", + "start": 1280, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1284, + "raw": "0", + "start": 1283, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 1285, + "start": 1279, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1288, + "start": 1287, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1278, + "name": "startProfileAt", + "start": 1264, + "type": "Identifier" + }, + "end": 1289, + "optional": false, + "start": 1264, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1335, + "properties": [ + { + "end": 1320, + "key": { + "end": 1312, + "name": "center", + "start": 1306, + "type": "Identifier" + }, + "start": 1306, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 1316, + "name": "x", + "start": 1315, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1319, + "name": "y", + "start": 1318, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 1320, + "start": 1314, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 1333, + "key": { + "end": 1328, + "name": "radius", + "start": 1322, + "type": "Identifier" + }, + "start": 1322, + "type": "ObjectProperty", + "value": { + "end": 1333, + "raw": "2.5", + "start": 1330, + "type": "Literal", + "type": "Literal", + "value": 2.5 + } + } + ], + "start": 1304, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1338, + "start": 1337, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1303, + "name": "circle", + "start": 1297, + "type": "Identifier" + }, + "end": 1339, + "optional": false, + "start": 1297, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "arguments": [ + { + "end": 1391, + "properties": [ + { + "end": 1375, + "key": { + "end": 1367, + "name": "center", + "start": 1361, + "type": "Identifier" + }, + "start": 1361, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 1371, + "name": "x", + "start": 1370, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1374, + "name": "y", + "start": 1373, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 1375, + "start": 1369, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 1389, + "key": { + "end": 1383, + "name": "radius", + "start": 1377, + "type": "Identifier" + }, + "start": 1377, + "type": "ObjectProperty", + "value": { + "end": 1389, + "raw": "1.25", + "start": 1385, + "type": "Literal", + "type": "Literal", + "value": 1.25 + } + } + ], + "start": 1359, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1394, + "start": 1393, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1358, + "name": "circle", + "start": 1352, + "type": "Identifier" + }, + "end": 1395, + "optional": false, + "start": 1352, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "end": 1398, + "start": 1397, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1351, + "name": "hole", + "start": 1347, + "type": "Identifier" + }, + "end": 1399, + "optional": false, + "start": 1347, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1421, + "name": "height", + "start": 1415, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1424, + "start": 1423, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1414, + "name": "extrude", + "start": 1407, + "type": "Identifier" + }, + "end": 1425, + "optional": false, + "start": 1407, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1425, + "start": 1237, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 1229, + "type": "VariableDeclarator" + } + ], + "end": 1425, + "kind": "const", + "start": 1229, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 1440, + "name": "screw", + "start": 1435, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1440, + "start": 1428, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 1442, + "start": 1225 + }, + "end": 1442, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 1209, + "name": "x", + "start": 1208, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 1212, + "name": "y", + "start": 1211, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 1220, + "name": "height", + "start": 1214, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 1207, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + }, + "border": { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 60, + 61, + 0 + ] + } + ] + }, + "case": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 775, + 800, + 0 + ] + } + }, + "tags": { + "edge1": { + "type": "TagIdentifier", + "value": "edge1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 832, + 838, + 0 + ] + } + ] + }, + "edge2": { + "type": "TagIdentifier", + "value": "edge2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 880, + 886, + 0 + ] + } + ] + }, + "edge3": { + "type": "TagIdentifier", + "value": "edge3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 920, + 926, + 0 + ] + } + ] + }, + "edge4": { + "type": "TagIdentifier", + "value": "edge4", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 942, + 948, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 775, + 800, + 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 + } + ], + "__meta": [ + { + "sourceRange": [ + 775, + 800, + 0 + ] + } + ] + }, + "caseHeight": { + "type": "Int", + "value": 8, + "__meta": [ + { + "sourceRange": [ + 165, + 166, + 0 + ] + } + ] + }, + "caseLength": { + "type": "Number", + "value": 73.0, + "__meta": [ + { + "sourceRange": [ + 28, + 30, + 0 + ] + }, + { + "sourceRange": [ + 60, + 61, + 0 + ] + }, + { + "sourceRange": [ + 150, + 151, + 0 + ] + } + ] + }, + "caseThickness": { + "type": "Int", + "value": 1, + "__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": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 355, + 356, + 0 + ] + } + ] + }, + "edge1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 806, + 839, + 0 + ], + "tag": { + "end": 838, + "start": 832, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 832, + 838, + 0 + ] + } + ] + }, + "edge2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 845, + 887, + 0 + ], + "tag": { + "end": 886, + "start": 880, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 880, + 886, + 0 + ] + } + ] + }, + "edge3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 893, + 927, + 0 + ], + "tag": { + "end": 926, + "start": 920, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 920, + 926, + 0 + ] + } + ] + }, + "edge4": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge4", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 933, + 949, + 0 + ], + "tag": { + "end": 948, + "start": 942, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 942, + 948, + 0 + ] + } + ] + }, + "lengthBetweenScrews": { + "type": "Number", + "value": 58.0, + "__meta": [ + { + "sourceRange": [ + 214, + 216, + 0 + ] + }, + { + "sourceRange": [ + 219, + 220, + 0 + ] + } + ] + }, + "microUsb1Distance": { + "type": "Number", + "value": 41.4, + "__meta": [ + { + "sourceRange": [ + 266, + 270, + 0 + ] + } + ] + }, + "microUsb2Distance": { + "type": "Int", + "value": 54, + "__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, + 549, + 0 + ] + }, + "from": [ + 0.0, + 10.8 + ], + "tag": null, + "to": [ + 0.0, + 22.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 555, + 637, + 0 + ] + }, + "from": [ + 0.0, + 22.0 + ], + "tag": null, + "to": [ + 1.0, + 22.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 643, + 727, + 0 + ] + }, + "from": [ + 1.0, + 22.0 + ], + "tag": null, + "to": [ + 1.0, + 10.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 733, + 741, + 0 + ] + }, + "from": [ + 1.0, + 10.8 + ], + "tag": null, + "to": [ + 0.0, + 10.8 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 10.799999999999999 + ], + "to": [ + 0.0, + 10.799999999999999 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 373, + 461, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 373, + 461, + 0 + ] + } + ] + } + }, + "miniHdmiWidth": { + "type": "Number", + "value": 11.2, + "__meta": [ + { + "sourceRange": [ + 311, + 315, + 0 + ] + } + ] + }, + "rpizLength": { + "type": "Int", + "value": 65, + "__meta": [ + { + "sourceRange": [ + 28, + 30, + 0 + ] + } + ] + }, + "rpizWidth": { + "type": "Int", + "value": 30, + "__meta": [ + { + "sourceRange": [ + 12, + 14, + 0 + ] + } + ] + }, + "screwHeight": { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 77, + 78, + 0 + ] + } + ] + }, + "widthBetweenScrews": { + "type": "Int", + "value": 23, + "__meta": [ + { + "sourceRange": [ + 189, + 191, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 1207, + 1442, + 0 + ] + } + ] + }, + "microUsb1Distance": { + "type": "Number", + "value": 41.4, + "__meta": [ + { + "sourceRange": [ + 266, + 270, + 0 + ] + } + ] + }, + "microUsb2Distance": { + "type": "Int", + "value": 54, + "__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, + 549, + 0 + ] + }, + "from": [ + 0.0, + 10.8 + ], + "tag": null, + "to": [ + 0.0, + 22.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 555, + 637, + 0 + ] + }, + "from": [ + 0.0, + 22.0 + ], + "tag": null, + "to": [ + 1.0, + 22.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 643, + 727, + 0 + ] + }, + "from": [ + 1.0, + 22.0 + ], + "tag": null, + "to": [ + 1.0, + 10.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 733, + 741, + 0 + ] + }, + "from": [ + 1.0, + 10.8 + ], + "tag": null, + "to": [ + 0.0, + 10.8 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 10.799999999999999 + ], + "to": [ + 0.0, + 10.799999999999999 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 373, + 461, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 373, + 461, + 0 + ] + } + ] + } + }, + "miniHdmiWidth": { + "type": "Number", + "value": 11.2, + "__meta": [ + { + "sourceRange": [ + 311, + 315, + 0 + ] + } + ] + }, + "rpizLength": { + "type": "Int", + "value": 65, + "__meta": [ + { + "sourceRange": [ + 28, + 30, + 0 + ] + } + ] + }, + "rpizWidth": { + "type": "Int", + "value": 30, + "__meta": [ + { + "sourceRange": [ + 12, + 14, + 0 + ] + } + ] + }, + "screwHeight": { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 77, + 78, + 0 + ] + } + ] + }, + "widthBetweenScrews": { + "type": "Int", + "value": 23, + "__meta": [ + { + "sourceRange": [ + 189, + 191, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/rendered_model.png b/src/wasm-lib/kcl/tests/fillet-and-shell/rendered_model.png new file mode 100644 index 000000000..4675971c2 Binary files /dev/null and b/src/wasm-lib/kcl/tests/fillet-and-shell/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/tokens.snap b/src/wasm-lib/kcl/tests/fillet-and-shell/tokens.snap new file mode 100644 index 000000000..2f8d5479e --- /dev/null +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/tokens.snap @@ -0,0 +1,4407 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing fillet-and-shell.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 9, + "value": "rpizWidth" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "operator", + "start": 10, + "end": 11, + "value": "=" + }, + { + "type": "whitespace", + "start": 11, + "end": 12, + "value": " " + }, + { + "type": "number", + "start": 12, + "end": 14, + "value": "30" + }, + { + "type": "whitespace", + "start": 14, + "end": 15, + "value": "\n" + }, + { + "type": "word", + "start": 15, + "end": 25, + "value": "rpizLength" + }, + { + "type": "whitespace", + "start": 25, + "end": 26, + "value": " " + }, + { + "type": "operator", + "start": 26, + "end": 27, + "value": "=" + }, + { + "type": "whitespace", + "start": 27, + "end": 28, + "value": " " + }, + { + "type": "number", + "start": 28, + "end": 30, + "value": "65" + }, + { + "type": "whitespace", + "start": 30, + "end": 32, + "value": "\n\n" + }, + { + "type": "word", + "start": 32, + "end": 45, + "value": "caseThickness" + }, + { + "type": "whitespace", + "start": 45, + "end": 46, + "value": " " + }, + { + "type": "operator", + "start": 46, + "end": 47, + "value": "=" + }, + { + "type": "whitespace", + "start": 47, + "end": 48, + "value": " " + }, + { + "type": "number", + "start": 48, + "end": 49, + "value": "1" + }, + { + "type": "whitespace", + "start": 49, + "end": 51, + "value": "\n\n" + }, + { + "type": "word", + "start": 51, + "end": 57, + "value": "border" + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "=" + }, + { + "type": "whitespace", + "start": 59, + "end": 60, + "value": " " + }, + { + "type": "number", + "start": 60, + "end": 61, + "value": "4" + }, + { + "type": "whitespace", + "start": 61, + "end": 63, + "value": "\n\n" + }, + { + "type": "word", + "start": 63, + "end": 74, + "value": "screwHeight" + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "operator", + "start": 75, + "end": 76, + "value": "=" + }, + { + "type": "whitespace", + "start": 76, + "end": 77, + "value": " " + }, + { + "type": "number", + "start": 77, + "end": 78, + "value": "4" + }, + { + "type": "whitespace", + "start": 78, + "end": 80, + "value": "\n\n" + }, + { + "type": "word", + "start": 80, + "end": 89, + "value": "caseWidth" + }, + { + "type": "whitespace", + "start": 89, + "end": 90, + "value": " " + }, + { + "type": "operator", + "start": 90, + "end": 91, + "value": "=" + }, + { + "type": "whitespace", + "start": 91, + "end": 92, + "value": " " + }, + { + "type": "word", + "start": 92, + "end": 101, + "value": "rpizWidth" + }, + { + "type": "whitespace", + "start": 101, + "end": 102, + "value": " " + }, + { + "type": "operator", + "start": 102, + "end": 103, + "value": "+" + }, + { + "type": "whitespace", + "start": 103, + "end": 104, + "value": " " + }, + { + "type": "word", + "start": 104, + "end": 110, + "value": "border" + }, + { + "type": "whitespace", + "start": 110, + "end": 111, + "value": " " + }, + { + "type": "operator", + "start": 111, + "end": 112, + "value": "*" + }, + { + "type": "whitespace", + "start": 112, + "end": 113, + "value": " " + }, + { + "type": "number", + "start": 113, + "end": 114, + "value": "2" + }, + { + "type": "whitespace", + "start": 114, + "end": 115, + "value": "\n" + }, + { + "type": "word", + "start": 115, + "end": 125, + "value": "caseLength" + }, + { + "type": "whitespace", + "start": 125, + "end": 126, + "value": " " + }, + { + "type": "operator", + "start": 126, + "end": 127, + "value": "=" + }, + { + "type": "whitespace", + "start": 127, + "end": 128, + "value": " " + }, + { + "type": "word", + "start": 128, + "end": 138, + "value": "rpizLength" + }, + { + "type": "whitespace", + "start": 138, + "end": 139, + "value": " " + }, + { + "type": "operator", + "start": 139, + "end": 140, + "value": "+" + }, + { + "type": "whitespace", + "start": 140, + "end": 141, + "value": " " + }, + { + "type": "word", + "start": 141, + "end": 147, + "value": "border" + }, + { + "type": "whitespace", + "start": 147, + "end": 148, + "value": " " + }, + { + "type": "operator", + "start": 148, + "end": 149, + "value": "*" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "number", + "start": 150, + "end": 151, + "value": "2" + }, + { + "type": "whitespace", + "start": 151, + "end": 152, + "value": "\n" + }, + { + "type": "word", + "start": 152, + "end": 162, + "value": "caseHeight" + }, + { + "type": "whitespace", + "start": 162, + "end": 163, + "value": " " + }, + { + "type": "operator", + "start": 163, + "end": 164, + "value": "=" + }, + { + "type": "whitespace", + "start": 164, + "end": 165, + "value": " " + }, + { + "type": "number", + "start": 165, + "end": 166, + "value": "8" + }, + { + "type": "whitespace", + "start": 166, + "end": 168, + "value": "\n\n" + }, + { + "type": "word", + "start": 168, + "end": 186, + "value": "widthBetweenScrews" + }, + { + "type": "whitespace", + "start": 186, + "end": 187, + "value": " " + }, + { + "type": "operator", + "start": 187, + "end": 188, + "value": "=" + }, + { + "type": "whitespace", + "start": 188, + "end": 189, + "value": " " + }, + { + "type": "number", + "start": 189, + "end": 191, + "value": "23" + }, + { + "type": "whitespace", + "start": 191, + "end": 192, + "value": "\n" + }, + { + "type": "word", + "start": 192, + "end": 211, + "value": "lengthBetweenScrews" + }, + { + "type": "whitespace", + "start": 211, + "end": 212, + "value": " " + }, + { + "type": "operator", + "start": 212, + "end": 213, + "value": "=" + }, + { + "type": "whitespace", + "start": 213, + "end": 214, + "value": " " + }, + { + "type": "number", + "start": 214, + "end": 216, + "value": "29" + }, + { + "type": "whitespace", + "start": 216, + "end": 217, + "value": " " + }, + { + "type": "operator", + "start": 217, + "end": 218, + "value": "*" + }, + { + "type": "whitespace", + "start": 218, + "end": 219, + "value": " " + }, + { + "type": "number", + "start": 219, + "end": 220, + "value": "2" + }, + { + "type": "whitespace", + "start": 220, + "end": 222, + "value": "\n\n" + }, + { + "type": "word", + "start": 222, + "end": 238, + "value": "miniHdmiDistance" + }, + { + "type": "whitespace", + "start": 238, + "end": 239, + "value": " " + }, + { + "type": "operator", + "start": 239, + "end": 240, + "value": "=" + }, + { + "type": "whitespace", + "start": 240, + "end": 241, + "value": " " + }, + { + "type": "number", + "start": 241, + "end": 245, + "value": "12.4" + }, + { + "type": "whitespace", + "start": 245, + "end": 246, + "value": "\n" + }, + { + "type": "word", + "start": 246, + "end": 263, + "value": "microUsb1Distance" + }, + { + "type": "whitespace", + "start": 263, + "end": 264, + "value": " " + }, + { + "type": "operator", + "start": 264, + "end": 265, + "value": "=" + }, + { + "type": "whitespace", + "start": 265, + "end": 266, + "value": " " + }, + { + "type": "number", + "start": 266, + "end": 270, + "value": "41.4" + }, + { + "type": "whitespace", + "start": 270, + "end": 271, + "value": "\n" + }, + { + "type": "word", + "start": 271, + "end": 288, + "value": "microUsb2Distance" + }, + { + "type": "whitespace", + "start": 288, + "end": 289, + "value": " " + }, + { + "type": "operator", + "start": 289, + "end": 290, + "value": "=" + }, + { + "type": "whitespace", + "start": 290, + "end": 291, + "value": " " + }, + { + "type": "number", + "start": 291, + "end": 293, + "value": "54" + }, + { + "type": "whitespace", + "start": 293, + "end": 295, + "value": "\n\n" + }, + { + "type": "word", + "start": 295, + "end": 308, + "value": "miniHdmiWidth" + }, + { + "type": "whitespace", + "start": 308, + "end": 309, + "value": " " + }, + { + "type": "operator", + "start": 309, + "end": 310, + "value": "=" + }, + { + "type": "whitespace", + "start": 310, + "end": 311, + "value": " " + }, + { + "type": "number", + "start": 311, + "end": 315, + "value": "11.2" + }, + { + "type": "whitespace", + "start": 315, + "end": 316, + "value": "\n" + }, + { + "type": "word", + "start": 316, + "end": 329, + "value": "microUsbWidth" + }, + { + "type": "whitespace", + "start": 329, + "end": 330, + "value": " " + }, + { + "type": "operator", + "start": 330, + "end": 331, + "value": "=" + }, + { + "type": "whitespace", + "start": 331, + "end": 332, + "value": " " + }, + { + "type": "number", + "start": 332, + "end": 335, + "value": "7.4" + }, + { + "type": "whitespace", + "start": 335, + "end": 336, + "value": "\n" + }, + { + "type": "word", + "start": 336, + "end": 352, + "value": "connectorPadding" + }, + { + "type": "whitespace", + "start": 352, + "end": 353, + "value": " " + }, + { + "type": "operator", + "start": 353, + "end": 354, + "value": "=" + }, + { + "type": "whitespace", + "start": 354, + "end": 355, + "value": " " + }, + { + "type": "number", + "start": 355, + "end": 356, + "value": "4" + }, + { + "type": "whitespace", + "start": 356, + "end": 358, + "value": "\n\n" + }, + { + "type": "word", + "start": 358, + "end": 370, + "value": "miniHdmiHole" + }, + { + "type": "whitespace", + "start": 370, + "end": 371, + "value": " " + }, + { + "type": "operator", + "start": 371, + "end": 372, + "value": "=" + }, + { + "type": "whitespace", + "start": 372, + "end": 373, + "value": " " + }, + { + "type": "word", + "start": 373, + "end": 386, + "value": "startSketchAt" + }, + { + "type": "brace", + "start": 386, + "end": 387, + "value": "(" + }, + { + "type": "brace", + "start": 387, + "end": 388, + "value": "[" + }, + { + "type": "whitespace", + "start": 388, + "end": 396, + "value": "\n " + }, + { + "type": "number", + "start": 396, + "end": 397, + "value": "0" + }, + { + "type": "comma", + "start": 397, + "end": 398, + "value": "," + }, + { + "type": "whitespace", + "start": 398, + "end": 406, + "value": "\n " + }, + { + "type": "word", + "start": 406, + "end": 412, + "value": "border" + }, + { + "type": "whitespace", + "start": 412, + "end": 413, + "value": " " + }, + { + "type": "operator", + "start": 413, + "end": 414, + "value": "+" + }, + { + "type": "whitespace", + "start": 414, + "end": 415, + "value": " " + }, + { + "type": "word", + "start": 415, + "end": 431, + "value": "miniHdmiDistance" + }, + { + "type": "whitespace", + "start": 431, + "end": 432, + "value": " " + }, + { + "type": "operator", + "start": 432, + "end": 433, + "value": "-" + }, + { + "type": "whitespace", + "start": 433, + "end": 434, + "value": " " + }, + { + "type": "brace", + "start": 434, + "end": 435, + "value": "(" + }, + { + "type": "word", + "start": 435, + "end": 448, + "value": "miniHdmiWidth" + }, + { + "type": "whitespace", + "start": 448, + "end": 449, + "value": " " + }, + { + "type": "operator", + "start": 449, + "end": 450, + "value": "/" + }, + { + "type": "whitespace", + "start": 450, + "end": 451, + "value": " " + }, + { + "type": "number", + "start": 451, + "end": 452, + "value": "2" + }, + { + "type": "brace", + "start": 452, + "end": 453, + "value": ")" + }, + { + "type": "whitespace", + "start": 453, + "end": 459, + "value": "\n " + }, + { + "type": "brace", + "start": 459, + "end": 460, + "value": "]" + }, + { + "type": "brace", + "start": 460, + "end": 461, + "value": ")" + }, + { + "type": "whitespace", + "start": 461, + "end": 464, + "value": "\n " + }, + { + "type": "operator", + "start": 464, + "end": 466, + "value": "|>" + }, + { + "type": "whitespace", + "start": 466, + "end": 467, + "value": " " + }, + { + "type": "word", + "start": 467, + "end": 473, + "value": "lineTo" + }, + { + "type": "brace", + "start": 473, + "end": 474, + "value": "(" + }, + { + "type": "brace", + "start": 474, + "end": 475, + "value": "[" + }, + { + "type": "whitespace", + "start": 475, + "end": 483, + "value": "\n " + }, + { + "type": "number", + "start": 483, + "end": 484, + "value": "0" + }, + { + "type": "comma", + "start": 484, + "end": 485, + "value": "," + }, + { + "type": "whitespace", + "start": 485, + "end": 493, + "value": "\n " + }, + { + "type": "word", + "start": 493, + "end": 499, + "value": "border" + }, + { + "type": "whitespace", + "start": 499, + "end": 500, + "value": " " + }, + { + "type": "operator", + "start": 500, + "end": 501, + "value": "+" + }, + { + "type": "whitespace", + "start": 501, + "end": 502, + "value": " " + }, + { + "type": "word", + "start": 502, + "end": 518, + "value": "miniHdmiDistance" + }, + { + "type": "whitespace", + "start": 518, + "end": 519, + "value": " " + }, + { + "type": "operator", + "start": 519, + "end": 520, + "value": "+" + }, + { + "type": "whitespace", + "start": 520, + "end": 521, + "value": " " + }, + { + "type": "word", + "start": 521, + "end": 534, + "value": "miniHdmiWidth" + }, + { + "type": "whitespace", + "start": 534, + "end": 535, + "value": " " + }, + { + "type": "operator", + "start": 535, + "end": 536, + "value": "/" + }, + { + "type": "whitespace", + "start": 536, + "end": 537, + "value": " " + }, + { + "type": "number", + "start": 537, + "end": 538, + "value": "2" + }, + { + "type": "whitespace", + "start": 538, + "end": 544, + "value": "\n " + }, + { + "type": "brace", + "start": 544, + "end": 545, + "value": "]" + }, + { + "type": "comma", + "start": 545, + "end": 546, + "value": "," + }, + { + "type": "whitespace", + "start": 546, + "end": 547, + "value": " " + }, + { + "type": "operator", + "start": 547, + "end": 548, + "value": "%" + }, + { + "type": "brace", + "start": 548, + "end": 549, + "value": ")" + }, + { + "type": "whitespace", + "start": 549, + "end": 552, + "value": "\n " + }, + { + "type": "operator", + "start": 552, + "end": 554, + "value": "|>" + }, + { + "type": "whitespace", + "start": 554, + "end": 555, + "value": " " + }, + { + "type": "word", + "start": 555, + "end": 561, + "value": "lineTo" + }, + { + "type": "brace", + "start": 561, + "end": 562, + "value": "(" + }, + { + "type": "brace", + "start": 562, + "end": 563, + "value": "[" + }, + { + "type": "whitespace", + "start": 563, + "end": 571, + "value": "\n " + }, + { + "type": "number", + "start": 571, + "end": 572, + "value": "1" + }, + { + "type": "comma", + "start": 572, + "end": 573, + "value": "," + }, + { + "type": "whitespace", + "start": 573, + "end": 581, + "value": "\n " + }, + { + "type": "word", + "start": 581, + "end": 587, + "value": "border" + }, + { + "type": "whitespace", + "start": 587, + "end": 588, + "value": " " + }, + { + "type": "operator", + "start": 588, + "end": 589, + "value": "+" + }, + { + "type": "whitespace", + "start": 589, + "end": 590, + "value": " " + }, + { + "type": "word", + "start": 590, + "end": 606, + "value": "miniHdmiDistance" + }, + { + "type": "whitespace", + "start": 606, + "end": 607, + "value": " " + }, + { + "type": "operator", + "start": 607, + "end": 608, + "value": "+" + }, + { + "type": "whitespace", + "start": 608, + "end": 609, + "value": " " + }, + { + "type": "word", + "start": 609, + "end": 622, + "value": "miniHdmiWidth" + }, + { + "type": "whitespace", + "start": 622, + "end": 623, + "value": " " + }, + { + "type": "operator", + "start": 623, + "end": 624, + "value": "/" + }, + { + "type": "whitespace", + "start": 624, + "end": 625, + "value": " " + }, + { + "type": "number", + "start": 625, + "end": 626, + "value": "2" + }, + { + "type": "whitespace", + "start": 626, + "end": 632, + "value": "\n " + }, + { + "type": "brace", + "start": 632, + "end": 633, + "value": "]" + }, + { + "type": "comma", + "start": 633, + "end": 634, + "value": "," + }, + { + "type": "whitespace", + "start": 634, + "end": 635, + "value": " " + }, + { + "type": "operator", + "start": 635, + "end": 636, + "value": "%" + }, + { + "type": "brace", + "start": 636, + "end": 637, + "value": ")" + }, + { + "type": "whitespace", + "start": 637, + "end": 640, + "value": "\n " + }, + { + "type": "operator", + "start": 640, + "end": 642, + "value": "|>" + }, + { + "type": "whitespace", + "start": 642, + "end": 643, + "value": " " + }, + { + "type": "word", + "start": 643, + "end": 649, + "value": "lineTo" + }, + { + "type": "brace", + "start": 649, + "end": 650, + "value": "(" + }, + { + "type": "brace", + "start": 650, + "end": 651, + "value": "[" + }, + { + "type": "whitespace", + "start": 651, + "end": 659, + "value": "\n " + }, + { + "type": "number", + "start": 659, + "end": 660, + "value": "1" + }, + { + "type": "comma", + "start": 660, + "end": 661, + "value": "," + }, + { + "type": "whitespace", + "start": 661, + "end": 669, + "value": "\n " + }, + { + "type": "word", + "start": 669, + "end": 675, + "value": "border" + }, + { + "type": "whitespace", + "start": 675, + "end": 676, + "value": " " + }, + { + "type": "operator", + "start": 676, + "end": 677, + "value": "+" + }, + { + "type": "whitespace", + "start": 677, + "end": 678, + "value": " " + }, + { + "type": "word", + "start": 678, + "end": 694, + "value": "miniHdmiDistance" + }, + { + "type": "whitespace", + "start": 694, + "end": 695, + "value": " " + }, + { + "type": "operator", + "start": 695, + "end": 696, + "value": "-" + }, + { + "type": "whitespace", + "start": 696, + "end": 697, + "value": " " + }, + { + "type": "brace", + "start": 697, + "end": 698, + "value": "(" + }, + { + "type": "word", + "start": 698, + "end": 711, + "value": "miniHdmiWidth" + }, + { + "type": "whitespace", + "start": 711, + "end": 712, + "value": " " + }, + { + "type": "operator", + "start": 712, + "end": 713, + "value": "/" + }, + { + "type": "whitespace", + "start": 713, + "end": 714, + "value": " " + }, + { + "type": "number", + "start": 714, + "end": 715, + "value": "2" + }, + { + "type": "brace", + "start": 715, + "end": 716, + "value": ")" + }, + { + "type": "whitespace", + "start": 716, + "end": 722, + "value": "\n " + }, + { + "type": "brace", + "start": 722, + "end": 723, + "value": "]" + }, + { + "type": "comma", + "start": 723, + "end": 724, + "value": "," + }, + { + "type": "whitespace", + "start": 724, + "end": 725, + "value": " " + }, + { + "type": "operator", + "start": 725, + "end": 726, + "value": "%" + }, + { + "type": "brace", + "start": 726, + "end": 727, + "value": ")" + }, + { + "type": "whitespace", + "start": 727, + "end": 730, + "value": "\n " + }, + { + "type": "operator", + "start": 730, + "end": 732, + "value": "|>" + }, + { + "type": "whitespace", + "start": 732, + "end": 733, + "value": " " + }, + { + "type": "word", + "start": 733, + "end": 738, + "value": "close" + }, + { + "type": "brace", + "start": 738, + "end": 739, + "value": "(" + }, + { + "type": "operator", + "start": 739, + "end": 740, + "value": "%" + }, + { + "type": "brace", + "start": 740, + "end": 741, + "value": ")" + }, + { + "type": "whitespace", + "start": 741, + "end": 743, + "value": "\n\n" + }, + { + "type": "word", + "start": 743, + "end": 747, + "value": "case" + }, + { + "type": "whitespace", + "start": 747, + "end": 748, + "value": " " + }, + { + "type": "operator", + "start": 748, + "end": 749, + "value": "=" + }, + { + "type": "whitespace", + "start": 749, + "end": 750, + "value": " " + }, + { + "type": "word", + "start": 750, + "end": 763, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 763, + "end": 764, + "value": "(" + }, + { + "type": "string", + "start": 764, + "end": 768, + "value": "'XY'" + }, + { + "type": "brace", + "start": 768, + "end": 769, + "value": ")" + }, + { + "type": "whitespace", + "start": 769, + "end": 772, + "value": "\n " + }, + { + "type": "operator", + "start": 772, + "end": 774, + "value": "|>" + }, + { + "type": "whitespace", + "start": 774, + "end": 775, + "value": " " + }, + { + "type": "word", + "start": 775, + "end": 789, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 789, + "end": 790, + "value": "(" + }, + { + "type": "brace", + "start": 790, + "end": 791, + "value": "[" + }, + { + "type": "number", + "start": 791, + "end": 792, + "value": "0" + }, + { + "type": "comma", + "start": 792, + "end": 793, + "value": "," + }, + { + "type": "whitespace", + "start": 793, + "end": 794, + "value": " " + }, + { + "type": "number", + "start": 794, + "end": 795, + "value": "0" + }, + { + "type": "brace", + "start": 795, + "end": 796, + "value": "]" + }, + { + "type": "comma", + "start": 796, + "end": 797, + "value": "," + }, + { + "type": "whitespace", + "start": 797, + "end": 798, + "value": " " + }, + { + "type": "operator", + "start": 798, + "end": 799, + "value": "%" + }, + { + "type": "brace", + "start": 799, + "end": 800, + "value": ")" + }, + { + "type": "whitespace", + "start": 800, + "end": 803, + "value": "\n " + }, + { + "type": "operator", + "start": 803, + "end": 805, + "value": "|>" + }, + { + "type": "whitespace", + "start": 805, + "end": 806, + "value": " " + }, + { + "type": "word", + "start": 806, + "end": 812, + "value": "lineTo" + }, + { + "type": "brace", + "start": 812, + "end": 813, + "value": "(" + }, + { + "type": "brace", + "start": 813, + "end": 814, + "value": "[" + }, + { + "type": "word", + "start": 814, + "end": 823, + "value": "caseWidth" + }, + { + "type": "comma", + "start": 823, + "end": 824, + "value": "," + }, + { + "type": "whitespace", + "start": 824, + "end": 825, + "value": " " + }, + { + "type": "number", + "start": 825, + "end": 826, + "value": "0" + }, + { + "type": "brace", + "start": 826, + "end": 827, + "value": "]" + }, + { + "type": "comma", + "start": 827, + "end": 828, + "value": "," + }, + { + "type": "whitespace", + "start": 828, + "end": 829, + "value": " " + }, + { + "type": "operator", + "start": 829, + "end": 830, + "value": "%" + }, + { + "type": "comma", + "start": 830, + "end": 831, + "value": "," + }, + { + "type": "whitespace", + "start": 831, + "end": 832, + "value": " " + }, + { + "type": "dollar", + "start": 832, + "end": 833, + "value": "$" + }, + { + "type": "word", + "start": 833, + "end": 838, + "value": "edge1" + }, + { + "type": "brace", + "start": 838, + "end": 839, + "value": ")" + }, + { + "type": "whitespace", + "start": 839, + "end": 842, + "value": "\n " + }, + { + "type": "operator", + "start": 842, + "end": 844, + "value": "|>" + }, + { + "type": "whitespace", + "start": 844, + "end": 845, + "value": " " + }, + { + "type": "word", + "start": 845, + "end": 851, + "value": "lineTo" + }, + { + "type": "brace", + "start": 851, + "end": 852, + "value": "(" + }, + { + "type": "brace", + "start": 852, + "end": 853, + "value": "[" + }, + { + "type": "word", + "start": 853, + "end": 862, + "value": "caseWidth" + }, + { + "type": "comma", + "start": 862, + "end": 863, + "value": "," + }, + { + "type": "whitespace", + "start": 863, + "end": 864, + "value": " " + }, + { + "type": "word", + "start": 864, + "end": 874, + "value": "caseLength" + }, + { + "type": "brace", + "start": 874, + "end": 875, + "value": "]" + }, + { + "type": "comma", + "start": 875, + "end": 876, + "value": "," + }, + { + "type": "whitespace", + "start": 876, + "end": 877, + "value": " " + }, + { + "type": "operator", + "start": 877, + "end": 878, + "value": "%" + }, + { + "type": "comma", + "start": 878, + "end": 879, + "value": "," + }, + { + "type": "whitespace", + "start": 879, + "end": 880, + "value": " " + }, + { + "type": "dollar", + "start": 880, + "end": 881, + "value": "$" + }, + { + "type": "word", + "start": 881, + "end": 886, + "value": "edge2" + }, + { + "type": "brace", + "start": 886, + "end": 887, + "value": ")" + }, + { + "type": "whitespace", + "start": 887, + "end": 890, + "value": "\n " + }, + { + "type": "operator", + "start": 890, + "end": 892, + "value": "|>" + }, + { + "type": "whitespace", + "start": 892, + "end": 893, + "value": " " + }, + { + "type": "word", + "start": 893, + "end": 899, + "value": "lineTo" + }, + { + "type": "brace", + "start": 899, + "end": 900, + "value": "(" + }, + { + "type": "brace", + "start": 900, + "end": 901, + "value": "[" + }, + { + "type": "number", + "start": 901, + "end": 902, + "value": "0" + }, + { + "type": "comma", + "start": 902, + "end": 903, + "value": "," + }, + { + "type": "whitespace", + "start": 903, + "end": 904, + "value": " " + }, + { + "type": "word", + "start": 904, + "end": 914, + "value": "caseLength" + }, + { + "type": "brace", + "start": 914, + "end": 915, + "value": "]" + }, + { + "type": "comma", + "start": 915, + "end": 916, + "value": "," + }, + { + "type": "whitespace", + "start": 916, + "end": 917, + "value": " " + }, + { + "type": "operator", + "start": 917, + "end": 918, + "value": "%" + }, + { + "type": "comma", + "start": 918, + "end": 919, + "value": "," + }, + { + "type": "whitespace", + "start": 919, + "end": 920, + "value": " " + }, + { + "type": "dollar", + "start": 920, + "end": 921, + "value": "$" + }, + { + "type": "word", + "start": 921, + "end": 926, + "value": "edge3" + }, + { + "type": "brace", + "start": 926, + "end": 927, + "value": ")" + }, + { + "type": "whitespace", + "start": 927, + "end": 930, + "value": "\n " + }, + { + "type": "operator", + "start": 930, + "end": 932, + "value": "|>" + }, + { + "type": "whitespace", + "start": 932, + "end": 933, + "value": " " + }, + { + "type": "word", + "start": 933, + "end": 938, + "value": "close" + }, + { + "type": "brace", + "start": 938, + "end": 939, + "value": "(" + }, + { + "type": "operator", + "start": 939, + "end": 940, + "value": "%" + }, + { + "type": "comma", + "start": 940, + "end": 941, + "value": "," + }, + { + "type": "whitespace", + "start": 941, + "end": 942, + "value": " " + }, + { + "type": "dollar", + "start": 942, + "end": 943, + "value": "$" + }, + { + "type": "word", + "start": 943, + "end": 948, + "value": "edge4" + }, + { + "type": "brace", + "start": 948, + "end": 949, + "value": ")" + }, + { + "type": "whitespace", + "start": 949, + "end": 952, + "value": "\n " + }, + { + "type": "operator", + "start": 952, + "end": 954, + "value": "|>" + }, + { + "type": "whitespace", + "start": 954, + "end": 955, + "value": " " + }, + { + "type": "word", + "start": 955, + "end": 962, + "value": "extrude" + }, + { + "type": "brace", + "start": 962, + "end": 963, + "value": "(" + }, + { + "type": "word", + "start": 963, + "end": 973, + "value": "caseHeight" + }, + { + "type": "comma", + "start": 973, + "end": 974, + "value": "," + }, + { + "type": "whitespace", + "start": 974, + "end": 975, + "value": " " + }, + { + "type": "operator", + "start": 975, + "end": 976, + "value": "%" + }, + { + "type": "brace", + "start": 976, + "end": 977, + "value": ")" + }, + { + "type": "whitespace", + "start": 977, + "end": 980, + "value": "\n " + }, + { + "type": "operator", + "start": 980, + "end": 982, + "value": "|>" + }, + { + "type": "whitespace", + "start": 982, + "end": 983, + "value": " " + }, + { + "type": "word", + "start": 983, + "end": 989, + "value": "fillet" + }, + { + "type": "brace", + "start": 989, + "end": 990, + "value": "(" + }, + { + "type": "brace", + "start": 990, + "end": 991, + "value": "{" + }, + { + "type": "whitespace", + "start": 991, + "end": 999, + "value": "\n " + }, + { + "type": "word", + "start": 999, + "end": 1005, + "value": "radius" + }, + { + "type": "colon", + "start": 1005, + "end": 1006, + "value": ":" + }, + { + "type": "whitespace", + "start": 1006, + "end": 1007, + "value": " " + }, + { + "type": "number", + "start": 1007, + "end": 1008, + "value": "1" + }, + { + "type": "comma", + "start": 1008, + "end": 1009, + "value": "," + }, + { + "type": "whitespace", + "start": 1009, + "end": 1017, + "value": "\n " + }, + { + "type": "word", + "start": 1017, + "end": 1021, + "value": "tags" + }, + { + "type": "colon", + "start": 1021, + "end": 1022, + "value": ":" + }, + { + "type": "whitespace", + "start": 1022, + "end": 1023, + "value": " " + }, + { + "type": "brace", + "start": 1023, + "end": 1024, + "value": "[" + }, + { + "type": "whitespace", + "start": 1024, + "end": 1034, + "value": "\n " + }, + { + "type": "word", + "start": 1034, + "end": 1053, + "value": "getNextAdjacentEdge" + }, + { + "type": "brace", + "start": 1053, + "end": 1054, + "value": "(" + }, + { + "type": "word", + "start": 1054, + "end": 1059, + "value": "edge1" + }, + { + "type": "brace", + "start": 1059, + "end": 1060, + "value": ")" + }, + { + "type": "comma", + "start": 1060, + "end": 1061, + "value": "," + }, + { + "type": "whitespace", + "start": 1061, + "end": 1071, + "value": "\n " + }, + { + "type": "word", + "start": 1071, + "end": 1090, + "value": "getNextAdjacentEdge" + }, + { + "type": "brace", + "start": 1090, + "end": 1091, + "value": "(" + }, + { + "type": "word", + "start": 1091, + "end": 1096, + "value": "edge2" + }, + { + "type": "brace", + "start": 1096, + "end": 1097, + "value": ")" + }, + { + "type": "comma", + "start": 1097, + "end": 1098, + "value": "," + }, + { + "type": "whitespace", + "start": 1098, + "end": 1108, + "value": "\n " + }, + { + "type": "word", + "start": 1108, + "end": 1127, + "value": "getNextAdjacentEdge" + }, + { + "type": "brace", + "start": 1127, + "end": 1128, + "value": "(" + }, + { + "type": "word", + "start": 1128, + "end": 1133, + "value": "edge3" + }, + { + "type": "brace", + "start": 1133, + "end": 1134, + "value": ")" + }, + { + "type": "comma", + "start": 1134, + "end": 1135, + "value": "," + }, + { + "type": "whitespace", + "start": 1135, + "end": 1145, + "value": "\n " + }, + { + "type": "word", + "start": 1145, + "end": 1164, + "value": "getNextAdjacentEdge" + }, + { + "type": "brace", + "start": 1164, + "end": 1165, + "value": "(" + }, + { + "type": "word", + "start": 1165, + "end": 1170, + "value": "edge4" + }, + { + "type": "brace", + "start": 1170, + "end": 1171, + "value": ")" + }, + { + "type": "whitespace", + "start": 1171, + "end": 1179, + "value": "\n " + }, + { + "type": "brace", + "start": 1179, + "end": 1180, + "value": "]" + }, + { + "type": "whitespace", + "start": 1180, + "end": 1186, + "value": "\n " + }, + { + "type": "brace", + "start": 1186, + "end": 1187, + "value": "}" + }, + { + "type": "comma", + "start": 1187, + "end": 1188, + "value": "," + }, + { + "type": "whitespace", + "start": 1188, + "end": 1189, + "value": " " + }, + { + "type": "operator", + "start": 1189, + "end": 1190, + "value": "%" + }, + { + "type": "brace", + "start": 1190, + "end": 1191, + "value": ")" + }, + { + "type": "whitespace", + "start": 1191, + "end": 1193, + "value": "\n\n" + }, + { + "type": "keyword", + "start": 1193, + "end": 1195, + "value": "fn" + }, + { + "type": "whitespace", + "start": 1195, + "end": 1196, + "value": " " + }, + { + "type": "word", + "start": 1196, + "end": 1204, + "value": "m25Screw" + }, + { + "type": "whitespace", + "start": 1204, + "end": 1205, + "value": " " + }, + { + "type": "operator", + "start": 1205, + "end": 1206, + "value": "=" + }, + { + "type": "whitespace", + "start": 1206, + "end": 1207, + "value": " " + }, + { + "type": "brace", + "start": 1207, + "end": 1208, + "value": "(" + }, + { + "type": "word", + "start": 1208, + "end": 1209, + "value": "x" + }, + { + "type": "comma", + "start": 1209, + "end": 1210, + "value": "," + }, + { + "type": "whitespace", + "start": 1210, + "end": 1211, + "value": " " + }, + { + "type": "word", + "start": 1211, + "end": 1212, + "value": "y" + }, + { + "type": "comma", + "start": 1212, + "end": 1213, + "value": "," + }, + { + "type": "whitespace", + "start": 1213, + "end": 1214, + "value": " " + }, + { + "type": "word", + "start": 1214, + "end": 1220, + "value": "height" + }, + { + "type": "brace", + "start": 1220, + "end": 1221, + "value": ")" + }, + { + "type": "whitespace", + "start": 1221, + "end": 1222, + "value": " " + }, + { + "type": "operator", + "start": 1222, + "end": 1224, + "value": "=>" + }, + { + "type": "whitespace", + "start": 1224, + "end": 1225, + "value": " " + }, + { + "type": "brace", + "start": 1225, + "end": 1226, + "value": "{" + }, + { + "type": "whitespace", + "start": 1226, + "end": 1229, + "value": "\n " + }, + { + "type": "word", + "start": 1229, + "end": 1234, + "value": "screw" + }, + { + "type": "whitespace", + "start": 1234, + "end": 1235, + "value": " " + }, + { + "type": "operator", + "start": 1235, + "end": 1236, + "value": "=" + }, + { + "type": "whitespace", + "start": 1236, + "end": 1237, + "value": " " + }, + { + "type": "word", + "start": 1237, + "end": 1250, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 1250, + "end": 1251, + "value": "(" + }, + { + "type": "string", + "start": 1251, + "end": 1255, + "value": "\"XY\"" + }, + { + "type": "brace", + "start": 1255, + "end": 1256, + "value": ")" + }, + { + "type": "whitespace", + "start": 1256, + "end": 1261, + "value": "\n " + }, + { + "type": "operator", + "start": 1261, + "end": 1263, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1263, + "end": 1264, + "value": " " + }, + { + "type": "word", + "start": 1264, + "end": 1278, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 1278, + "end": 1279, + "value": "(" + }, + { + "type": "brace", + "start": 1279, + "end": 1280, + "value": "[" + }, + { + "type": "number", + "start": 1280, + "end": 1281, + "value": "0" + }, + { + "type": "comma", + "start": 1281, + "end": 1282, + "value": "," + }, + { + "type": "whitespace", + "start": 1282, + "end": 1283, + "value": " " + }, + { + "type": "number", + "start": 1283, + "end": 1284, + "value": "0" + }, + { + "type": "brace", + "start": 1284, + "end": 1285, + "value": "]" + }, + { + "type": "comma", + "start": 1285, + "end": 1286, + "value": "," + }, + { + "type": "whitespace", + "start": 1286, + "end": 1287, + "value": " " + }, + { + "type": "operator", + "start": 1287, + "end": 1288, + "value": "%" + }, + { + "type": "brace", + "start": 1288, + "end": 1289, + "value": ")" + }, + { + "type": "whitespace", + "start": 1289, + "end": 1294, + "value": "\n " + }, + { + "type": "operator", + "start": 1294, + "end": 1296, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1296, + "end": 1297, + "value": " " + }, + { + "type": "word", + "start": 1297, + "end": 1303, + "value": "circle" + }, + { + "type": "brace", + "start": 1303, + "end": 1304, + "value": "(" + }, + { + "type": "brace", + "start": 1304, + "end": 1305, + "value": "{" + }, + { + "type": "whitespace", + "start": 1305, + "end": 1306, + "value": " " + }, + { + "type": "word", + "start": 1306, + "end": 1312, + "value": "center" + }, + { + "type": "colon", + "start": 1312, + "end": 1313, + "value": ":" + }, + { + "type": "whitespace", + "start": 1313, + "end": 1314, + "value": " " + }, + { + "type": "brace", + "start": 1314, + "end": 1315, + "value": "[" + }, + { + "type": "word", + "start": 1315, + "end": 1316, + "value": "x" + }, + { + "type": "comma", + "start": 1316, + "end": 1317, + "value": "," + }, + { + "type": "whitespace", + "start": 1317, + "end": 1318, + "value": " " + }, + { + "type": "word", + "start": 1318, + "end": 1319, + "value": "y" + }, + { + "type": "brace", + "start": 1319, + "end": 1320, + "value": "]" + }, + { + "type": "comma", + "start": 1320, + "end": 1321, + "value": "," + }, + { + "type": "whitespace", + "start": 1321, + "end": 1322, + "value": " " + }, + { + "type": "word", + "start": 1322, + "end": 1328, + "value": "radius" + }, + { + "type": "colon", + "start": 1328, + "end": 1329, + "value": ":" + }, + { + "type": "whitespace", + "start": 1329, + "end": 1330, + "value": " " + }, + { + "type": "number", + "start": 1330, + "end": 1333, + "value": "2.5" + }, + { + "type": "whitespace", + "start": 1333, + "end": 1334, + "value": " " + }, + { + "type": "brace", + "start": 1334, + "end": 1335, + "value": "}" + }, + { + "type": "comma", + "start": 1335, + "end": 1336, + "value": "," + }, + { + "type": "whitespace", + "start": 1336, + "end": 1337, + "value": " " + }, + { + "type": "operator", + "start": 1337, + "end": 1338, + "value": "%" + }, + { + "type": "brace", + "start": 1338, + "end": 1339, + "value": ")" + }, + { + "type": "whitespace", + "start": 1339, + "end": 1344, + "value": "\n " + }, + { + "type": "operator", + "start": 1344, + "end": 1346, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1346, + "end": 1347, + "value": " " + }, + { + "type": "word", + "start": 1347, + "end": 1351, + "value": "hole" + }, + { + "type": "brace", + "start": 1351, + "end": 1352, + "value": "(" + }, + { + "type": "word", + "start": 1352, + "end": 1358, + "value": "circle" + }, + { + "type": "brace", + "start": 1358, + "end": 1359, + "value": "(" + }, + { + "type": "brace", + "start": 1359, + "end": 1360, + "value": "{" + }, + { + "type": "whitespace", + "start": 1360, + "end": 1361, + "value": " " + }, + { + "type": "word", + "start": 1361, + "end": 1367, + "value": "center" + }, + { + "type": "colon", + "start": 1367, + "end": 1368, + "value": ":" + }, + { + "type": "whitespace", + "start": 1368, + "end": 1369, + "value": " " + }, + { + "type": "brace", + "start": 1369, + "end": 1370, + "value": "[" + }, + { + "type": "word", + "start": 1370, + "end": 1371, + "value": "x" + }, + { + "type": "comma", + "start": 1371, + "end": 1372, + "value": "," + }, + { + "type": "whitespace", + "start": 1372, + "end": 1373, + "value": " " + }, + { + "type": "word", + "start": 1373, + "end": 1374, + "value": "y" + }, + { + "type": "brace", + "start": 1374, + "end": 1375, + "value": "]" + }, + { + "type": "comma", + "start": 1375, + "end": 1376, + "value": "," + }, + { + "type": "whitespace", + "start": 1376, + "end": 1377, + "value": " " + }, + { + "type": "word", + "start": 1377, + "end": 1383, + "value": "radius" + }, + { + "type": "colon", + "start": 1383, + "end": 1384, + "value": ":" + }, + { + "type": "whitespace", + "start": 1384, + "end": 1385, + "value": " " + }, + { + "type": "number", + "start": 1385, + "end": 1389, + "value": "1.25" + }, + { + "type": "whitespace", + "start": 1389, + "end": 1390, + "value": " " + }, + { + "type": "brace", + "start": 1390, + "end": 1391, + "value": "}" + }, + { + "type": "comma", + "start": 1391, + "end": 1392, + "value": "," + }, + { + "type": "whitespace", + "start": 1392, + "end": 1393, + "value": " " + }, + { + "type": "operator", + "start": 1393, + "end": 1394, + "value": "%" + }, + { + "type": "brace", + "start": 1394, + "end": 1395, + "value": ")" + }, + { + "type": "comma", + "start": 1395, + "end": 1396, + "value": "," + }, + { + "type": "whitespace", + "start": 1396, + "end": 1397, + "value": " " + }, + { + "type": "operator", + "start": 1397, + "end": 1398, + "value": "%" + }, + { + "type": "brace", + "start": 1398, + "end": 1399, + "value": ")" + }, + { + "type": "whitespace", + "start": 1399, + "end": 1404, + "value": "\n " + }, + { + "type": "operator", + "start": 1404, + "end": 1406, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1406, + "end": 1407, + "value": " " + }, + { + "type": "word", + "start": 1407, + "end": 1414, + "value": "extrude" + }, + { + "type": "brace", + "start": 1414, + "end": 1415, + "value": "(" + }, + { + "type": "word", + "start": 1415, + "end": 1421, + "value": "height" + }, + { + "type": "comma", + "start": 1421, + "end": 1422, + "value": "," + }, + { + "type": "whitespace", + "start": 1422, + "end": 1423, + "value": " " + }, + { + "type": "operator", + "start": 1423, + "end": 1424, + "value": "%" + }, + { + "type": "brace", + "start": 1424, + "end": 1425, + "value": ")" + }, + { + "type": "whitespace", + "start": 1425, + "end": 1428, + "value": "\n " + }, + { + "type": "keyword", + "start": 1428, + "end": 1434, + "value": "return" + }, + { + "type": "whitespace", + "start": 1434, + "end": 1435, + "value": " " + }, + { + "type": "word", + "start": 1435, + "end": 1440, + "value": "screw" + }, + { + "type": "whitespace", + "start": 1440, + "end": 1441, + "value": "\n" + }, + { + "type": "brace", + "start": 1441, + "end": 1442, + "value": "}" + }, + { + "type": "whitespace", + "start": 1442, + "end": 1444, + "value": "\n\n" + }, + { + "type": "word", + "start": 1444, + "end": 1452, + "value": "m25Screw" + }, + { + "type": "brace", + "start": 1452, + "end": 1453, + "value": "(" + }, + { + "type": "word", + "start": 1453, + "end": 1459, + "value": "border" + }, + { + "type": "whitespace", + "start": 1459, + "end": 1460, + "value": " " + }, + { + "type": "operator", + "start": 1460, + "end": 1461, + "value": "+" + }, + { + "type": "whitespace", + "start": 1461, + "end": 1462, + "value": " " + }, + { + "type": "word", + "start": 1462, + "end": 1471, + "value": "rpizWidth" + }, + { + "type": "whitespace", + "start": 1471, + "end": 1472, + "value": " " + }, + { + "type": "operator", + "start": 1472, + "end": 1473, + "value": "/" + }, + { + "type": "whitespace", + "start": 1473, + "end": 1474, + "value": " " + }, + { + "type": "number", + "start": 1474, + "end": 1475, + "value": "2" + }, + { + "type": "whitespace", + "start": 1475, + "end": 1476, + "value": " " + }, + { + "type": "operator", + "start": 1476, + "end": 1477, + "value": "-" + }, + { + "type": "whitespace", + "start": 1477, + "end": 1478, + "value": " " + }, + { + "type": "brace", + "start": 1478, + "end": 1479, + "value": "(" + }, + { + "type": "word", + "start": 1479, + "end": 1497, + "value": "widthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1497, + "end": 1498, + "value": " " + }, + { + "type": "operator", + "start": 1498, + "end": 1499, + "value": "/" + }, + { + "type": "whitespace", + "start": 1499, + "end": 1500, + "value": " " + }, + { + "type": "number", + "start": 1500, + "end": 1501, + "value": "2" + }, + { + "type": "brace", + "start": 1501, + "end": 1502, + "value": ")" + }, + { + "type": "comma", + "start": 1502, + "end": 1503, + "value": "," + }, + { + "type": "whitespace", + "start": 1503, + "end": 1504, + "value": " " + }, + { + "type": "number", + "start": 1504, + "end": 1505, + "value": "0" + }, + { + "type": "whitespace", + "start": 1505, + "end": 1506, + "value": " " + }, + { + "type": "operator", + "start": 1506, + "end": 1507, + "value": "+" + }, + { + "type": "whitespace", + "start": 1507, + "end": 1508, + "value": " " + }, + { + "type": "word", + "start": 1508, + "end": 1514, + "value": "border" + }, + { + "type": "whitespace", + "start": 1514, + "end": 1515, + "value": " " + }, + { + "type": "operator", + "start": 1515, + "end": 1516, + "value": "+" + }, + { + "type": "whitespace", + "start": 1516, + "end": 1517, + "value": " " + }, + { + "type": "word", + "start": 1517, + "end": 1527, + "value": "rpizLength" + }, + { + "type": "whitespace", + "start": 1527, + "end": 1528, + "value": " " + }, + { + "type": "operator", + "start": 1528, + "end": 1529, + "value": "/" + }, + { + "type": "whitespace", + "start": 1529, + "end": 1530, + "value": " " + }, + { + "type": "number", + "start": 1530, + "end": 1531, + "value": "2" + }, + { + "type": "whitespace", + "start": 1531, + "end": 1532, + "value": " " + }, + { + "type": "operator", + "start": 1532, + "end": 1533, + "value": "-" + }, + { + "type": "whitespace", + "start": 1533, + "end": 1534, + "value": " " + }, + { + "type": "brace", + "start": 1534, + "end": 1535, + "value": "(" + }, + { + "type": "word", + "start": 1535, + "end": 1554, + "value": "lengthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1554, + "end": 1555, + "value": " " + }, + { + "type": "operator", + "start": 1555, + "end": 1556, + "value": "/" + }, + { + "type": "whitespace", + "start": 1556, + "end": 1557, + "value": " " + }, + { + "type": "number", + "start": 1557, + "end": 1558, + "value": "2" + }, + { + "type": "brace", + "start": 1558, + "end": 1559, + "value": ")" + }, + { + "type": "comma", + "start": 1559, + "end": 1560, + "value": "," + }, + { + "type": "whitespace", + "start": 1560, + "end": 1561, + "value": " " + }, + { + "type": "word", + "start": 1561, + "end": 1572, + "value": "screwHeight" + }, + { + "type": "brace", + "start": 1572, + "end": 1573, + "value": ")" + }, + { + "type": "whitespace", + "start": 1573, + "end": 1575, + "value": "\n\n" + }, + { + "type": "word", + "start": 1575, + "end": 1583, + "value": "m25Screw" + }, + { + "type": "brace", + "start": 1583, + "end": 1584, + "value": "(" + }, + { + "type": "word", + "start": 1584, + "end": 1590, + "value": "border" + }, + { + "type": "whitespace", + "start": 1590, + "end": 1591, + "value": " " + }, + { + "type": "operator", + "start": 1591, + "end": 1592, + "value": "+" + }, + { + "type": "whitespace", + "start": 1592, + "end": 1593, + "value": " " + }, + { + "type": "word", + "start": 1593, + "end": 1602, + "value": "rpizWidth" + }, + { + "type": "whitespace", + "start": 1602, + "end": 1603, + "value": " " + }, + { + "type": "operator", + "start": 1603, + "end": 1604, + "value": "/" + }, + { + "type": "whitespace", + "start": 1604, + "end": 1605, + "value": " " + }, + { + "type": "number", + "start": 1605, + "end": 1606, + "value": "2" + }, + { + "type": "whitespace", + "start": 1606, + "end": 1607, + "value": " " + }, + { + "type": "operator", + "start": 1607, + "end": 1608, + "value": "-" + }, + { + "type": "whitespace", + "start": 1608, + "end": 1609, + "value": " " + }, + { + "type": "brace", + "start": 1609, + "end": 1610, + "value": "(" + }, + { + "type": "word", + "start": 1610, + "end": 1628, + "value": "widthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1628, + "end": 1629, + "value": " " + }, + { + "type": "operator", + "start": 1629, + "end": 1630, + "value": "/" + }, + { + "type": "whitespace", + "start": 1630, + "end": 1631, + "value": " " + }, + { + "type": "number", + "start": 1631, + "end": 1632, + "value": "2" + }, + { + "type": "brace", + "start": 1632, + "end": 1633, + "value": ")" + }, + { + "type": "comma", + "start": 1633, + "end": 1634, + "value": "," + }, + { + "type": "whitespace", + "start": 1634, + "end": 1635, + "value": " " + }, + { + "type": "number", + "start": 1635, + "end": 1636, + "value": "0" + }, + { + "type": "whitespace", + "start": 1636, + "end": 1637, + "value": " " + }, + { + "type": "operator", + "start": 1637, + "end": 1638, + "value": "+" + }, + { + "type": "whitespace", + "start": 1638, + "end": 1639, + "value": " " + }, + { + "type": "word", + "start": 1639, + "end": 1645, + "value": "border" + }, + { + "type": "whitespace", + "start": 1645, + "end": 1646, + "value": " " + }, + { + "type": "operator", + "start": 1646, + "end": 1647, + "value": "+" + }, + { + "type": "whitespace", + "start": 1647, + "end": 1648, + "value": " " + }, + { + "type": "word", + "start": 1648, + "end": 1658, + "value": "rpizLength" + }, + { + "type": "whitespace", + "start": 1658, + "end": 1659, + "value": " " + }, + { + "type": "operator", + "start": 1659, + "end": 1660, + "value": "/" + }, + { + "type": "whitespace", + "start": 1660, + "end": 1661, + "value": " " + }, + { + "type": "number", + "start": 1661, + "end": 1662, + "value": "2" + }, + { + "type": "whitespace", + "start": 1662, + "end": 1663, + "value": " " + }, + { + "type": "operator", + "start": 1663, + "end": 1664, + "value": "+" + }, + { + "type": "whitespace", + "start": 1664, + "end": 1665, + "value": " " + }, + { + "type": "word", + "start": 1665, + "end": 1684, + "value": "lengthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1684, + "end": 1685, + "value": " " + }, + { + "type": "operator", + "start": 1685, + "end": 1686, + "value": "/" + }, + { + "type": "whitespace", + "start": 1686, + "end": 1687, + "value": " " + }, + { + "type": "number", + "start": 1687, + "end": 1688, + "value": "2" + }, + { + "type": "comma", + "start": 1688, + "end": 1689, + "value": "," + }, + { + "type": "whitespace", + "start": 1689, + "end": 1690, + "value": " " + }, + { + "type": "word", + "start": 1690, + "end": 1701, + "value": "screwHeight" + }, + { + "type": "brace", + "start": 1701, + "end": 1702, + "value": ")" + }, + { + "type": "whitespace", + "start": 1702, + "end": 1704, + "value": "\n\n" + }, + { + "type": "word", + "start": 1704, + "end": 1712, + "value": "m25Screw" + }, + { + "type": "brace", + "start": 1712, + "end": 1713, + "value": "(" + }, + { + "type": "word", + "start": 1713, + "end": 1719, + "value": "border" + }, + { + "type": "whitespace", + "start": 1719, + "end": 1720, + "value": " " + }, + { + "type": "operator", + "start": 1720, + "end": 1721, + "value": "+" + }, + { + "type": "whitespace", + "start": 1721, + "end": 1722, + "value": " " + }, + { + "type": "word", + "start": 1722, + "end": 1731, + "value": "rpizWidth" + }, + { + "type": "whitespace", + "start": 1731, + "end": 1732, + "value": " " + }, + { + "type": "operator", + "start": 1732, + "end": 1733, + "value": "/" + }, + { + "type": "whitespace", + "start": 1733, + "end": 1734, + "value": " " + }, + { + "type": "number", + "start": 1734, + "end": 1735, + "value": "2" + }, + { + "type": "whitespace", + "start": 1735, + "end": 1736, + "value": " " + }, + { + "type": "operator", + "start": 1736, + "end": 1737, + "value": "+" + }, + { + "type": "whitespace", + "start": 1737, + "end": 1738, + "value": " " + }, + { + "type": "word", + "start": 1738, + "end": 1756, + "value": "widthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1756, + "end": 1757, + "value": " " + }, + { + "type": "operator", + "start": 1757, + "end": 1758, + "value": "/" + }, + { + "type": "whitespace", + "start": 1758, + "end": 1759, + "value": " " + }, + { + "type": "number", + "start": 1759, + "end": 1760, + "value": "2" + }, + { + "type": "comma", + "start": 1760, + "end": 1761, + "value": "," + }, + { + "type": "whitespace", + "start": 1761, + "end": 1762, + "value": " " + }, + { + "type": "number", + "start": 1762, + "end": 1763, + "value": "0" + }, + { + "type": "whitespace", + "start": 1763, + "end": 1764, + "value": " " + }, + { + "type": "operator", + "start": 1764, + "end": 1765, + "value": "+" + }, + { + "type": "whitespace", + "start": 1765, + "end": 1766, + "value": " " + }, + { + "type": "word", + "start": 1766, + "end": 1772, + "value": "border" + }, + { + "type": "whitespace", + "start": 1772, + "end": 1773, + "value": " " + }, + { + "type": "operator", + "start": 1773, + "end": 1774, + "value": "+" + }, + { + "type": "whitespace", + "start": 1774, + "end": 1775, + "value": " " + }, + { + "type": "word", + "start": 1775, + "end": 1785, + "value": "rpizLength" + }, + { + "type": "whitespace", + "start": 1785, + "end": 1786, + "value": " " + }, + { + "type": "operator", + "start": 1786, + "end": 1787, + "value": "/" + }, + { + "type": "whitespace", + "start": 1787, + "end": 1788, + "value": " " + }, + { + "type": "number", + "start": 1788, + "end": 1789, + "value": "2" + }, + { + "type": "whitespace", + "start": 1789, + "end": 1790, + "value": " " + }, + { + "type": "operator", + "start": 1790, + "end": 1791, + "value": "+" + }, + { + "type": "whitespace", + "start": 1791, + "end": 1792, + "value": " " + }, + { + "type": "word", + "start": 1792, + "end": 1811, + "value": "lengthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1811, + "end": 1812, + "value": " " + }, + { + "type": "operator", + "start": 1812, + "end": 1813, + "value": "/" + }, + { + "type": "whitespace", + "start": 1813, + "end": 1814, + "value": " " + }, + { + "type": "number", + "start": 1814, + "end": 1815, + "value": "2" + }, + { + "type": "comma", + "start": 1815, + "end": 1816, + "value": "," + }, + { + "type": "whitespace", + "start": 1816, + "end": 1817, + "value": " " + }, + { + "type": "word", + "start": 1817, + "end": 1828, + "value": "screwHeight" + }, + { + "type": "brace", + "start": 1828, + "end": 1829, + "value": ")" + }, + { + "type": "whitespace", + "start": 1829, + "end": 1831, + "value": "\n\n" + }, + { + "type": "word", + "start": 1831, + "end": 1839, + "value": "m25Screw" + }, + { + "type": "brace", + "start": 1839, + "end": 1840, + "value": "(" + }, + { + "type": "word", + "start": 1840, + "end": 1846, + "value": "border" + }, + { + "type": "whitespace", + "start": 1846, + "end": 1847, + "value": " " + }, + { + "type": "operator", + "start": 1847, + "end": 1848, + "value": "+" + }, + { + "type": "whitespace", + "start": 1848, + "end": 1849, + "value": " " + }, + { + "type": "word", + "start": 1849, + "end": 1858, + "value": "rpizWidth" + }, + { + "type": "whitespace", + "start": 1858, + "end": 1859, + "value": " " + }, + { + "type": "operator", + "start": 1859, + "end": 1860, + "value": "/" + }, + { + "type": "whitespace", + "start": 1860, + "end": 1861, + "value": " " + }, + { + "type": "number", + "start": 1861, + "end": 1862, + "value": "2" + }, + { + "type": "whitespace", + "start": 1862, + "end": 1863, + "value": " " + }, + { + "type": "operator", + "start": 1863, + "end": 1864, + "value": "+" + }, + { + "type": "whitespace", + "start": 1864, + "end": 1865, + "value": " " + }, + { + "type": "word", + "start": 1865, + "end": 1883, + "value": "widthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1883, + "end": 1884, + "value": " " + }, + { + "type": "operator", + "start": 1884, + "end": 1885, + "value": "/" + }, + { + "type": "whitespace", + "start": 1885, + "end": 1886, + "value": " " + }, + { + "type": "number", + "start": 1886, + "end": 1887, + "value": "2" + }, + { + "type": "comma", + "start": 1887, + "end": 1888, + "value": "," + }, + { + "type": "whitespace", + "start": 1888, + "end": 1889, + "value": " " + }, + { + "type": "number", + "start": 1889, + "end": 1890, + "value": "0" + }, + { + "type": "whitespace", + "start": 1890, + "end": 1891, + "value": " " + }, + { + "type": "operator", + "start": 1891, + "end": 1892, + "value": "+" + }, + { + "type": "whitespace", + "start": 1892, + "end": 1893, + "value": " " + }, + { + "type": "word", + "start": 1893, + "end": 1899, + "value": "border" + }, + { + "type": "whitespace", + "start": 1899, + "end": 1900, + "value": " " + }, + { + "type": "operator", + "start": 1900, + "end": 1901, + "value": "+" + }, + { + "type": "whitespace", + "start": 1901, + "end": 1902, + "value": " " + }, + { + "type": "word", + "start": 1902, + "end": 1912, + "value": "rpizLength" + }, + { + "type": "whitespace", + "start": 1912, + "end": 1913, + "value": " " + }, + { + "type": "operator", + "start": 1913, + "end": 1914, + "value": "/" + }, + { + "type": "whitespace", + "start": 1914, + "end": 1915, + "value": " " + }, + { + "type": "number", + "start": 1915, + "end": 1916, + "value": "2" + }, + { + "type": "whitespace", + "start": 1916, + "end": 1917, + "value": " " + }, + { + "type": "operator", + "start": 1917, + "end": 1918, + "value": "-" + }, + { + "type": "whitespace", + "start": 1918, + "end": 1919, + "value": " " + }, + { + "type": "brace", + "start": 1919, + "end": 1920, + "value": "(" + }, + { + "type": "word", + "start": 1920, + "end": 1939, + "value": "lengthBetweenScrews" + }, + { + "type": "whitespace", + "start": 1939, + "end": 1940, + "value": " " + }, + { + "type": "operator", + "start": 1940, + "end": 1941, + "value": "/" + }, + { + "type": "whitespace", + "start": 1941, + "end": 1942, + "value": " " + }, + { + "type": "number", + "start": 1942, + "end": 1943, + "value": "2" + }, + { + "type": "brace", + "start": 1943, + "end": 1944, + "value": ")" + }, + { + "type": "comma", + "start": 1944, + "end": 1945, + "value": "," + }, + { + "type": "whitespace", + "start": 1945, + "end": 1946, + "value": " " + }, + { + "type": "word", + "start": 1946, + "end": 1957, + "value": "screwHeight" + }, + { + "type": "brace", + "start": 1957, + "end": 1958, + "value": ")" + }, + { + "type": "whitespace", + "start": 1958, + "end": 1960, + "value": "\n\n" + }, + { + "type": "word", + "start": 1960, + "end": 1965, + "value": "shell" + }, + { + "type": "brace", + "start": 1965, + "end": 1966, + "value": "(" + }, + { + "type": "brace", + "start": 1966, + "end": 1967, + "value": "{" + }, + { + "type": "whitespace", + "start": 1967, + "end": 1970, + "value": "\n " + }, + { + "type": "word", + "start": 1970, + "end": 1975, + "value": "faces" + }, + { + "type": "colon", + "start": 1975, + "end": 1976, + "value": ":" + }, + { + "type": "whitespace", + "start": 1976, + "end": 1977, + "value": " " + }, + { + "type": "brace", + "start": 1977, + "end": 1978, + "value": "[" + }, + { + "type": "string", + "start": 1978, + "end": 1983, + "value": "'end'" + }, + { + "type": "brace", + "start": 1983, + "end": 1984, + "value": "]" + }, + { + "type": "comma", + "start": 1984, + "end": 1985, + "value": "," + }, + { + "type": "whitespace", + "start": 1985, + "end": 1988, + "value": "\n " + }, + { + "type": "word", + "start": 1988, + "end": 1997, + "value": "thickness" + }, + { + "type": "colon", + "start": 1997, + "end": 1998, + "value": ":" + }, + { + "type": "whitespace", + "start": 1998, + "end": 1999, + "value": " " + }, + { + "type": "word", + "start": 1999, + "end": 2012, + "value": "caseThickness" + }, + { + "type": "whitespace", + "start": 2012, + "end": 2013, + "value": "\n" + }, + { + "type": "brace", + "start": 2013, + "end": 2014, + "value": "}" + }, + { + "type": "comma", + "start": 2014, + "end": 2015, + "value": "," + }, + { + "type": "whitespace", + "start": 2015, + "end": 2016, + "value": " " + }, + { + "type": "word", + "start": 2016, + "end": 2020, + "value": "case" + }, + { + "type": "brace", + "start": 2020, + "end": 2021, + "value": ")" + }, + { + "type": "whitespace", + "start": 2021, + "end": 2022, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/import_constant/ast.snap b/src/wasm-lib/kcl/tests/import_constant/ast.snap new file mode 100644 index 000000000..27cfa258e --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_constant/ast.snap @@ -0,0 +1,35 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing import_constant.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "end": 39, + "items": [ + { + "alias": null, + "end": 12, + "name": { + "end": 12, + "name": "three", + "start": 7, + "type": "Identifier" + }, + "start": 7, + "type": "ImportItem" + } + ], + "path": "export_constant.kcl", + "raw_path": "\"export_constant.kcl\"", + "start": 0, + "type": "ImportStatement", + "type": "ImportStatement" + } + ], + "end": 40, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/import_constant/execution_error.snap b/src/wasm-lib/kcl/tests/import_constant/execution_error.snap new file mode 100644 index 000000000..ecc0d57a4 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_constant/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing import_constant.kcl +snapshot_kind: text +--- +engine: KclErrorDetails { source_ranges: [SourceRange([0, 39, 0])], message: "Failed to read file `export_constant.kcl`: No such file or directory (os error 2)" } diff --git a/src/wasm-lib/kcl/tests/import_constant/input.kcl b/src/wasm-lib/kcl/tests/import_constant/input.kcl new file mode 100644 index 000000000..f9411745e --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_constant/input.kcl @@ -0,0 +1 @@ +import three from "export_constant.kcl" diff --git a/src/wasm-lib/kcl/tests/import_constant/tokens.snap b/src/wasm-lib/kcl/tests/import_constant/tokens.snap new file mode 100644 index 000000000..f268f4e61 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_constant/tokens.snap @@ -0,0 +1,57 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing import_constant.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 6, + "value": "import" + }, + { + "type": "whitespace", + "start": 6, + "end": 7, + "value": " " + }, + { + "type": "word", + "start": 7, + "end": 12, + "value": "three" + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "word", + "start": 13, + "end": 17, + "value": "from" + }, + { + "type": "whitespace", + "start": 17, + "end": 18, + "value": " " + }, + { + "type": "string", + "start": 18, + "end": 39, + "value": "\"export_constant.kcl\"" + }, + { + "type": "whitespace", + "start": 39, + "end": 40, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/import_cycle1/ast.snap b/src/wasm-lib/kcl/tests/import_cycle1/ast.snap new file mode 100644 index 000000000..e1e478225 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_cycle1/ast.snap @@ -0,0 +1,119 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing import_cycle1.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "end": 35, + "items": [ + { + "alias": null, + "end": 10, + "name": { + "end": 10, + "name": "two", + "start": 7, + "type": "Identifier" + }, + "start": 7, + "type": "ImportItem" + } + ], + "path": "import_cycle2.kcl", + "raw_path": "\"import_cycle2.kcl\"", + "start": 0, + "type": "ImportStatement", + "type": "ImportStatement" + }, + { + "declarations": [ + { + "end": 81, + "id": { + "end": 50, + "name": "one", + "start": 47, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "argument": { + "end": 79, + "left": { + "arguments": [], + "callee": { + "end": 73, + "name": "two", + "start": 70, + "type": "Identifier" + }, + "end": 75, + "optional": false, + "start": 70, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 79, + "raw": "1", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 70, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 79, + "start": 63, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 81, + "start": 59 + }, + "end": 81, + "params": [], + "start": 53, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 47, + "type": "VariableDeclarator" + } + ], + "end": 81, + "kind": "fn", + "start": 37, + "type": "VariableDeclaration", + "type": "VariableDeclaration", + "visibility": "export" + } + ], + "end": 82, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 37, + "start": 35, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/import_cycle1/execution_error.snap b/src/wasm-lib/kcl/tests/import_cycle1/execution_error.snap new file mode 100644 index 000000000..26535746a --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_cycle1/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing import_cycle1.kcl +snapshot_kind: text +--- +engine: KclErrorDetails { source_ranges: [SourceRange([0, 35, 0])], message: "Failed to read file `import_cycle2.kcl`: No such file or directory (os error 2)" } diff --git a/src/wasm-lib/kcl/tests/import_cycle1/input.kcl b/src/wasm-lib/kcl/tests/import_cycle1/input.kcl new file mode 100644 index 000000000..9a92ffbfa --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_cycle1/input.kcl @@ -0,0 +1,5 @@ +import two from "import_cycle2.kcl" + +export fn one = () => { + return two() - 1 +} diff --git a/src/wasm-lib/kcl/tests/import_cycle1/tokens.snap b/src/wasm-lib/kcl/tests/import_cycle1/tokens.snap new file mode 100644 index 000000000..6443cf899 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_cycle1/tokens.snap @@ -0,0 +1,219 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing import_cycle1.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 6, + "value": "import" + }, + { + "type": "whitespace", + "start": 6, + "end": 7, + "value": " " + }, + { + "type": "word", + "start": 7, + "end": 10, + "value": "two" + }, + { + "type": "whitespace", + "start": 10, + "end": 11, + "value": " " + }, + { + "type": "word", + "start": 11, + "end": 15, + "value": "from" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "string", + "start": 16, + "end": 35, + "value": "\"import_cycle2.kcl\"" + }, + { + "type": "whitespace", + "start": 35, + "end": 37, + "value": "\n\n" + }, + { + "type": "keyword", + "start": 37, + "end": 43, + "value": "export" + }, + { + "type": "whitespace", + "start": 43, + "end": 44, + "value": " " + }, + { + "type": "keyword", + "start": 44, + "end": 46, + "value": "fn" + }, + { + "type": "whitespace", + "start": 46, + "end": 47, + "value": " " + }, + { + "type": "word", + "start": 47, + "end": 50, + "value": "one" + }, + { + "type": "whitespace", + "start": 50, + "end": 51, + "value": " " + }, + { + "type": "operator", + "start": 51, + "end": 52, + "value": "=" + }, + { + "type": "whitespace", + "start": 52, + "end": 53, + "value": " " + }, + { + "type": "brace", + "start": 53, + "end": 54, + "value": "(" + }, + { + "type": "brace", + "start": 54, + "end": 55, + "value": ")" + }, + { + "type": "whitespace", + "start": 55, + "end": 56, + "value": " " + }, + { + "type": "operator", + "start": 56, + "end": 58, + "value": "=>" + }, + { + "type": "whitespace", + "start": 58, + "end": 59, + "value": " " + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": "{" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "keyword", + "start": 63, + "end": 69, + "value": "return" + }, + { + "type": "whitespace", + "start": 69, + "end": 70, + "value": " " + }, + { + "type": "word", + "start": 70, + "end": 73, + "value": "two" + }, + { + "type": "brace", + "start": 73, + "end": 74, + "value": "(" + }, + { + "type": "brace", + "start": 74, + "end": 75, + "value": ")" + }, + { + "type": "whitespace", + "start": 75, + "end": 76, + "value": " " + }, + { + "type": "operator", + "start": 76, + "end": 77, + "value": "-" + }, + { + "type": "whitespace", + "start": 77, + "end": 78, + "value": " " + }, + { + "type": "number", + "start": 78, + "end": 79, + "value": "1" + }, + { + "type": "whitespace", + "start": 79, + "end": 80, + "value": "\n" + }, + { + "type": "brace", + "start": 80, + "end": 81, + "value": "}" + }, + { + "type": "whitespace", + "start": 81, + "end": 82, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/import_from_other_directory/input.kcl b/src/wasm-lib/kcl/tests/import_from_other_directory/input.kcl new file mode 100644 index 000000000..bd10324de --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_from_other_directory/input.kcl @@ -0,0 +1 @@ +import cube from "../cube.kcl" diff --git a/src/wasm-lib/kcl/tests/import_side_effect/ast.snap b/src/wasm-lib/kcl/tests/import_side_effect/ast.snap new file mode 100644 index 000000000..c9f0fc679 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_side_effect/ast.snap @@ -0,0 +1,35 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing import_side_effect.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "end": 40, + "items": [ + { + "alias": null, + "end": 10, + "name": { + "end": 10, + "name": "foo", + "start": 7, + "type": "Identifier" + }, + "start": 7, + "type": "ImportItem" + } + ], + "path": "export_side_effect.kcl", + "raw_path": "\"export_side_effect.kcl\"", + "start": 0, + "type": "ImportStatement", + "type": "ImportStatement" + } + ], + "end": 41, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/import_side_effect/execution_error.snap b/src/wasm-lib/kcl/tests/import_side_effect/execution_error.snap new file mode 100644 index 000000000..02879b1b8 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_side_effect/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing import_side_effect.kcl +snapshot_kind: text +--- +engine: KclErrorDetails { source_ranges: [SourceRange([0, 40, 0])], message: "Failed to read file `export_side_effect.kcl`: No such file or directory (os error 2)" } diff --git a/src/wasm-lib/kcl/tests/import_side_effect/input.kcl b/src/wasm-lib/kcl/tests/import_side_effect/input.kcl new file mode 100644 index 000000000..d4f6de6a0 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_side_effect/input.kcl @@ -0,0 +1 @@ +import foo from "export_side_effect.kcl" diff --git a/src/wasm-lib/kcl/tests/import_side_effect/tokens.snap b/src/wasm-lib/kcl/tests/import_side_effect/tokens.snap new file mode 100644 index 000000000..ebb7d4507 --- /dev/null +++ b/src/wasm-lib/kcl/tests/import_side_effect/tokens.snap @@ -0,0 +1,57 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing import_side_effect.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 6, + "value": "import" + }, + { + "type": "whitespace", + "start": 6, + "end": 7, + "value": " " + }, + { + "type": "word", + "start": 7, + "end": 10, + "value": "foo" + }, + { + "type": "whitespace", + "start": 10, + "end": 11, + "value": " " + }, + { + "type": "word", + "start": 11, + "end": 15, + "value": "from" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "string", + "start": 16, + "end": 40, + "value": "\"export_side_effect.kcl\"" + }, + { + "type": "whitespace", + "start": 40, + "end": 41, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/invalid_index_fractional/ast.snap b/src/wasm-lib/kcl/tests/invalid_index_fractional/ast.snap new file mode 100644 index 000000000..da2830284 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_fractional/ast.snap @@ -0,0 +1,107 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing invalid_index_fractional.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 15, + "id": { + "end": 3, + "name": "arr", + "start": 0, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 8, + "raw": "1", + "start": 7, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 11, + "raw": "2", + "start": 10, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + { + "end": 14, + "raw": "3", + "start": 13, + "type": "Literal", + "type": "Literal", + "value": 3 + } + ], + "end": 15, + "start": 6, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 15, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 28, + "id": { + "end": 17, + "name": "x", + "start": 16, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 28, + "object": { + "end": 23, + "name": "arr", + "start": 20, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 27, + "raw": "1.2", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": 1.2 + }, + "start": 20, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 16, + "type": "VariableDeclarator" + } + ], + "end": 28, + "kind": "const", + "start": 16, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 29, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/invalid_index_fractional/execution_error.snap b/src/wasm-lib/kcl/tests/invalid_index_fractional/execution_error.snap new file mode 100644 index 000000000..955ba0223 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_fractional/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing invalid_index_fractional.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([20, 28, 0])], message: "Only strings or ints (>= 0) can be properties/indexes" } diff --git a/src/wasm-lib/kcl/tests/invalid_index_fractional/input.kcl b/src/wasm-lib/kcl/tests/invalid_index_fractional/input.kcl new file mode 100644 index 000000000..4f2a3483e --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_fractional/input.kcl @@ -0,0 +1,2 @@ +arr = [1, 2, 3] +x = arr[1.2] diff --git a/src/wasm-lib/kcl/tests/invalid_index_fractional/tokens.snap b/src/wasm-lib/kcl/tests/invalid_index_fractional/tokens.snap new file mode 100644 index 000000000..20cf06013 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_fractional/tokens.snap @@ -0,0 +1,147 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing invalid_index_fractional.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "arr" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "[" + }, + { + "type": "number", + "start": 7, + "end": 8, + "value": "1" + }, + { + "type": "comma", + "start": 8, + "end": 9, + "value": "," + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "number", + "start": 10, + "end": 11, + "value": "2" + }, + { + "type": "comma", + "start": 11, + "end": 12, + "value": "," + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "number", + "start": 13, + "end": 14, + "value": "3" + }, + { + "type": "brace", + "start": 14, + "end": 15, + "value": "]" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": "\n" + }, + { + "type": "word", + "start": 16, + "end": 17, + "value": "x" + }, + { + "type": "whitespace", + "start": 17, + "end": 18, + "value": " " + }, + { + "type": "operator", + "start": 18, + "end": 19, + "value": "=" + }, + { + "type": "whitespace", + "start": 19, + "end": 20, + "value": " " + }, + { + "type": "word", + "start": 20, + "end": 23, + "value": "arr" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "[" + }, + { + "type": "number", + "start": 24, + "end": 27, + "value": "1.2" + }, + { + "type": "brace", + "start": 27, + "end": 28, + "value": "]" + }, + { + "type": "whitespace", + "start": 28, + "end": 29, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/invalid_index_negative/ast.snap b/src/wasm-lib/kcl/tests/invalid_index_negative/ast.snap new file mode 100644 index 000000000..228c99279 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_negative/ast.snap @@ -0,0 +1,141 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing invalid_index_negative.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 15, + "id": { + "end": 3, + "name": "arr", + "start": 0, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 8, + "raw": "1", + "start": 7, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 11, + "raw": "2", + "start": 10, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + { + "end": 14, + "raw": "3", + "start": 13, + "type": "Literal", + "type": "Literal", + "value": 3 + } + ], + "end": 15, + "start": 6, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 15, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 22, + "id": { + "end": 17, + "name": "i", + "start": 16, + "type": "Identifier" + }, + "init": { + "argument": { + "end": 22, + "raw": "1", + "start": 21, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "end": 22, + "operator": "-", + "start": 20, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "start": 16, + "type": "VariableDeclarator" + } + ], + "end": 22, + "kind": "const", + "start": 16, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 33, + "id": { + "end": 24, + "name": "x", + "start": 23, + "type": "Identifier" + }, + "init": { + "computed": true, + "end": 33, + "object": { + "end": 30, + "name": "arr", + "start": 27, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 32, + "name": "i", + "start": 31, + "type": "Identifier", + "type": "Identifier" + }, + "start": 27, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 23, + "type": "VariableDeclarator" + } + ], + "end": 33, + "kind": "const", + "start": 23, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 34, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/invalid_index_negative/execution_error.snap b/src/wasm-lib/kcl/tests/invalid_index_negative/execution_error.snap new file mode 100644 index 000000000..516c9414f --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_negative/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing invalid_index_negative.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([27, 33, 0])], message: "'-1' is negative, so you can't index an array with it" } diff --git a/src/wasm-lib/kcl/tests/invalid_index_negative/input.kcl b/src/wasm-lib/kcl/tests/invalid_index_negative/input.kcl new file mode 100644 index 000000000..457374509 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_negative/input.kcl @@ -0,0 +1,3 @@ +arr = [1, 2, 3] +i = -1 +x = arr[i] diff --git a/src/wasm-lib/kcl/tests/invalid_index_negative/tokens.snap b/src/wasm-lib/kcl/tests/invalid_index_negative/tokens.snap new file mode 100644 index 000000000..9a3bdc823 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_negative/tokens.snap @@ -0,0 +1,189 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing invalid_index_negative.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "arr" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "[" + }, + { + "type": "number", + "start": 7, + "end": 8, + "value": "1" + }, + { + "type": "comma", + "start": 8, + "end": 9, + "value": "," + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "number", + "start": 10, + "end": 11, + "value": "2" + }, + { + "type": "comma", + "start": 11, + "end": 12, + "value": "," + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "number", + "start": 13, + "end": 14, + "value": "3" + }, + { + "type": "brace", + "start": 14, + "end": 15, + "value": "]" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": "\n" + }, + { + "type": "word", + "start": 16, + "end": 17, + "value": "i" + }, + { + "type": "whitespace", + "start": 17, + "end": 18, + "value": " " + }, + { + "type": "operator", + "start": 18, + "end": 19, + "value": "=" + }, + { + "type": "whitespace", + "start": 19, + "end": 20, + "value": " " + }, + { + "type": "operator", + "start": 20, + "end": 21, + "value": "-" + }, + { + "type": "number", + "start": 21, + "end": 22, + "value": "1" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": "\n" + }, + { + "type": "word", + "start": 23, + "end": 24, + "value": "x" + }, + { + "type": "whitespace", + "start": 24, + "end": 25, + "value": " " + }, + { + "type": "operator", + "start": 25, + "end": 26, + "value": "=" + }, + { + "type": "whitespace", + "start": 26, + "end": 27, + "value": " " + }, + { + "type": "word", + "start": 27, + "end": 30, + "value": "arr" + }, + { + "type": "brace", + "start": 30, + "end": 31, + "value": "[" + }, + { + "type": "word", + "start": 31, + "end": 32, + "value": "i" + }, + { + "type": "brace", + "start": 32, + "end": 33, + "value": "]" + }, + { + "type": "whitespace", + "start": 33, + "end": 34, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/invalid_index_str/ast.snap b/src/wasm-lib/kcl/tests/invalid_index_str/ast.snap new file mode 100644 index 000000000..64b43737c --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_str/ast.snap @@ -0,0 +1,107 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing invalid_index_str.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 15, + "id": { + "end": 3, + "name": "arr", + "start": 0, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 8, + "raw": "1", + "start": 7, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 11, + "raw": "2", + "start": 10, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + { + "end": 14, + "raw": "3", + "start": 13, + "type": "Literal", + "type": "Literal", + "value": 3 + } + ], + "end": 15, + "start": 6, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 15, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 28, + "id": { + "end": 17, + "name": "x", + "start": 16, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 28, + "object": { + "end": 23, + "name": "arr", + "start": 20, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 27, + "raw": "\"s\"", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "s" + }, + "start": 20, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 16, + "type": "VariableDeclarator" + } + ], + "end": 28, + "kind": "const", + "start": 16, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 29, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/invalid_index_str/execution_error.snap b/src/wasm-lib/kcl/tests/invalid_index_str/execution_error.snap new file mode 100644 index 000000000..b890237a4 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_str/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing invalid_index_str.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([20, 28, 0])], message: "Only integers >= 0 can be used as the index of an array, but you're using a string" } diff --git a/src/wasm-lib/kcl/tests/invalid_index_str/input.kcl b/src/wasm-lib/kcl/tests/invalid_index_str/input.kcl new file mode 100644 index 000000000..20781cd73 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_str/input.kcl @@ -0,0 +1,2 @@ +arr = [1, 2, 3] +x = arr["s"] diff --git a/src/wasm-lib/kcl/tests/invalid_index_str/tokens.snap b/src/wasm-lib/kcl/tests/invalid_index_str/tokens.snap new file mode 100644 index 000000000..f91c9f208 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_index_str/tokens.snap @@ -0,0 +1,147 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing invalid_index_str.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "arr" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "[" + }, + { + "type": "number", + "start": 7, + "end": 8, + "value": "1" + }, + { + "type": "comma", + "start": 8, + "end": 9, + "value": "," + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "number", + "start": 10, + "end": 11, + "value": "2" + }, + { + "type": "comma", + "start": 11, + "end": 12, + "value": "," + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "number", + "start": 13, + "end": 14, + "value": "3" + }, + { + "type": "brace", + "start": 14, + "end": 15, + "value": "]" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": "\n" + }, + { + "type": "word", + "start": 16, + "end": 17, + "value": "x" + }, + { + "type": "whitespace", + "start": 17, + "end": 18, + "value": " " + }, + { + "type": "operator", + "start": 18, + "end": 19, + "value": "=" + }, + { + "type": "whitespace", + "start": 19, + "end": 20, + "value": " " + }, + { + "type": "word", + "start": 20, + "end": 23, + "value": "arr" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "[" + }, + { + "type": "string", + "start": 24, + "end": 27, + "value": "\"s\"" + }, + { + "type": "brace", + "start": 27, + "end": 28, + "value": "]" + }, + { + "type": "whitespace", + "start": 28, + "end": 29, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/invalid_member_object/ast.snap b/src/wasm-lib/kcl/tests/invalid_member_object/ast.snap new file mode 100644 index 000000000..828da0620 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object/ast.snap @@ -0,0 +1,83 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing invalid_member_object.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 9, + "id": { + "end": 3, + "name": "num", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 9, + "raw": "999", + "start": 6, + "type": "Literal", + "type": "Literal", + "value": 999 + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 9, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 20, + "id": { + "end": 11, + "name": "x", + "start": 10, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 20, + "object": { + "end": 17, + "name": "num", + "start": 14, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 19, + "raw": "3", + "start": 18, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + "start": 14, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 10, + "type": "VariableDeclarator" + } + ], + "end": 20, + "kind": "const", + "start": 10, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 21, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/invalid_member_object/execution_error.snap b/src/wasm-lib/kcl/tests/invalid_member_object/execution_error.snap new file mode 100644 index 000000000..0ccb14547 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing invalid_member_object.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([14, 20, 0])], message: "Only arrays and objects can be indexed, but you're trying to index an integer" } diff --git a/src/wasm-lib/kcl/tests/invalid_member_object/input.kcl b/src/wasm-lib/kcl/tests/invalid_member_object/input.kcl new file mode 100644 index 000000000..1875c80bf --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object/input.kcl @@ -0,0 +1,2 @@ +num = 999 +x = num[3] diff --git a/src/wasm-lib/kcl/tests/invalid_member_object/tokens.snap b/src/wasm-lib/kcl/tests/invalid_member_object/tokens.snap new file mode 100644 index 000000000..5a836da1d --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object/tokens.snap @@ -0,0 +1,99 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing invalid_member_object.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "num" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "number", + "start": 6, + "end": 9, + "value": "999" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": "\n" + }, + { + "type": "word", + "start": 10, + "end": 11, + "value": "x" + }, + { + "type": "whitespace", + "start": 11, + "end": 12, + "value": " " + }, + { + "type": "operator", + "start": 12, + "end": 13, + "value": "=" + }, + { + "type": "whitespace", + "start": 13, + "end": 14, + "value": " " + }, + { + "type": "word", + "start": 14, + "end": 17, + "value": "num" + }, + { + "type": "brace", + "start": 17, + "end": 18, + "value": "[" + }, + { + "type": "number", + "start": 18, + "end": 19, + "value": "3" + }, + { + "type": "brace", + "start": 19, + "end": 20, + "value": "]" + }, + { + "type": "whitespace", + "start": 20, + "end": 21, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/invalid_member_object_prop/ast.snap b/src/wasm-lib/kcl/tests/invalid_member_object_prop/ast.snap new file mode 100644 index 000000000..d8f5eef03 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object_prop/ast.snap @@ -0,0 +1,83 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing invalid_member_object_prop.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 8, + "id": { + "end": 1, + "name": "b", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 8, + "raw": "true", + "start": 4, + "type": "Literal", + "type": "Literal", + "value": true + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 8, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 26, + "id": { + "end": 10, + "name": "x", + "start": 9, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 26, + "object": { + "end": 14, + "name": "b", + "start": 13, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 25, + "raw": "\"property\"", + "start": 15, + "type": "Literal", + "type": "Literal", + "value": "property" + }, + "start": 13, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 9, + "type": "VariableDeclarator" + } + ], + "end": 26, + "kind": "const", + "start": 9, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 27, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/invalid_member_object_prop/execution_error.snap b/src/wasm-lib/kcl/tests/invalid_member_object_prop/execution_error.snap new file mode 100644 index 000000000..737cb69f8 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object_prop/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing invalid_member_object_prop.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([13, 26, 0])], message: "Only arrays and objects can be indexed, but you're trying to index a boolean (true/false value)" } diff --git a/src/wasm-lib/kcl/tests/invalid_member_object_prop/input.kcl b/src/wasm-lib/kcl/tests/invalid_member_object_prop/input.kcl new file mode 100644 index 000000000..7585a3495 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object_prop/input.kcl @@ -0,0 +1,2 @@ +b = true +x = b["property"] diff --git a/src/wasm-lib/kcl/tests/invalid_member_object_prop/tokens.snap b/src/wasm-lib/kcl/tests/invalid_member_object_prop/tokens.snap new file mode 100644 index 000000000..1f972fb86 --- /dev/null +++ b/src/wasm-lib/kcl/tests/invalid_member_object_prop/tokens.snap @@ -0,0 +1,99 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing invalid_member_object_prop.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 1, + "value": "b" + }, + { + "type": "whitespace", + "start": 1, + "end": 2, + "value": " " + }, + { + "type": "operator", + "start": 2, + "end": 3, + "value": "=" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "keyword", + "start": 4, + "end": 8, + "value": "true" + }, + { + "type": "whitespace", + "start": 8, + "end": 9, + "value": "\n" + }, + { + "type": "word", + "start": 9, + "end": 10, + "value": "x" + }, + { + "type": "whitespace", + "start": 10, + "end": 11, + "value": " " + }, + { + "type": "operator", + "start": 11, + "end": 12, + "value": "=" + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "word", + "start": 13, + "end": 14, + "value": "b" + }, + { + "type": "brace", + "start": 14, + "end": 15, + "value": "[" + }, + { + "type": "string", + "start": 15, + "end": 25, + "value": "\"property\"" + }, + { + "type": "brace", + "start": 25, + "end": 26, + "value": "]" + }, + { + "type": "whitespace", + "start": 26, + "end": 27, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/ast.snap b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/ast.snap new file mode 100644 index 000000000..669fd3166 --- /dev/null +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/ast.snap @@ -0,0 +1,588 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing linear_pattern3d_a_pattern.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 163, + "id": { + "end": 13, + "name": "exampleSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 34, + "raw": "'XZ'", + "start": 30, + "type": "Literal", + "type": "Literal", + "value": "XZ" + } + ], + "callee": { + "end": 29, + "name": "startSketchOn", + "start": 16, + "type": "Identifier" + }, + "end": 35, + "optional": false, + "start": 16, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58, + "raw": "0", + "start": 57, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 61, + "raw": "0", + "start": 60, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 62, + "start": 56, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65, + "start": 64, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55, + "name": "startProfileAt", + "start": 41, + "type": "Identifier" + }, + "end": 66, + "optional": false, + "start": 41, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 79, + "raw": "0", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 82, + "raw": "2", + "start": 81, + "type": "Literal", + "type": "Literal", + "value": 2 + } + ], + "end": 83, + "start": 77, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 86, + "start": 85, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "line", + "start": 72, + "type": "Identifier" + }, + "end": 87, + "optional": false, + "start": 72, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 100, + "raw": "3", + "start": 99, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + { + "end": 103, + "raw": "1", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 1 + } + ], + "end": 104, + "start": 98, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 107, + "start": 106, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 97, + "name": "line", + "start": 93, + "type": "Identifier" + }, + "end": 108, + "optional": false, + "start": 93, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 121, + "raw": "0", + "start": 120, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 125, + "raw": "4", + "start": 124, + "type": "Literal", + "type": "Literal", + "value": 4 + }, + "end": 125, + "operator": "-", + "start": 123, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 126, + "start": 119, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 129, + "start": 128, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 118, + "name": "line", + "start": 114, + "type": "Identifier" + }, + "end": 130, + "optional": false, + "start": 114, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 143, + "start": 142, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 141, + "name": "close", + "start": 136, + "type": "Identifier" + }, + "end": 144, + "optional": false, + "start": 136, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 159, + "raw": "1", + "start": 158, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 162, + "start": 161, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 157, + "name": "extrude", + "start": 150, + "type": "Identifier" + }, + "end": 163, + "optional": false, + "start": 150, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 163, + "start": 16, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 163, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 258, + "id": { + "end": 171, + "name": "pattn1", + "start": 165, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 242, + "properties": [ + { + "end": 209, + "key": { + "end": 198, + "name": "axis", + "start": 194, + "type": "Identifier" + }, + "start": 194, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 202, + "raw": "1", + "start": 201, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 205, + "raw": "0", + "start": 204, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 208, + "raw": "0", + "start": 207, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 209, + "start": 200, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 225, + "key": { + "end": 222, + "name": "instances", + "start": 213, + "type": "Identifier" + }, + "start": 213, + "type": "ObjectProperty", + "value": { + "end": 225, + "raw": "7", + "start": 224, + "type": "Literal", + "type": "Literal", + "value": 7 + } + }, + { + "end": 240, + "key": { + "end": 237, + "name": "distance", + "start": 229, + "type": "Identifier" + }, + "start": 229, + "type": "ObjectProperty", + "value": { + "end": 240, + "raw": "6", + "start": 239, + "type": "Literal", + "type": "Literal", + "value": 6 + } + } + ], + "start": 190, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 257, + "name": "exampleSketch", + "start": 244, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 189, + "name": "patternLinear3d", + "start": 174, + "type": "Identifier" + }, + "end": 258, + "optional": false, + "start": 174, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 165, + "type": "VariableDeclarator" + } + ], + "end": 258, + "kind": "const", + "start": 165, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 346, + "id": { + "end": 266, + "name": "pattn2", + "start": 260, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 337, + "properties": [ + { + "end": 304, + "key": { + "end": 293, + "name": "axis", + "start": 289, + "type": "Identifier" + }, + "start": 289, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 297, + "raw": "0", + "start": 296, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 300, + "raw": "0", + "start": 299, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 303, + "raw": "1", + "start": 302, + "type": "Literal", + "type": "Literal", + "value": 1 + } + ], + "end": 304, + "start": 295, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 319, + "key": { + "end": 316, + "name": "distance", + "start": 308, + "type": "Identifier" + }, + "start": 308, + "type": "ObjectProperty", + "value": { + "end": 319, + "raw": "1", + "start": 318, + "type": "Literal", + "type": "Literal", + "value": 1 + } + }, + { + "end": 335, + "key": { + "end": 332, + "name": "instances", + "start": 323, + "type": "Identifier" + }, + "start": 323, + "type": "ObjectProperty", + "value": { + "end": 335, + "raw": "7", + "start": 334, + "type": "Literal", + "type": "Literal", + "value": 7 + } + } + ], + "start": 285, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 345, + "name": "pattn1", + "start": 339, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 284, + "name": "patternLinear3d", + "start": 269, + "type": "Identifier" + }, + "end": 346, + "optional": false, + "start": 269, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 260, + "type": "VariableDeclarator" + } + ], + "end": 346, + "kind": "const", + "start": 260, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 347, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 165, + "start": 163, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "1": [ + { + "end": 260, + "start": 258, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/input.kcl b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/input.kcl new file mode 100644 index 000000000..50ae5fdd8 --- /dev/null +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/input.kcl @@ -0,0 +1,19 @@ +exampleSketch = startSketchOn('XZ') + |> startProfileAt([0, 0], %) + |> line([0, 2], %) + |> line([3, 1], %) + |> line([0, -4], %) + |> close(%) + |> extrude(1, %) + +pattn1 = patternLinear3d({ + axis: [1, 0, 0], + instances: 7, + distance: 6 +}, exampleSketch) + +pattn2 = patternLinear3d({ + axis: [0, 0, 1], + distance: 1, + instances: 7 +}, pattn1) 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 new file mode 100644 index 000000000..5f00ac548 --- /dev/null +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap @@ -0,0 +1,11561 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing linear_pattern3d_a_pattern.kcl +snapshot_kind: text +--- +{ + "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": [] + }, + "exampleSketch": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "pattn1": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + }, + "pattn2": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 108, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 130, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/rendered_model.png b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/rendered_model.png new file mode 100644 index 000000000..91c58188d Binary files /dev/null and b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/tokens.snap b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/tokens.snap new file mode 100644 index 000000000..f19ab0a52 --- /dev/null +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/tokens.snap @@ -0,0 +1,999 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing linear_pattern3d_a_pattern.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 13, + "value": "exampleSketch" + }, + { + "type": "whitespace", + "start": 13, + "end": 14, + "value": " " + }, + { + "type": "operator", + "start": 14, + "end": 15, + "value": "=" + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "word", + "start": 16, + "end": 29, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 29, + "end": 30, + "value": "(" + }, + { + "type": "string", + "start": 30, + "end": 34, + "value": "'XZ'" + }, + { + "type": "brace", + "start": 34, + "end": 35, + "value": ")" + }, + { + "type": "whitespace", + "start": 35, + "end": 38, + "value": "\n " + }, + { + "type": "operator", + "start": 38, + "end": 40, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40, + "end": 41, + "value": " " + }, + { + "type": "word", + "start": 41, + "end": 55, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "(" + }, + { + "type": "brace", + "start": 56, + "end": 57, + "value": "[" + }, + { + "type": "number", + "start": 57, + "end": 58, + "value": "0" + }, + { + "type": "comma", + "start": 58, + "end": 59, + "value": "," + }, + { + "type": "whitespace", + "start": 59, + "end": 60, + "value": " " + }, + { + "type": "number", + "start": 60, + "end": 61, + "value": "0" + }, + { + "type": "brace", + "start": 61, + "end": 62, + "value": "]" + }, + { + "type": "comma", + "start": 62, + "end": 63, + "value": "," + }, + { + "type": "whitespace", + "start": 63, + "end": 64, + "value": " " + }, + { + "type": "operator", + "start": 64, + "end": 65, + "value": "%" + }, + { + "type": "brace", + "start": 65, + "end": 66, + "value": ")" + }, + { + "type": "whitespace", + "start": 66, + "end": 69, + "value": "\n " + }, + { + "type": "operator", + "start": 69, + "end": 71, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71, + "end": 72, + "value": " " + }, + { + "type": "word", + "start": 72, + "end": 76, + "value": "line" + }, + { + "type": "brace", + "start": 76, + "end": 77, + "value": "(" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "[" + }, + { + "type": "number", + "start": 78, + "end": 79, + "value": "0" + }, + { + "type": "comma", + "start": 79, + "end": 80, + "value": "," + }, + { + "type": "whitespace", + "start": 80, + "end": 81, + "value": " " + }, + { + "type": "number", + "start": 81, + "end": 82, + "value": "2" + }, + { + "type": "brace", + "start": 82, + "end": 83, + "value": "]" + }, + { + "type": "comma", + "start": 83, + "end": 84, + "value": "," + }, + { + "type": "whitespace", + "start": 84, + "end": 85, + "value": " " + }, + { + "type": "operator", + "start": 85, + "end": 86, + "value": "%" + }, + { + "type": "brace", + "start": 86, + "end": 87, + "value": ")" + }, + { + "type": "whitespace", + "start": 87, + "end": 90, + "value": "\n " + }, + { + "type": "operator", + "start": 90, + "end": 92, + "value": "|>" + }, + { + "type": "whitespace", + "start": 92, + "end": 93, + "value": " " + }, + { + "type": "word", + "start": 93, + "end": 97, + "value": "line" + }, + { + "type": "brace", + "start": 97, + "end": 98, + "value": "(" + }, + { + "type": "brace", + "start": 98, + "end": 99, + "value": "[" + }, + { + "type": "number", + "start": 99, + "end": 100, + "value": "3" + }, + { + "type": "comma", + "start": 100, + "end": 101, + "value": "," + }, + { + "type": "whitespace", + "start": 101, + "end": 102, + "value": " " + }, + { + "type": "number", + "start": 102, + "end": 103, + "value": "1" + }, + { + "type": "brace", + "start": 103, + "end": 104, + "value": "]" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "operator", + "start": 106, + "end": 107, + "value": "%" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": ")" + }, + { + "type": "whitespace", + "start": 108, + "end": 111, + "value": "\n " + }, + { + "type": "operator", + "start": 111, + "end": 113, + "value": "|>" + }, + { + "type": "whitespace", + "start": 113, + "end": 114, + "value": " " + }, + { + "type": "word", + "start": 114, + "end": 118, + "value": "line" + }, + { + "type": "brace", + "start": 118, + "end": 119, + "value": "(" + }, + { + "type": "brace", + "start": 119, + "end": 120, + "value": "[" + }, + { + "type": "number", + "start": 120, + "end": 121, + "value": "0" + }, + { + "type": "comma", + "start": 121, + "end": 122, + "value": "," + }, + { + "type": "whitespace", + "start": 122, + "end": 123, + "value": " " + }, + { + "type": "operator", + "start": 123, + "end": 124, + "value": "-" + }, + { + "type": "number", + "start": 124, + "end": 125, + "value": "4" + }, + { + "type": "brace", + "start": 125, + "end": 126, + "value": "]" + }, + { + "type": "comma", + "start": 126, + "end": 127, + "value": "," + }, + { + "type": "whitespace", + "start": 127, + "end": 128, + "value": " " + }, + { + "type": "operator", + "start": 128, + "end": 129, + "value": "%" + }, + { + "type": "brace", + "start": 129, + "end": 130, + "value": ")" + }, + { + "type": "whitespace", + "start": 130, + "end": 133, + "value": "\n " + }, + { + "type": "operator", + "start": 133, + "end": 135, + "value": "|>" + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "word", + "start": 136, + "end": 141, + "value": "close" + }, + { + "type": "brace", + "start": 141, + "end": 142, + "value": "(" + }, + { + "type": "operator", + "start": 142, + "end": 143, + "value": "%" + }, + { + "type": "brace", + "start": 143, + "end": 144, + "value": ")" + }, + { + "type": "whitespace", + "start": 144, + "end": 147, + "value": "\n " + }, + { + "type": "operator", + "start": 147, + "end": 149, + "value": "|>" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "word", + "start": 150, + "end": 157, + "value": "extrude" + }, + { + "type": "brace", + "start": 157, + "end": 158, + "value": "(" + }, + { + "type": "number", + "start": 158, + "end": 159, + "value": "1" + }, + { + "type": "comma", + "start": 159, + "end": 160, + "value": "," + }, + { + "type": "whitespace", + "start": 160, + "end": 161, + "value": " " + }, + { + "type": "operator", + "start": 161, + "end": 162, + "value": "%" + }, + { + "type": "brace", + "start": 162, + "end": 163, + "value": ")" + }, + { + "type": "whitespace", + "start": 163, + "end": 165, + "value": "\n\n" + }, + { + "type": "word", + "start": 165, + "end": 171, + "value": "pattn1" + }, + { + "type": "whitespace", + "start": 171, + "end": 172, + "value": " " + }, + { + "type": "operator", + "start": 172, + "end": 173, + "value": "=" + }, + { + "type": "whitespace", + "start": 173, + "end": 174, + "value": " " + }, + { + "type": "word", + "start": 174, + "end": 189, + "value": "patternLinear3d" + }, + { + "type": "brace", + "start": 189, + "end": 190, + "value": "(" + }, + { + "type": "brace", + "start": 190, + "end": 191, + "value": "{" + }, + { + "type": "whitespace", + "start": 191, + "end": 194, + "value": "\n " + }, + { + "type": "word", + "start": 194, + "end": 198, + "value": "axis" + }, + { + "type": "colon", + "start": 198, + "end": 199, + "value": ":" + }, + { + "type": "whitespace", + "start": 199, + "end": 200, + "value": " " + }, + { + "type": "brace", + "start": 200, + "end": 201, + "value": "[" + }, + { + "type": "number", + "start": 201, + "end": 202, + "value": "1" + }, + { + "type": "comma", + "start": 202, + "end": 203, + "value": "," + }, + { + "type": "whitespace", + "start": 203, + "end": 204, + "value": " " + }, + { + "type": "number", + "start": 204, + "end": 205, + "value": "0" + }, + { + "type": "comma", + "start": 205, + "end": 206, + "value": "," + }, + { + "type": "whitespace", + "start": 206, + "end": 207, + "value": " " + }, + { + "type": "number", + "start": 207, + "end": 208, + "value": "0" + }, + { + "type": "brace", + "start": 208, + "end": 209, + "value": "]" + }, + { + "type": "comma", + "start": 209, + "end": 210, + "value": "," + }, + { + "type": "whitespace", + "start": 210, + "end": 213, + "value": "\n " + }, + { + "type": "word", + "start": 213, + "end": 222, + "value": "instances" + }, + { + "type": "colon", + "start": 222, + "end": 223, + "value": ":" + }, + { + "type": "whitespace", + "start": 223, + "end": 224, + "value": " " + }, + { + "type": "number", + "start": 224, + "end": 225, + "value": "7" + }, + { + "type": "comma", + "start": 225, + "end": 226, + "value": "," + }, + { + "type": "whitespace", + "start": 226, + "end": 229, + "value": "\n " + }, + { + "type": "word", + "start": 229, + "end": 237, + "value": "distance" + }, + { + "type": "colon", + "start": 237, + "end": 238, + "value": ":" + }, + { + "type": "whitespace", + "start": 238, + "end": 239, + "value": " " + }, + { + "type": "number", + "start": 239, + "end": 240, + "value": "6" + }, + { + "type": "whitespace", + "start": 240, + "end": 241, + "value": "\n" + }, + { + "type": "brace", + "start": 241, + "end": 242, + "value": "}" + }, + { + "type": "comma", + "start": 242, + "end": 243, + "value": "," + }, + { + "type": "whitespace", + "start": 243, + "end": 244, + "value": " " + }, + { + "type": "word", + "start": 244, + "end": 257, + "value": "exampleSketch" + }, + { + "type": "brace", + "start": 257, + "end": 258, + "value": ")" + }, + { + "type": "whitespace", + "start": 258, + "end": 260, + "value": "\n\n" + }, + { + "type": "word", + "start": 260, + "end": 266, + "value": "pattn2" + }, + { + "type": "whitespace", + "start": 266, + "end": 267, + "value": " " + }, + { + "type": "operator", + "start": 267, + "end": 268, + "value": "=" + }, + { + "type": "whitespace", + "start": 268, + "end": 269, + "value": " " + }, + { + "type": "word", + "start": 269, + "end": 284, + "value": "patternLinear3d" + }, + { + "type": "brace", + "start": 284, + "end": 285, + "value": "(" + }, + { + "type": "brace", + "start": 285, + "end": 286, + "value": "{" + }, + { + "type": "whitespace", + "start": 286, + "end": 289, + "value": "\n " + }, + { + "type": "word", + "start": 289, + "end": 293, + "value": "axis" + }, + { + "type": "colon", + "start": 293, + "end": 294, + "value": ":" + }, + { + "type": "whitespace", + "start": 294, + "end": 295, + "value": " " + }, + { + "type": "brace", + "start": 295, + "end": 296, + "value": "[" + }, + { + "type": "number", + "start": 296, + "end": 297, + "value": "0" + }, + { + "type": "comma", + "start": 297, + "end": 298, + "value": "," + }, + { + "type": "whitespace", + "start": 298, + "end": 299, + "value": " " + }, + { + "type": "number", + "start": 299, + "end": 300, + "value": "0" + }, + { + "type": "comma", + "start": 300, + "end": 301, + "value": "," + }, + { + "type": "whitespace", + "start": 301, + "end": 302, + "value": " " + }, + { + "type": "number", + "start": 302, + "end": 303, + "value": "1" + }, + { + "type": "brace", + "start": 303, + "end": 304, + "value": "]" + }, + { + "type": "comma", + "start": 304, + "end": 305, + "value": "," + }, + { + "type": "whitespace", + "start": 305, + "end": 308, + "value": "\n " + }, + { + "type": "word", + "start": 308, + "end": 316, + "value": "distance" + }, + { + "type": "colon", + "start": 316, + "end": 317, + "value": ":" + }, + { + "type": "whitespace", + "start": 317, + "end": 318, + "value": " " + }, + { + "type": "number", + "start": 318, + "end": 319, + "value": "1" + }, + { + "type": "comma", + "start": 319, + "end": 320, + "value": "," + }, + { + "type": "whitespace", + "start": 320, + "end": 323, + "value": "\n " + }, + { + "type": "word", + "start": 323, + "end": 332, + "value": "instances" + }, + { + "type": "colon", + "start": 332, + "end": 333, + "value": ":" + }, + { + "type": "whitespace", + "start": 333, + "end": 334, + "value": " " + }, + { + "type": "number", + "start": 334, + "end": 335, + "value": "7" + }, + { + "type": "whitespace", + "start": 335, + "end": 336, + "value": "\n" + }, + { + "type": "brace", + "start": 336, + "end": 337, + "value": "}" + }, + { + "type": "comma", + "start": 337, + "end": 338, + "value": "," + }, + { + "type": "whitespace", + "start": 338, + "end": 339, + "value": " " + }, + { + "type": "word", + "start": 339, + "end": 345, + "value": "pattn1" + }, + { + "type": "brace", + "start": 345, + "end": 346, + "value": ")" + }, + { + "type": "whitespace", + "start": 346, + "end": 347, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/ast.snap b/src/wasm-lib/kcl/tests/mike_stress_test/ast.snap new file mode 100644 index 000000000..549d3a333 --- /dev/null +++ b/src/wasm-lib/kcl/tests/mike_stress_test/ast.snap @@ -0,0 +1,51879 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing mike_stress_test.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 74115, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54, + "raw": "0.0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0.0 + }, + { + "end": 59, + "raw": "0.0", + "start": 56, + "type": "Literal", + "type": "Literal", + "value": 0.0 + } + ], + "end": 60, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63, + "start": 62, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 64, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 103, + "raw": "0.3670208139314082", + "start": 85, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 103, + "operator": "-", + "start": 84, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 131, + "raw": "0.21201331909674526", + "start": 112, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 138, + "start": 75, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 141, + "start": 140, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 74, + "name": "line", + "start": 70, + "type": "Identifier" + }, + "end": 142, + "optional": false, + "start": 70, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 181, + "raw": "0.4707511307971115", + "start": 163, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 181, + "operator": "-", + "start": 162, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 208, + "raw": "0.4905279615419764", + "start": 190, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 215, + "start": 153, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 218, + "start": 217, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 152, + "name": "line", + "start": 148, + "type": "Identifier" + }, + "end": 219, + "optional": false, + "start": 148, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 258, + "raw": "0.8328324229085962", + "start": 240, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 258, + "operator": "-", + "start": 239, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 285, + "raw": "0.4677492878818803", + "start": 267, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 292, + "start": 230, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 295, + "start": 294, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 229, + "name": "line", + "start": 225, + "type": "Identifier" + }, + "end": 296, + "optional": false, + "start": 225, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 335, + "raw": "0.8111463382182231", + "start": 317, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 335, + "operator": "-", + "start": 316, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 364, + "raw": "0.41814807547140576", + "start": 345, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 364, + "operator": "-", + "start": 344, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 371, + "start": 307, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 374, + "start": 373, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 306, + "name": "line", + "start": 302, + "type": "Identifier" + }, + "end": 375, + "optional": false, + "start": 302, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 414, + "raw": "0.03807684940941125", + "start": 395, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 442, + "raw": "0.25664826686353326", + "start": 423, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 449, + "start": 386, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 452, + "start": 451, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 385, + "name": "line", + "start": 381, + "type": "Identifier" + }, + "end": 453, + "optional": false, + "start": 381, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 492, + "raw": "0.23950083339596384", + "start": 473, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 520, + "raw": "0.43693196301855575", + "start": 501, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 527, + "start": 464, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 530, + "start": 529, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 463, + "name": "line", + "start": 459, + "type": "Identifier" + }, + "end": 531, + "optional": false, + "start": 459, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 571, + "raw": "0.16279444820904887", + "start": 552, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 571, + "operator": "-", + "start": 551, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 598, + "raw": "0.8064475707664818", + "start": 580, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 605, + "start": 542, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 608, + "start": 607, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 541, + "name": "line", + "start": 537, + "type": "Identifier" + }, + "end": 609, + "optional": false, + "start": 537, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 649, + "raw": "0.08972872009232558", + "start": 630, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 649, + "operator": "-", + "start": 629, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 678, + "raw": "0.08887625823751266", + "start": 659, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 678, + "operator": "-", + "start": 658, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 685, + "start": 620, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 688, + "start": 687, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 619, + "name": "line", + "start": 615, + "type": "Identifier" + }, + "end": 689, + "optional": false, + "start": 615, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 727, + "raw": "0.9203433427102556", + "start": 709, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 756, + "raw": "0.17343459369697545", + "start": 737, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 756, + "operator": "-", + "start": 736, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 763, + "start": 700, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 766, + "start": 765, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 699, + "name": "line", + "start": 695, + "type": "Identifier" + }, + "end": 767, + "optional": false, + "start": 695, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 808, + "raw": "0.0017496234414517975", + "start": 787, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 836, + "raw": "0.5178508316168335", + "start": 818, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 836, + "operator": "-", + "start": 817, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 843, + "start": 778, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 846, + "start": 845, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 777, + "name": "line", + "start": 773, + "type": "Identifier" + }, + "end": 847, + "optional": false, + "start": 773, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 885, + "raw": "0.6206263405732759", + "start": 867, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 913, + "raw": "0.8733399468665124", + "start": 895, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 913, + "operator": "-", + "start": 894, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 920, + "start": 858, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 923, + "start": 922, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 857, + "name": "line", + "start": 853, + "type": "Identifier" + }, + "end": 924, + "optional": false, + "start": 853, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 963, + "raw": "0.7776386664456383", + "start": 945, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 963, + "operator": "-", + "start": 944, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 990, + "raw": "0.7602780485384968", + "start": 972, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 997, + "start": 935, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1000, + "start": 999, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 934, + "name": "line", + "start": 930, + "type": "Identifier" + }, + "end": 1001, + "optional": false, + "start": 930, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1031, + "raw": "0.5439379760788592", + "start": 1013, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 1051, + "raw": "0.8449177589350552", + "start": 1033, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 1052, + "start": 1012, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1055, + "start": 1054, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1011, + "name": "line", + "start": 1007, + "type": "Identifier" + }, + "end": 1056, + "optional": false, + "start": 1007, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1096, + "raw": "0.13036646025917076", + "start": 1077, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 1096, + "operator": "-", + "start": 1076, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 1125, + "raw": "0.012051713627069693", + "start": 1105, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 1132, + "start": 1067, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1135, + "start": 1134, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1066, + "name": "line", + "start": 1062, + "type": "Identifier" + }, + "end": 1136, + "optional": false, + "start": 1062, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1175, + "raw": "0.1656465612645519", + "start": 1157, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 1175, + "operator": "-", + "start": 1156, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 1204, + "raw": "0.20775229173765486", + "start": 1185, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 1204, + "operator": "-", + "start": 1184, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1211, + "start": 1147, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1214, + "start": 1213, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1146, + "name": "line", + "start": 1142, + "type": "Identifier" + }, + "end": 1215, + "optional": false, + "start": 1142, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1254, + "raw": "0.0962723255929061", + "start": 1236, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 1254, + "operator": "-", + "start": 1235, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 1283, + "raw": "0.05417797659066137", + "start": 1264, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 1283, + "operator": "-", + "start": 1263, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1290, + "start": 1226, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1293, + "start": 1292, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1225, + "name": "line", + "start": 1221, + "type": "Identifier" + }, + "end": 1294, + "optional": false, + "start": 1221, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1323, + "raw": "0.902108945498191", + "start": 1306, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 1343, + "raw": "0.3958978534964961", + "start": 1325, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 1344, + "start": 1305, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1347, + "start": 1346, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1304, + "name": "line", + "start": 1300, + "type": "Identifier" + }, + "end": 1348, + "optional": false, + "start": 1300, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1387, + "raw": "0.27997950083139167", + "start": 1368, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 1416, + "raw": "0.17778188444008958", + "start": 1397, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 1416, + "operator": "-", + "start": 1396, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1423, + "start": 1359, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1426, + "start": 1425, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1358, + "name": "line", + "start": 1354, + "type": "Identifier" + }, + "end": 1427, + "optional": false, + "start": 1354, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1457, + "raw": "0.5235806061589545", + "start": 1439, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 1476, + "raw": "0.694318985642328", + "start": 1459, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 1477, + "start": 1438, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1480, + "start": 1479, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1437, + "name": "line", + "start": 1433, + "type": "Identifier" + }, + "end": 1481, + "optional": false, + "start": 1433, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1520, + "raw": "0.39140760219992154", + "start": 1501, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 1548, + "raw": "0.7839795272576484", + "start": 1530, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 1548, + "operator": "-", + "start": 1529, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1555, + "start": 1492, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1558, + "start": 1557, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1491, + "name": "line", + "start": 1487, + "type": "Identifier" + }, + "end": 1559, + "optional": false, + "start": 1487, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1589, + "raw": "0.8414243527073519", + "start": 1571, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 1609, + "raw": "0.5395591528940082", + "start": 1591, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 1610, + "start": 1570, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1613, + "start": 1612, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1569, + "name": "line", + "start": 1565, + "type": "Identifier" + }, + "end": 1614, + "optional": false, + "start": 1565, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1652, + "raw": "0.6137667704875602", + "start": 1634, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 1680, + "raw": "0.22119647516722085", + "start": 1661, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 1687, + "start": 1625, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1690, + "start": 1689, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1624, + "name": "line", + "start": 1620, + "type": "Identifier" + }, + "end": 1691, + "optional": false, + "start": 1620, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1721, + "raw": "0.8830488380766681", + "start": 1703, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 1741, + "raw": "0.6996724408425232", + "start": 1723, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 1742, + "start": 1702, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1745, + "start": 1744, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1701, + "name": "line", + "start": 1697, + "type": "Identifier" + }, + "end": 1746, + "optional": false, + "start": 1697, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1786, + "raw": "0.41290485754343953", + "start": 1767, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 1786, + "operator": "-", + "start": 1766, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 1814, + "raw": "0.4152647361760933", + "start": 1796, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 1814, + "operator": "-", + "start": 1795, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1821, + "start": 1757, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1824, + "start": 1823, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1756, + "name": "line", + "start": 1752, + "type": "Identifier" + }, + "end": 1825, + "optional": false, + "start": 1752, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1863, + "raw": "0.5169538755575687", + "start": 1845, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 1891, + "raw": "0.9085567867302617", + "start": 1873, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 1891, + "operator": "-", + "start": 1872, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1898, + "start": 1836, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1901, + "start": 1900, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1835, + "name": "line", + "start": 1831, + "type": "Identifier" + }, + "end": 1902, + "optional": false, + "start": 1831, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1941, + "raw": "0.6716353749059765", + "start": 1923, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 1941, + "operator": "-", + "start": 1922, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 1969, + "raw": "0.9605576808879026", + "start": 1951, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 1969, + "operator": "-", + "start": 1950, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1976, + "start": 1913, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1979, + "start": 1978, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1912, + "name": "line", + "start": 1908, + "type": "Identifier" + }, + "end": 1980, + "optional": false, + "start": 1908, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2020, + "raw": "0.010280170930300203", + "start": 2000, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 2049, + "raw": "0.37344123662342166", + "start": 2030, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 2049, + "operator": "-", + "start": 2029, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2056, + "start": 1991, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2059, + "start": 2058, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1990, + "name": "line", + "start": 1986, + "type": "Identifier" + }, + "end": 2060, + "optional": false, + "start": 1986, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2099, + "raw": "0.10357375682791004", + "start": 2080, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 2128, + "raw": "0.42294321030821425", + "start": 2109, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 2128, + "operator": "-", + "start": 2108, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2135, + "start": 2071, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2138, + "start": 2137, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2070, + "name": "line", + "start": 2066, + "type": "Identifier" + }, + "end": 2139, + "optional": false, + "start": 2066, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2177, + "raw": "0.4520311575096987", + "start": 2159, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 2206, + "raw": "0.11232675307600548", + "start": 2187, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 2206, + "operator": "-", + "start": 2186, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2213, + "start": 2150, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2216, + "start": 2215, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2149, + "name": "line", + "start": 2145, + "type": "Identifier" + }, + "end": 2217, + "optional": false, + "start": 2145, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 2256, + "raw": "0.8821185914380845", + "start": 2238, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 2256, + "operator": "-", + "start": 2237, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 2284, + "raw": "0.7155147434939819", + "start": 2266, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 2284, + "operator": "-", + "start": 2265, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2291, + "start": 2228, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2294, + "start": 2293, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2227, + "name": "line", + "start": 2223, + "type": "Identifier" + }, + "end": 2295, + "optional": false, + "start": 2223, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2325, + "raw": "0.9195487101690416", + "start": 2307, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 2345, + "raw": "0.2691627465297364", + "start": 2327, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 2346, + "start": 2306, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2349, + "start": 2348, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2305, + "name": "line", + "start": 2301, + "type": "Identifier" + }, + "end": 2350, + "optional": false, + "start": 2301, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2388, + "raw": "0.7098978191546745", + "start": 2370, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 2416, + "raw": "0.11710004169385968", + "start": 2397, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 2423, + "start": 2361, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2426, + "start": 2425, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2360, + "name": "line", + "start": 2356, + "type": "Identifier" + }, + "end": 2427, + "optional": false, + "start": 2356, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 2467, + "raw": "0.37876368560819995", + "start": 2448, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 2467, + "operator": "-", + "start": 2447, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 2494, + "raw": "0.7106729314759084", + "start": 2476, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 2501, + "start": 2438, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2504, + "start": 2503, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2437, + "name": "line", + "start": 2433, + "type": "Identifier" + }, + "end": 2505, + "optional": false, + "start": 2433, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 2545, + "raw": "0.29728126898353335", + "start": 2526, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 2545, + "operator": "-", + "start": 2525, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 2574, + "raw": "0.06649734568328003", + "start": 2555, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 2574, + "operator": "-", + "start": 2554, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2581, + "start": 2516, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2584, + "start": 2583, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2515, + "name": "line", + "start": 2511, + "type": "Identifier" + }, + "end": 2585, + "optional": false, + "start": 2511, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2624, + "raw": "0.22965781558352072", + "start": 2605, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 2652, + "raw": "0.7601866432836641", + "start": 2634, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 2652, + "operator": "-", + "start": 2633, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2659, + "start": 2596, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2662, + "start": 2661, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2595, + "name": "line", + "start": 2591, + "type": "Identifier" + }, + "end": 2663, + "optional": false, + "start": 2591, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 2702, + "raw": "0.6356501074317229", + "start": 2684, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 2702, + "operator": "-", + "start": 2683, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 2730, + "raw": "0.19458425399338064", + "start": 2711, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 2737, + "start": 2674, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2740, + "start": 2739, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2673, + "name": "line", + "start": 2669, + "type": "Identifier" + }, + "end": 2741, + "optional": false, + "start": 2669, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2771, + "raw": "0.5721251777404546", + "start": 2753, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 2791, + "raw": "0.2888584097921527", + "start": 2773, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 2792, + "start": 2752, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2795, + "start": 2794, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2751, + "name": "line", + "start": 2747, + "type": "Identifier" + }, + "end": 2796, + "optional": false, + "start": 2747, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 2835, + "raw": "0.9580409549552311", + "start": 2817, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 2835, + "operator": "-", + "start": 2816, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 2864, + "raw": "0.02243818192078395", + "start": 2845, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 2864, + "operator": "-", + "start": 2844, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2871, + "start": 2807, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2874, + "start": 2873, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2806, + "name": "line", + "start": 2802, + "type": "Identifier" + }, + "end": 2875, + "optional": false, + "start": 2802, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2913, + "raw": "0.3299184618602866", + "start": 2895, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 2941, + "raw": "0.8353726942369875", + "start": 2923, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 2941, + "operator": "-", + "start": 2922, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 2948, + "start": 2886, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 2951, + "start": 2950, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2885, + "name": "line", + "start": 2881, + "type": "Identifier" + }, + "end": 2952, + "optional": false, + "start": 2881, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 2990, + "raw": "0.7434639386755209", + "start": 2972, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 3018, + "raw": "0.7919648864138378", + "start": 3000, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 3018, + "operator": "-", + "start": 2999, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 3025, + "start": 2963, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3028, + "start": 3027, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 2962, + "name": "line", + "start": 2958, + "type": "Identifier" + }, + "end": 3029, + "optional": false, + "start": 2958, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 3059, + "raw": "0.9935751011164615", + "start": 3041, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 3079, + "raw": "0.9042566468497608", + "start": 3061, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 3080, + "start": 3040, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3083, + "start": 3082, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3039, + "name": "line", + "start": 3035, + "type": "Identifier" + }, + "end": 3084, + "optional": false, + "start": 3035, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3123, + "raw": "0.5035812884687294", + "start": 3105, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 3123, + "operator": "-", + "start": 3104, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 3150, + "raw": "0.5150967434989442", + "start": 3132, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 3157, + "start": 3095, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3160, + "start": 3159, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3094, + "name": "line", + "start": 3090, + "type": "Identifier" + }, + "end": 3161, + "optional": false, + "start": 3090, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 3191, + "raw": "0.5526227215900215", + "start": 3173, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 3211, + "raw": "0.7612604137272441", + "start": 3193, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 3212, + "start": 3172, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3215, + "start": 3214, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3171, + "name": "line", + "start": 3167, + "type": "Identifier" + }, + "end": 3216, + "optional": false, + "start": 3167, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 3254, + "raw": "0.8593271349126876", + "start": 3236, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 3282, + "raw": "0.08414894953725849", + "start": 3263, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 3289, + "start": 3227, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3292, + "start": 3291, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3226, + "name": "line", + "start": 3222, + "type": "Identifier" + }, + "end": 3293, + "optional": false, + "start": 3222, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3332, + "raw": "0.8181049219192864", + "start": 3314, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 3332, + "operator": "-", + "start": 3313, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 3359, + "raw": "0.903548131323352", + "start": 3342, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 3359, + "operator": "-", + "start": 3341, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 3366, + "start": 3304, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3369, + "start": 3368, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3303, + "name": "line", + "start": 3299, + "type": "Identifier" + }, + "end": 3370, + "optional": false, + "start": 3299, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 3408, + "raw": "0.3165782044458305", + "start": 3390, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 3437, + "raw": "0.24189274252014914", + "start": 3418, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 3437, + "operator": "-", + "start": 3417, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 3444, + "start": 3381, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3447, + "start": 3446, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3380, + "name": "line", + "start": 3376, + "type": "Identifier" + }, + "end": 3448, + "optional": false, + "start": 3376, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3488, + "raw": "0.44390956414045135", + "start": 3469, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 3488, + "operator": "-", + "start": 3468, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 3517, + "raw": "0.25912591535126905", + "start": 3498, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 3517, + "operator": "-", + "start": 3497, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 3524, + "start": 3459, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3527, + "start": 3526, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3458, + "name": "line", + "start": 3454, + "type": "Identifier" + }, + "end": 3528, + "optional": false, + "start": 3454, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3567, + "raw": "0.6605165911891009", + "start": 3549, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 3567, + "operator": "-", + "start": 3548, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 3596, + "raw": "0.40355115288839194", + "start": 3577, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 3596, + "operator": "-", + "start": 3576, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 3603, + "start": 3539, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3606, + "start": 3605, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3538, + "name": "line", + "start": 3534, + "type": "Identifier" + }, + "end": 3607, + "optional": false, + "start": 3534, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3646, + "raw": "0.7170489950180006", + "start": 3628, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 3646, + "operator": "-", + "start": 3627, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 3674, + "raw": "0.23454356079651384", + "start": 3655, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 3681, + "start": 3618, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3684, + "start": 3683, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3617, + "name": "line", + "start": 3613, + "type": "Identifier" + }, + "end": 3685, + "optional": false, + "start": 3613, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3724, + "raw": "0.2568187045379722", + "start": 3706, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 3724, + "operator": "-", + "start": 3705, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 3753, + "raw": "0.45031188717601367", + "start": 3734, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 3753, + "operator": "-", + "start": 3733, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 3760, + "start": 3696, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3763, + "start": 3762, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3695, + "name": "line", + "start": 3691, + "type": "Identifier" + }, + "end": 3764, + "optional": false, + "start": 3691, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 3802, + "raw": "0.6751951211858687", + "start": 3784, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 3830, + "raw": "0.9709424233465593", + "start": 3812, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 3830, + "operator": "-", + "start": 3811, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 3837, + "start": 3775, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3840, + "start": 3839, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3774, + "name": "line", + "start": 3770, + "type": "Identifier" + }, + "end": 3841, + "optional": false, + "start": 3770, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3880, + "raw": "0.5689619842972184", + "start": 3862, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 3880, + "operator": "-", + "start": 3861, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 3907, + "raw": "0.5918969913790362", + "start": 3889, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 3914, + "start": 3852, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3917, + "start": 3916, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3851, + "name": "line", + "start": 3847, + "type": "Identifier" + }, + "end": 3918, + "optional": false, + "start": 3847, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 3957, + "raw": "0.8328324229085962", + "start": 3939, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 3957, + "operator": "-", + "start": 3938, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 3984, + "raw": "0.4677492878818803", + "start": 3966, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 3991, + "start": 3929, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 3994, + "start": 3993, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 3928, + "name": "line", + "start": 3924, + "type": "Identifier" + }, + "end": 3995, + "optional": false, + "start": 3924, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 4034, + "raw": "0.8111463382182231", + "start": 4016, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 4034, + "operator": "-", + "start": 4015, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 4063, + "raw": "0.41814807547140576", + "start": 4044, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 4063, + "operator": "-", + "start": 4043, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 4070, + "start": 4006, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4073, + "start": 4072, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4005, + "name": "line", + "start": 4001, + "type": "Identifier" + }, + "end": 4074, + "optional": false, + "start": 4001, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 4113, + "raw": "0.03807684940941125", + "start": 4094, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 4141, + "raw": "0.25664826686353326", + "start": 4122, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 4148, + "start": 4085, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4151, + "start": 4150, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4084, + "name": "line", + "start": 4080, + "type": "Identifier" + }, + "end": 4152, + "optional": false, + "start": 4080, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 4191, + "raw": "0.23950083339596384", + "start": 4172, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 4219, + "raw": "0.43693196301855575", + "start": 4200, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 4226, + "start": 4163, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4229, + "start": 4228, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4162, + "name": "line", + "start": 4158, + "type": "Identifier" + }, + "end": 4230, + "optional": false, + "start": 4158, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 4270, + "raw": "0.16279444820904887", + "start": 4251, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 4270, + "operator": "-", + "start": 4250, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 4297, + "raw": "0.8064475707664818", + "start": 4279, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 4304, + "start": 4241, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4307, + "start": 4306, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4240, + "name": "line", + "start": 4236, + "type": "Identifier" + }, + "end": 4308, + "optional": false, + "start": 4236, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 4348, + "raw": "0.08972872009232558", + "start": 4329, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 4348, + "operator": "-", + "start": 4328, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 4377, + "raw": "0.08887625823751266", + "start": 4358, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 4377, + "operator": "-", + "start": 4357, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 4384, + "start": 4319, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4387, + "start": 4386, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4318, + "name": "line", + "start": 4314, + "type": "Identifier" + }, + "end": 4388, + "optional": false, + "start": 4314, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 4426, + "raw": "0.9203433427102556", + "start": 4408, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 4455, + "raw": "0.17343459369697545", + "start": 4436, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 4455, + "operator": "-", + "start": 4435, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 4462, + "start": 4399, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4465, + "start": 4464, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4398, + "name": "line", + "start": 4394, + "type": "Identifier" + }, + "end": 4466, + "optional": false, + "start": 4394, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 4507, + "raw": "0.0017496234414517975", + "start": 4486, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 4535, + "raw": "0.5178508316168335", + "start": 4517, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 4535, + "operator": "-", + "start": 4516, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 4542, + "start": 4477, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4545, + "start": 4544, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4476, + "name": "line", + "start": 4472, + "type": "Identifier" + }, + "end": 4546, + "optional": false, + "start": 4472, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 4584, + "raw": "0.6206263405732759", + "start": 4566, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 4612, + "raw": "0.8733399468665124", + "start": 4594, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 4612, + "operator": "-", + "start": 4593, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 4619, + "start": 4557, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4622, + "start": 4621, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4556, + "name": "line", + "start": 4552, + "type": "Identifier" + }, + "end": 4623, + "optional": false, + "start": 4552, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 4662, + "raw": "0.7776386664456383", + "start": 4644, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 4662, + "operator": "-", + "start": 4643, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 4689, + "raw": "0.7602780485384968", + "start": 4671, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 4696, + "start": 4634, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4699, + "start": 4698, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4633, + "name": "line", + "start": 4629, + "type": "Identifier" + }, + "end": 4700, + "optional": false, + "start": 4629, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 4730, + "raw": "0.5439379760788592", + "start": 4712, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 4750, + "raw": "0.8449177589350552", + "start": 4732, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 4751, + "start": 4711, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4754, + "start": 4753, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4710, + "name": "line", + "start": 4706, + "type": "Identifier" + }, + "end": 4755, + "optional": false, + "start": 4706, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 4795, + "raw": "0.13036646025917076", + "start": 4776, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 4795, + "operator": "-", + "start": 4775, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 4824, + "raw": "0.012051713627069693", + "start": 4804, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 4831, + "start": 4766, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4834, + "start": 4833, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4765, + "name": "line", + "start": 4761, + "type": "Identifier" + }, + "end": 4835, + "optional": false, + "start": 4761, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 4874, + "raw": "0.1656465612645519", + "start": 4856, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 4874, + "operator": "-", + "start": 4855, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 4903, + "raw": "0.20775229173765486", + "start": 4884, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 4903, + "operator": "-", + "start": 4883, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 4910, + "start": 4846, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4913, + "start": 4912, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4845, + "name": "line", + "start": 4841, + "type": "Identifier" + }, + "end": 4914, + "optional": false, + "start": 4841, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 4953, + "raw": "0.0962723255929061", + "start": 4935, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 4953, + "operator": "-", + "start": 4934, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 4982, + "raw": "0.05417797659066137", + "start": 4963, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 4982, + "operator": "-", + "start": 4962, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 4989, + "start": 4925, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 4992, + "start": 4991, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 4924, + "name": "line", + "start": 4920, + "type": "Identifier" + }, + "end": 4993, + "optional": false, + "start": 4920, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5022, + "raw": "0.902108945498191", + "start": 5005, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 5042, + "raw": "0.3958978534964961", + "start": 5024, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 5043, + "start": 5004, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5046, + "start": 5045, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5003, + "name": "line", + "start": 4999, + "type": "Identifier" + }, + "end": 5047, + "optional": false, + "start": 4999, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5086, + "raw": "0.27997950083139167", + "start": 5067, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 5115, + "raw": "0.17778188444008958", + "start": 5096, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 5115, + "operator": "-", + "start": 5095, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 5122, + "start": 5058, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5125, + "start": 5124, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5057, + "name": "line", + "start": 5053, + "type": "Identifier" + }, + "end": 5126, + "optional": false, + "start": 5053, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5156, + "raw": "0.5235806061589545", + "start": 5138, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 5175, + "raw": "0.694318985642328", + "start": 5158, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 5176, + "start": 5137, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5179, + "start": 5178, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5136, + "name": "line", + "start": 5132, + "type": "Identifier" + }, + "end": 5180, + "optional": false, + "start": 5132, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5219, + "raw": "0.39140760219992154", + "start": 5200, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 5247, + "raw": "0.7839795272576484", + "start": 5229, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 5247, + "operator": "-", + "start": 5228, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 5254, + "start": 5191, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5257, + "start": 5256, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5190, + "name": "line", + "start": 5186, + "type": "Identifier" + }, + "end": 5258, + "optional": false, + "start": 5186, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5288, + "raw": "0.8414243527073519", + "start": 5270, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 5308, + "raw": "0.5395591528940082", + "start": 5290, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 5309, + "start": 5269, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5312, + "start": 5311, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5268, + "name": "line", + "start": 5264, + "type": "Identifier" + }, + "end": 5313, + "optional": false, + "start": 5264, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5351, + "raw": "0.6137667704875602", + "start": 5333, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 5379, + "raw": "0.22119647516722085", + "start": 5360, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 5386, + "start": 5324, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5389, + "start": 5388, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5323, + "name": "line", + "start": 5319, + "type": "Identifier" + }, + "end": 5390, + "optional": false, + "start": 5319, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5420, + "raw": "0.8830488380766681", + "start": 5402, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 5440, + "raw": "0.6996724408425232", + "start": 5422, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 5441, + "start": 5401, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5444, + "start": 5443, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5400, + "name": "line", + "start": 5396, + "type": "Identifier" + }, + "end": 5445, + "optional": false, + "start": 5396, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 5485, + "raw": "0.41290485754343953", + "start": 5466, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 5485, + "operator": "-", + "start": 5465, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 5513, + "raw": "0.4152647361760933", + "start": 5495, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 5513, + "operator": "-", + "start": 5494, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 5520, + "start": 5456, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5523, + "start": 5522, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5455, + "name": "line", + "start": 5451, + "type": "Identifier" + }, + "end": 5524, + "optional": false, + "start": 5451, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5562, + "raw": "0.5169538755575687", + "start": 5544, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 5590, + "raw": "0.9085567867302617", + "start": 5572, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 5590, + "operator": "-", + "start": 5571, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 5597, + "start": 5535, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5600, + "start": 5599, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5534, + "name": "line", + "start": 5530, + "type": "Identifier" + }, + "end": 5601, + "optional": false, + "start": 5530, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5639, + "raw": "0.6751951211858687", + "start": 5621, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 5667, + "raw": "0.9709424233465593", + "start": 5649, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 5667, + "operator": "-", + "start": 5648, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 5674, + "start": 5612, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5677, + "start": 5676, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5611, + "name": "line", + "start": 5607, + "type": "Identifier" + }, + "end": 5678, + "optional": false, + "start": 5607, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 5717, + "raw": "0.5689619842972184", + "start": 5699, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 5717, + "operator": "-", + "start": 5698, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 5744, + "raw": "0.5918969913790362", + "start": 5726, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 5751, + "start": 5689, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5754, + "start": 5753, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5688, + "name": "line", + "start": 5684, + "type": "Identifier" + }, + "end": 5755, + "optional": false, + "start": 5684, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5793, + "raw": "0.9464450621708211", + "start": 5775, + "type": "Literal", + "type": "Literal", + "value": 0.9464450621708211 + }, + { + "argument": { + "end": 5821, + "raw": "0.2684908127803667", + "start": 5803, + "type": "Literal", + "type": "Literal", + "value": 0.2684908127803667 + }, + "end": 5821, + "operator": "-", + "start": 5802, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 5828, + "start": 5766, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5831, + "start": 5830, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5765, + "name": "line", + "start": 5761, + "type": "Identifier" + }, + "end": 5832, + "optional": false, + "start": 5761, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 5862, + "raw": "0.5241732366617591", + "start": 5844, + "type": "Literal", + "type": "Literal", + "value": 0.5241732366617591 + }, + { + "end": 5882, + "raw": "0.9011437416408563", + "start": 5864, + "type": "Literal", + "type": "Literal", + "value": 0.9011437416408563 + } + ], + "end": 5883, + "start": 5843, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5886, + "start": 5885, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5842, + "name": "line", + "start": 5838, + "type": "Identifier" + }, + "end": 5887, + "optional": false, + "start": 5838, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 5927, + "raw": "0.14255393713960607", + "start": 5908, + "type": "Literal", + "type": "Literal", + "value": 0.14255393713960607 + }, + "end": 5927, + "operator": "-", + "start": 5907, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 5955, + "raw": "0.5194262624564814", + "start": 5937, + "type": "Literal", + "type": "Literal", + "value": 0.5194262624564814 + }, + "end": 5955, + "operator": "-", + "start": 5936, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 5962, + "start": 5898, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 5965, + "start": 5964, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5897, + "name": "line", + "start": 5893, + "type": "Identifier" + }, + "end": 5966, + "optional": false, + "start": 5893, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 6005, + "raw": "0.4287123231350338", + "start": 5987, + "type": "Literal", + "type": "Literal", + "value": 0.4287123231350338 + }, + "end": 6005, + "operator": "-", + "start": 5986, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 6033, + "raw": "0.4223564528725028", + "start": 6015, + "type": "Literal", + "type": "Literal", + "value": 0.4223564528725028 + }, + "end": 6033, + "operator": "-", + "start": 6014, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 6040, + "start": 5977, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6043, + "start": 6042, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 5976, + "name": "line", + "start": 5972, + "type": "Identifier" + }, + "end": 6044, + "optional": false, + "start": 5972, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 6084, + "raw": "0.09316367294024519", + "start": 6065, + "type": "Literal", + "type": "Literal", + "value": 0.09316367294024519 + }, + "end": 6084, + "operator": "-", + "start": 6064, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 6112, + "raw": "0.9063127021008246", + "start": 6094, + "type": "Literal", + "type": "Literal", + "value": 0.9063127021008246 + }, + "end": 6112, + "operator": "-", + "start": 6093, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 6119, + "start": 6055, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6122, + "start": 6121, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6054, + "name": "line", + "start": 6050, + "type": "Identifier" + }, + "end": 6123, + "optional": false, + "start": 6050, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 6162, + "raw": "0.2767766535558669", + "start": 6144, + "type": "Literal", + "type": "Literal", + "value": 0.2767766535558669 + }, + "end": 6162, + "operator": "-", + "start": 6143, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 6189, + "raw": "0.6816248114129131", + "start": 6171, + "type": "Literal", + "type": "Literal", + "value": 0.6816248114129131 + } + ], + "end": 6196, + "start": 6134, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6199, + "start": 6198, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6133, + "name": "line", + "start": 6129, + "type": "Identifier" + }, + "end": 6200, + "optional": false, + "start": 6129, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6238, + "raw": "0.9796762495562534", + "start": 6220, + "type": "Literal", + "type": "Literal", + "value": 0.9796762495562534 + }, + { + "argument": { + "end": 6266, + "raw": "0.0822145668330625", + "start": 6248, + "type": "Literal", + "type": "Literal", + "value": 0.0822145668330625 + }, + "end": 6266, + "operator": "-", + "start": 6247, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 6273, + "start": 6211, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6276, + "start": 6275, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6210, + "name": "line", + "start": 6206, + "type": "Identifier" + }, + "end": 6277, + "optional": false, + "start": 6206, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 6316, + "raw": "0.8666513070867441", + "start": 6298, + "type": "Literal", + "type": "Literal", + "value": 0.8666513070867441 + }, + "end": 6316, + "operator": "-", + "start": 6297, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 6343, + "raw": "0.301053160242023", + "start": 6326, + "type": "Literal", + "type": "Literal", + "value": 0.301053160242023 + }, + "end": 6343, + "operator": "-", + "start": 6325, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 6350, + "start": 6288, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6353, + "start": 6352, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6287, + "name": "line", + "start": 6283, + "type": "Identifier" + }, + "end": 6354, + "optional": false, + "start": 6283, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6391, + "raw": "0.537415656028112", + "start": 6374, + "type": "Literal", + "type": "Literal", + "value": 0.537415656028112 + }, + { + "end": 6420, + "raw": "0.020272692875002774", + "start": 6400, + "type": "Literal", + "type": "Literal", + "value": 0.020272692875002774 + } + ], + "end": 6427, + "start": 6365, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6430, + "start": 6429, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6364, + "name": "line", + "start": 6360, + "type": "Identifier" + }, + "end": 6431, + "optional": false, + "start": 6360, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6469, + "raw": "0.9332396256457531", + "start": 6451, + "type": "Literal", + "type": "Literal", + "value": 0.9332396256457531 + }, + { + "argument": { + "end": 6497, + "raw": "0.6228175690649898", + "start": 6479, + "type": "Literal", + "type": "Literal", + "value": 0.6228175690649898 + }, + "end": 6497, + "operator": "-", + "start": 6478, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 6504, + "start": 6442, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6507, + "start": 6506, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6441, + "name": "line", + "start": 6437, + "type": "Identifier" + }, + "end": 6508, + "optional": false, + "start": 6437, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6547, + "raw": "0.18052415837320734", + "start": 6528, + "type": "Literal", + "type": "Literal", + "value": 0.18052415837320734 + }, + { + "argument": { + "end": 6576, + "raw": "0.36894384647296197", + "start": 6557, + "type": "Literal", + "type": "Literal", + "value": 0.36894384647296197 + }, + "end": 6576, + "operator": "-", + "start": 6556, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 6583, + "start": 6519, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6586, + "start": 6585, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6518, + "name": "line", + "start": 6514, + "type": "Identifier" + }, + "end": 6587, + "optional": false, + "start": 6514, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6617, + "raw": "0.5384372634075449", + "start": 6599, + "type": "Literal", + "type": "Literal", + "value": 0.5384372634075449 + }, + { + "end": 6637, + "raw": "0.2377565050887107", + "start": 6619, + "type": "Literal", + "type": "Literal", + "value": 0.2377565050887107 + } + ], + "end": 6638, + "start": 6598, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6641, + "start": 6640, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6597, + "name": "line", + "start": 6593, + "type": "Identifier" + }, + "end": 6642, + "optional": false, + "start": 6593, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6681, + "raw": "0.39043436929278874", + "start": 6662, + "type": "Literal", + "type": "Literal", + "value": 0.39043436929278874 + }, + { + "end": 6709, + "raw": "0.14273182483160451", + "start": 6690, + "type": "Literal", + "type": "Literal", + "value": 0.14273182483160451 + } + ], + "end": 6716, + "start": 6653, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6719, + "start": 6718, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6652, + "name": "line", + "start": 6648, + "type": "Identifier" + }, + "end": 6720, + "optional": false, + "start": 6648, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6759, + "raw": "0.09782890412897283", + "start": 6740, + "type": "Literal", + "type": "Literal", + "value": 0.09782890412897283 + }, + { + "end": 6786, + "raw": "0.9907667536909659", + "start": 6768, + "type": "Literal", + "type": "Literal", + "value": 0.9907667536909659 + } + ], + "end": 6793, + "start": 6731, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6796, + "start": 6795, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6730, + "name": "line", + "start": 6726, + "type": "Identifier" + }, + "end": 6797, + "optional": false, + "start": 6726, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6835, + "raw": "0.5286610085921146", + "start": 6817, + "type": "Literal", + "type": "Literal", + "value": 0.5286610085921146 + }, + { + "argument": { + "end": 6863, + "raw": "0.7924508308419256", + "start": 6845, + "type": "Literal", + "type": "Literal", + "value": 0.7924508308419256 + }, + "end": 6863, + "operator": "-", + "start": 6844, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 6870, + "start": 6808, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6873, + "start": 6872, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6807, + "name": "line", + "start": 6803, + "type": "Identifier" + }, + "end": 6874, + "optional": false, + "start": 6803, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 6912, + "raw": "0.3789978184503342", + "start": 6894, + "type": "Literal", + "type": "Literal", + "value": 0.3789978184503342 + }, + { + "end": 6940, + "raw": "0.12396120576838676", + "start": 6921, + "type": "Literal", + "type": "Literal", + "value": 0.12396120576838676 + } + ], + "end": 6947, + "start": 6885, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 6950, + "start": 6949, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6884, + "name": "line", + "start": 6880, + "type": "Identifier" + }, + "end": 6951, + "optional": false, + "start": 6880, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 6990, + "raw": "0.9484912744890612", + "start": 6972, + "type": "Literal", + "type": "Literal", + "value": 0.9484912744890612 + }, + "end": 6990, + "operator": "-", + "start": 6971, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 7017, + "raw": "0.6729649846476855", + "start": 6999, + "type": "Literal", + "type": "Literal", + "value": 0.6729649846476855 + } + ], + "end": 7024, + "start": 6962, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7027, + "start": 7026, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 6961, + "name": "line", + "start": 6957, + "type": "Identifier" + }, + "end": 7028, + "optional": false, + "start": 6957, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 7066, + "raw": "0.7451758753425153", + "start": 7048, + "type": "Literal", + "type": "Literal", + "value": 0.7451758753425153 + }, + { + "argument": { + "end": 7095, + "raw": "0.21318737562458967", + "start": 7076, + "type": "Literal", + "type": "Literal", + "value": 0.21318737562458967 + }, + "end": 7095, + "operator": "-", + "start": 7075, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 7102, + "start": 7039, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7105, + "start": 7104, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7038, + "name": "line", + "start": 7034, + "type": "Identifier" + }, + "end": 7106, + "optional": false, + "start": 7034, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 7144, + "raw": "0.1873200727251887", + "start": 7126, + "type": "Literal", + "type": "Literal", + "value": 0.1873200727251887 + }, + { + "argument": { + "end": 7173, + "raw": "0.15961374297992448", + "start": 7154, + "type": "Literal", + "type": "Literal", + "value": 0.15961374297992448 + }, + "end": 7173, + "operator": "-", + "start": 7153, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 7180, + "start": 7117, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7183, + "start": 7182, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7116, + "name": "line", + "start": 7112, + "type": "Identifier" + }, + "end": 7184, + "optional": false, + "start": 7112, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7224, + "raw": "0.05729464924537564", + "start": 7205, + "type": "Literal", + "type": "Literal", + "value": 0.05729464924537564 + }, + "end": 7224, + "operator": "-", + "start": 7204, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 7252, + "raw": "0.5436345558508746", + "start": 7234, + "type": "Literal", + "type": "Literal", + "value": 0.5436345558508746 + }, + "end": 7252, + "operator": "-", + "start": 7233, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 7259, + "start": 7195, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7262, + "start": 7261, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7194, + "name": "line", + "start": 7190, + "type": "Identifier" + }, + "end": 7263, + "optional": false, + "start": 7190, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7303, + "raw": "0.09582414374469184", + "start": 7284, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 7303, + "operator": "-", + "start": 7283, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 7331, + "raw": "0.7533839681212353", + "start": 7313, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 7331, + "operator": "-", + "start": 7312, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 7338, + "start": 7274, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7341, + "start": 7340, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7273, + "name": "line", + "start": 7269, + "type": "Identifier" + }, + "end": 7342, + "optional": false, + "start": 7269, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7382, + "raw": "0.17254116580051848", + "start": 7363, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 7382, + "operator": "-", + "start": 7362, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 7410, + "raw": "0.7669113400341137", + "start": 7392, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 7410, + "operator": "-", + "start": 7391, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 7417, + "start": 7353, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7420, + "start": 7419, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7352, + "name": "line", + "start": 7348, + "type": "Identifier" + }, + "end": 7421, + "optional": false, + "start": 7348, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 7451, + "raw": "0.8944730032887609", + "start": 7433, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 7471, + "raw": "0.6093318694741408", + "start": 7453, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 7472, + "start": 7432, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7475, + "start": 7474, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7431, + "name": "line", + "start": 7427, + "type": "Identifier" + }, + "end": 7476, + "optional": false, + "start": 7427, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7515, + "raw": "0.3670208139314082", + "start": 7497, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 7515, + "operator": "-", + "start": 7496, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 7543, + "raw": "0.21201331909674526", + "start": 7524, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 7550, + "start": 7487, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7553, + "start": 7552, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7486, + "name": "line", + "start": 7482, + "type": "Identifier" + }, + "end": 7554, + "optional": false, + "start": 7482, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7593, + "raw": "0.4707511307971115", + "start": 7575, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 7593, + "operator": "-", + "start": 7574, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 7620, + "raw": "0.4905279615419764", + "start": 7602, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 7627, + "start": 7565, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7630, + "start": 7629, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7564, + "name": "line", + "start": 7560, + "type": "Identifier" + }, + "end": 7631, + "optional": false, + "start": 7560, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7670, + "raw": "0.8328324229085962", + "start": 7652, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 7670, + "operator": "-", + "start": 7651, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 7697, + "raw": "0.4677492878818803", + "start": 7679, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 7704, + "start": 7642, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7707, + "start": 7706, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7641, + "name": "line", + "start": 7637, + "type": "Identifier" + }, + "end": 7708, + "optional": false, + "start": 7637, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7747, + "raw": "0.8111463382182231", + "start": 7729, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 7747, + "operator": "-", + "start": 7728, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 7776, + "raw": "0.41814807547140576", + "start": 7757, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 7776, + "operator": "-", + "start": 7756, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 7783, + "start": 7719, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7786, + "start": 7785, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7718, + "name": "line", + "start": 7714, + "type": "Identifier" + }, + "end": 7787, + "optional": false, + "start": 7714, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 7826, + "raw": "0.03807684940941125", + "start": 7807, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 7854, + "raw": "0.25664826686353326", + "start": 7835, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 7861, + "start": 7798, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7864, + "start": 7863, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7797, + "name": "line", + "start": 7793, + "type": "Identifier" + }, + "end": 7865, + "optional": false, + "start": 7793, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 7904, + "raw": "0.23950083339596384", + "start": 7885, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 7932, + "raw": "0.43693196301855575", + "start": 7913, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 7939, + "start": 7876, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 7942, + "start": 7941, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7875, + "name": "line", + "start": 7871, + "type": "Identifier" + }, + "end": 7943, + "optional": false, + "start": 7871, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 7983, + "raw": "0.16279444820904887", + "start": 7964, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 7983, + "operator": "-", + "start": 7963, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 8010, + "raw": "0.8064475707664818", + "start": 7992, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 8017, + "start": 7954, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8020, + "start": 8019, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 7953, + "name": "line", + "start": 7949, + "type": "Identifier" + }, + "end": 8021, + "optional": false, + "start": 7949, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 8061, + "raw": "0.08972872009232558", + "start": 8042, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 8061, + "operator": "-", + "start": 8041, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 8090, + "raw": "0.08887625823751266", + "start": 8071, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 8090, + "operator": "-", + "start": 8070, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8097, + "start": 8032, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8100, + "start": 8099, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8031, + "name": "line", + "start": 8027, + "type": "Identifier" + }, + "end": 8101, + "optional": false, + "start": 8027, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8139, + "raw": "0.9203433427102556", + "start": 8121, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 8168, + "raw": "0.17343459369697545", + "start": 8149, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 8168, + "operator": "-", + "start": 8148, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8175, + "start": 8112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8178, + "start": 8177, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8111, + "name": "line", + "start": 8107, + "type": "Identifier" + }, + "end": 8179, + "optional": false, + "start": 8107, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8220, + "raw": "0.0017496234414517975", + "start": 8199, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 8248, + "raw": "0.5178508316168335", + "start": 8230, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 8248, + "operator": "-", + "start": 8229, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8255, + "start": 8190, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8258, + "start": 8257, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8189, + "name": "line", + "start": 8185, + "type": "Identifier" + }, + "end": 8259, + "optional": false, + "start": 8185, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8297, + "raw": "0.6206263405732759", + "start": 8279, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 8325, + "raw": "0.8733399468665124", + "start": 8307, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 8325, + "operator": "-", + "start": 8306, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8332, + "start": 8270, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8335, + "start": 8334, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8269, + "name": "line", + "start": 8265, + "type": "Identifier" + }, + "end": 8336, + "optional": false, + "start": 8265, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 8375, + "raw": "0.7776386664456383", + "start": 8357, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 8375, + "operator": "-", + "start": 8356, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 8402, + "raw": "0.7602780485384968", + "start": 8384, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 8409, + "start": 8347, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8412, + "start": 8411, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8346, + "name": "line", + "start": 8342, + "type": "Identifier" + }, + "end": 8413, + "optional": false, + "start": 8342, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8443, + "raw": "0.5439379760788592", + "start": 8425, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 8463, + "raw": "0.8449177589350552", + "start": 8445, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 8464, + "start": 8424, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8467, + "start": 8466, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8423, + "name": "line", + "start": 8419, + "type": "Identifier" + }, + "end": 8468, + "optional": false, + "start": 8419, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 8508, + "raw": "0.13036646025917076", + "start": 8489, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 8508, + "operator": "-", + "start": 8488, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 8537, + "raw": "0.012051713627069693", + "start": 8517, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 8544, + "start": 8479, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8547, + "start": 8546, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8478, + "name": "line", + "start": 8474, + "type": "Identifier" + }, + "end": 8548, + "optional": false, + "start": 8474, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 8587, + "raw": "0.1656465612645519", + "start": 8569, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 8587, + "operator": "-", + "start": 8568, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 8616, + "raw": "0.20775229173765486", + "start": 8597, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 8616, + "operator": "-", + "start": 8596, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8623, + "start": 8559, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8626, + "start": 8625, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8558, + "name": "line", + "start": 8554, + "type": "Identifier" + }, + "end": 8627, + "optional": false, + "start": 8554, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 8666, + "raw": "0.0962723255929061", + "start": 8648, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 8666, + "operator": "-", + "start": 8647, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 8695, + "raw": "0.05417797659066137", + "start": 8676, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 8695, + "operator": "-", + "start": 8675, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8702, + "start": 8638, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8705, + "start": 8704, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8637, + "name": "line", + "start": 8633, + "type": "Identifier" + }, + "end": 8706, + "optional": false, + "start": 8633, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8735, + "raw": "0.902108945498191", + "start": 8718, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 8755, + "raw": "0.3958978534964961", + "start": 8737, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 8756, + "start": 8717, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8759, + "start": 8758, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8716, + "name": "line", + "start": 8712, + "type": "Identifier" + }, + "end": 8760, + "optional": false, + "start": 8712, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8799, + "raw": "0.27997950083139167", + "start": 8780, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 8828, + "raw": "0.17778188444008958", + "start": 8809, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 8828, + "operator": "-", + "start": 8808, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8835, + "start": 8771, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8838, + "start": 8837, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8770, + "name": "line", + "start": 8766, + "type": "Identifier" + }, + "end": 8839, + "optional": false, + "start": 8766, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8869, + "raw": "0.5235806061589545", + "start": 8851, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 8888, + "raw": "0.694318985642328", + "start": 8871, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 8889, + "start": 8850, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8892, + "start": 8891, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8849, + "name": "line", + "start": 8845, + "type": "Identifier" + }, + "end": 8893, + "optional": false, + "start": 8845, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 8932, + "raw": "0.39140760219992154", + "start": 8913, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 8960, + "raw": "0.7839795272576484", + "start": 8942, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 8960, + "operator": "-", + "start": 8941, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 8967, + "start": 8904, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 8970, + "start": 8969, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8903, + "name": "line", + "start": 8899, + "type": "Identifier" + }, + "end": 8971, + "optional": false, + "start": 8899, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9001, + "raw": "0.8414243527073519", + "start": 8983, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 9021, + "raw": "0.5395591528940082", + "start": 9003, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 9022, + "start": 8982, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9025, + "start": 9024, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 8981, + "name": "line", + "start": 8977, + "type": "Identifier" + }, + "end": 9026, + "optional": false, + "start": 8977, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9064, + "raw": "0.6137667704875602", + "start": 9046, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 9092, + "raw": "0.22119647516722085", + "start": 9073, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 9099, + "start": 9037, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9102, + "start": 9101, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9036, + "name": "line", + "start": 9032, + "type": "Identifier" + }, + "end": 9103, + "optional": false, + "start": 9032, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9133, + "raw": "0.8830488380766681", + "start": 9115, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 9153, + "raw": "0.6996724408425232", + "start": 9135, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 9154, + "start": 9114, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9157, + "start": 9156, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9113, + "name": "line", + "start": 9109, + "type": "Identifier" + }, + "end": 9158, + "optional": false, + "start": 9109, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 9198, + "raw": "0.41290485754343953", + "start": 9179, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 9198, + "operator": "-", + "start": 9178, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 9226, + "raw": "0.4152647361760933", + "start": 9208, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 9226, + "operator": "-", + "start": 9207, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9233, + "start": 9169, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9236, + "start": 9235, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9168, + "name": "line", + "start": 9164, + "type": "Identifier" + }, + "end": 9237, + "optional": false, + "start": 9164, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9275, + "raw": "0.5169538755575687", + "start": 9257, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 9303, + "raw": "0.9085567867302617", + "start": 9285, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 9303, + "operator": "-", + "start": 9284, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9310, + "start": 9248, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9313, + "start": 9312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9247, + "name": "line", + "start": 9243, + "type": "Identifier" + }, + "end": 9314, + "optional": false, + "start": 9243, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 9353, + "raw": "0.6716353749059765", + "start": 9335, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 9353, + "operator": "-", + "start": 9334, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 9381, + "raw": "0.9605576808879026", + "start": 9363, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 9381, + "operator": "-", + "start": 9362, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9388, + "start": 9325, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9391, + "start": 9390, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9324, + "name": "line", + "start": 9320, + "type": "Identifier" + }, + "end": 9392, + "optional": false, + "start": 9320, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9432, + "raw": "0.010280170930300203", + "start": 9412, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 9461, + "raw": "0.37344123662342166", + "start": 9442, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 9461, + "operator": "-", + "start": 9441, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9468, + "start": 9403, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9471, + "start": 9470, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9402, + "name": "line", + "start": 9398, + "type": "Identifier" + }, + "end": 9472, + "optional": false, + "start": 9398, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9511, + "raw": "0.10357375682791004", + "start": 9492, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 9540, + "raw": "0.42294321030821425", + "start": 9521, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 9540, + "operator": "-", + "start": 9520, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9547, + "start": 9483, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9550, + "start": 9549, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9482, + "name": "line", + "start": 9478, + "type": "Identifier" + }, + "end": 9551, + "optional": false, + "start": 9478, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9589, + "raw": "0.4520311575096987", + "start": 9571, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 9618, + "raw": "0.11232675307600548", + "start": 9599, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 9618, + "operator": "-", + "start": 9598, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9625, + "start": 9562, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9628, + "start": 9627, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9561, + "name": "line", + "start": 9557, + "type": "Identifier" + }, + "end": 9629, + "optional": false, + "start": 9557, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 9668, + "raw": "0.8821185914380845", + "start": 9650, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 9668, + "operator": "-", + "start": 9649, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 9696, + "raw": "0.7155147434939819", + "start": 9678, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 9696, + "operator": "-", + "start": 9677, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9703, + "start": 9640, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9706, + "start": 9705, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9639, + "name": "line", + "start": 9635, + "type": "Identifier" + }, + "end": 9707, + "optional": false, + "start": 9635, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9737, + "raw": "0.9195487101690416", + "start": 9719, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 9757, + "raw": "0.2691627465297364", + "start": 9739, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 9758, + "start": 9718, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9761, + "start": 9760, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9717, + "name": "line", + "start": 9713, + "type": "Identifier" + }, + "end": 9762, + "optional": false, + "start": 9713, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 9800, + "raw": "0.7098978191546745", + "start": 9782, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 9828, + "raw": "0.11710004169385968", + "start": 9809, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 9835, + "start": 9773, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9838, + "start": 9837, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9772, + "name": "line", + "start": 9768, + "type": "Identifier" + }, + "end": 9839, + "optional": false, + "start": 9768, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 9879, + "raw": "0.37876368560819995", + "start": 9860, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 9879, + "operator": "-", + "start": 9859, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 9906, + "raw": "0.7106729314759084", + "start": 9888, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 9913, + "start": 9850, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9916, + "start": 9915, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9849, + "name": "line", + "start": 9845, + "type": "Identifier" + }, + "end": 9917, + "optional": false, + "start": 9845, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 9957, + "raw": "0.29728126898353335", + "start": 9938, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 9957, + "operator": "-", + "start": 9937, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 9986, + "raw": "0.06649734568328003", + "start": 9967, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 9986, + "operator": "-", + "start": 9966, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 9993, + "start": 9928, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 9996, + "start": 9995, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 9927, + "name": "line", + "start": 9923, + "type": "Identifier" + }, + "end": 9997, + "optional": false, + "start": 9923, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10036, + "raw": "0.22965781558352072", + "start": 10017, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 10064, + "raw": "0.7601866432836641", + "start": 10046, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 10064, + "operator": "-", + "start": 10045, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 10071, + "start": 10008, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10074, + "start": 10073, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10007, + "name": "line", + "start": 10003, + "type": "Identifier" + }, + "end": 10075, + "optional": false, + "start": 10003, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 10114, + "raw": "0.6356501074317229", + "start": 10096, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 10114, + "operator": "-", + "start": 10095, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 10142, + "raw": "0.19458425399338064", + "start": 10123, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 10149, + "start": 10086, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10152, + "start": 10151, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10085, + "name": "line", + "start": 10081, + "type": "Identifier" + }, + "end": 10153, + "optional": false, + "start": 10081, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10183, + "raw": "0.5721251777404546", + "start": 10165, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 10203, + "raw": "0.2888584097921527", + "start": 10185, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 10204, + "start": 10164, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10207, + "start": 10206, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10163, + "name": "line", + "start": 10159, + "type": "Identifier" + }, + "end": 10208, + "optional": false, + "start": 10159, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 10247, + "raw": "0.9580409549552311", + "start": 10229, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 10247, + "operator": "-", + "start": 10228, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 10276, + "raw": "0.02243818192078395", + "start": 10257, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 10276, + "operator": "-", + "start": 10256, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 10283, + "start": 10219, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10286, + "start": 10285, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10218, + "name": "line", + "start": 10214, + "type": "Identifier" + }, + "end": 10287, + "optional": false, + "start": 10214, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10325, + "raw": "0.3299184618602866", + "start": 10307, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 10353, + "raw": "0.8353726942369875", + "start": 10335, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 10353, + "operator": "-", + "start": 10334, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 10360, + "start": 10298, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10363, + "start": 10362, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10297, + "name": "line", + "start": 10293, + "type": "Identifier" + }, + "end": 10364, + "optional": false, + "start": 10293, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10402, + "raw": "0.7434639386755209", + "start": 10384, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 10430, + "raw": "0.7919648864138378", + "start": 10412, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 10430, + "operator": "-", + "start": 10411, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 10437, + "start": 10375, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10440, + "start": 10439, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10374, + "name": "line", + "start": 10370, + "type": "Identifier" + }, + "end": 10441, + "optional": false, + "start": 10370, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10471, + "raw": "0.9935751011164615", + "start": 10453, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 10491, + "raw": "0.9042566468497608", + "start": 10473, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 10492, + "start": 10452, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10495, + "start": 10494, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10451, + "name": "line", + "start": 10447, + "type": "Identifier" + }, + "end": 10496, + "optional": false, + "start": 10447, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 10535, + "raw": "0.5035812884687294", + "start": 10517, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 10535, + "operator": "-", + "start": 10516, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 10562, + "raw": "0.5150967434989442", + "start": 10544, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 10569, + "start": 10507, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10572, + "start": 10571, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10506, + "name": "line", + "start": 10502, + "type": "Identifier" + }, + "end": 10573, + "optional": false, + "start": 10502, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10603, + "raw": "0.5526227215900215", + "start": 10585, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 10623, + "raw": "0.7612604137272441", + "start": 10605, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 10624, + "start": 10584, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10627, + "start": 10626, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10583, + "name": "line", + "start": 10579, + "type": "Identifier" + }, + "end": 10628, + "optional": false, + "start": 10579, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10666, + "raw": "0.8593271349126876", + "start": 10648, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 10694, + "raw": "0.08414894953725849", + "start": 10675, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 10701, + "start": 10639, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10704, + "start": 10703, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10638, + "name": "line", + "start": 10634, + "type": "Identifier" + }, + "end": 10705, + "optional": false, + "start": 10634, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 10744, + "raw": "0.8181049219192864", + "start": 10726, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 10744, + "operator": "-", + "start": 10725, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 10771, + "raw": "0.903548131323352", + "start": 10754, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 10771, + "operator": "-", + "start": 10753, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 10778, + "start": 10716, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10781, + "start": 10780, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10715, + "name": "line", + "start": 10711, + "type": "Identifier" + }, + "end": 10782, + "optional": false, + "start": 10711, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 10820, + "raw": "0.3165782044458305", + "start": 10802, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 10849, + "raw": "0.24189274252014914", + "start": 10830, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 10849, + "operator": "-", + "start": 10829, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 10856, + "start": 10793, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10859, + "start": 10858, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10792, + "name": "line", + "start": 10788, + "type": "Identifier" + }, + "end": 10860, + "optional": false, + "start": 10788, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 10900, + "raw": "0.44390956414045135", + "start": 10881, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 10900, + "operator": "-", + "start": 10880, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 10929, + "raw": "0.25912591535126905", + "start": 10910, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 10929, + "operator": "-", + "start": 10909, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 10936, + "start": 10871, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 10939, + "start": 10938, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10870, + "name": "line", + "start": 10866, + "type": "Identifier" + }, + "end": 10940, + "optional": false, + "start": 10866, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 10979, + "raw": "0.6605165911891009", + "start": 10961, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 10979, + "operator": "-", + "start": 10960, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 11008, + "raw": "0.40355115288839194", + "start": 10989, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 11008, + "operator": "-", + "start": 10988, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 11015, + "start": 10951, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11018, + "start": 11017, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 10950, + "name": "line", + "start": 10946, + "type": "Identifier" + }, + "end": 11019, + "optional": false, + "start": 10946, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 11058, + "raw": "0.7170489950180006", + "start": 11040, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 11058, + "operator": "-", + "start": 11039, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 11086, + "raw": "0.23454356079651384", + "start": 11067, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 11093, + "start": 11030, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11096, + "start": 11095, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11029, + "name": "line", + "start": 11025, + "type": "Identifier" + }, + "end": 11097, + "optional": false, + "start": 11025, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 11136, + "raw": "0.2568187045379722", + "start": 11118, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 11136, + "operator": "-", + "start": 11117, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 11165, + "raw": "0.45031188717601367", + "start": 11146, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 11165, + "operator": "-", + "start": 11145, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 11172, + "start": 11108, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11175, + "start": 11174, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11107, + "name": "line", + "start": 11103, + "type": "Identifier" + }, + "end": 11176, + "optional": false, + "start": 11103, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 11214, + "raw": "0.6751951211858687", + "start": 11196, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 11242, + "raw": "0.9709424233465593", + "start": 11224, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 11242, + "operator": "-", + "start": 11223, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 11249, + "start": 11187, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11252, + "start": 11251, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11186, + "name": "line", + "start": 11182, + "type": "Identifier" + }, + "end": 11253, + "optional": false, + "start": 11182, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 11292, + "raw": "0.5689619842972184", + "start": 11274, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 11292, + "operator": "-", + "start": 11273, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 11319, + "raw": "0.5918969913790362", + "start": 11301, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 11326, + "start": 11264, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11329, + "start": 11328, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11263, + "name": "line", + "start": 11259, + "type": "Identifier" + }, + "end": 11330, + "optional": false, + "start": 11259, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 11369, + "raw": "0.8328324229085962", + "start": 11351, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 11369, + "operator": "-", + "start": 11350, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 11396, + "raw": "0.4677492878818803", + "start": 11378, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 11403, + "start": 11341, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11406, + "start": 11405, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11340, + "name": "line", + "start": 11336, + "type": "Identifier" + }, + "end": 11407, + "optional": false, + "start": 11336, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 11446, + "raw": "0.8111463382182231", + "start": 11428, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 11446, + "operator": "-", + "start": 11427, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 11475, + "raw": "0.41814807547140576", + "start": 11456, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 11475, + "operator": "-", + "start": 11455, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 11482, + "start": 11418, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11485, + "start": 11484, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11417, + "name": "line", + "start": 11413, + "type": "Identifier" + }, + "end": 11486, + "optional": false, + "start": 11413, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 11525, + "raw": "0.03807684940941125", + "start": 11506, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 11553, + "raw": "0.25664826686353326", + "start": 11534, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 11560, + "start": 11497, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11563, + "start": 11562, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11496, + "name": "line", + "start": 11492, + "type": "Identifier" + }, + "end": 11564, + "optional": false, + "start": 11492, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 11603, + "raw": "0.23950083339596384", + "start": 11584, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 11631, + "raw": "0.43693196301855575", + "start": 11612, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 11638, + "start": 11575, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11641, + "start": 11640, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11574, + "name": "line", + "start": 11570, + "type": "Identifier" + }, + "end": 11642, + "optional": false, + "start": 11570, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 11682, + "raw": "0.16279444820904887", + "start": 11663, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 11682, + "operator": "-", + "start": 11662, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 11709, + "raw": "0.8064475707664818", + "start": 11691, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 11716, + "start": 11653, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11719, + "start": 11718, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11652, + "name": "line", + "start": 11648, + "type": "Identifier" + }, + "end": 11720, + "optional": false, + "start": 11648, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 11760, + "raw": "0.08972872009232558", + "start": 11741, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 11760, + "operator": "-", + "start": 11740, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 11789, + "raw": "0.08887625823751266", + "start": 11770, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 11789, + "operator": "-", + "start": 11769, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 11796, + "start": 11731, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11799, + "start": 11798, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11730, + "name": "line", + "start": 11726, + "type": "Identifier" + }, + "end": 11800, + "optional": false, + "start": 11726, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 11838, + "raw": "0.9203433427102556", + "start": 11820, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 11867, + "raw": "0.17343459369697545", + "start": 11848, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 11867, + "operator": "-", + "start": 11847, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 11874, + "start": 11811, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11877, + "start": 11876, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11810, + "name": "line", + "start": 11806, + "type": "Identifier" + }, + "end": 11878, + "optional": false, + "start": 11806, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 11919, + "raw": "0.0017496234414517975", + "start": 11898, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 11947, + "raw": "0.5178508316168335", + "start": 11929, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 11947, + "operator": "-", + "start": 11928, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 11954, + "start": 11889, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 11957, + "start": 11956, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11888, + "name": "line", + "start": 11884, + "type": "Identifier" + }, + "end": 11958, + "optional": false, + "start": 11884, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 11996, + "raw": "0.6206263405732759", + "start": 11978, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 12024, + "raw": "0.8733399468665124", + "start": 12006, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 12024, + "operator": "-", + "start": 12005, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 12031, + "start": 11969, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12034, + "start": 12033, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 11968, + "name": "line", + "start": 11964, + "type": "Identifier" + }, + "end": 12035, + "optional": false, + "start": 11964, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 12074, + "raw": "0.7776386664456383", + "start": 12056, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 12074, + "operator": "-", + "start": 12055, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 12101, + "raw": "0.7602780485384968", + "start": 12083, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 12108, + "start": 12046, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12111, + "start": 12110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12045, + "name": "line", + "start": 12041, + "type": "Identifier" + }, + "end": 12112, + "optional": false, + "start": 12041, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12142, + "raw": "0.5439379760788592", + "start": 12124, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 12162, + "raw": "0.8449177589350552", + "start": 12144, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 12163, + "start": 12123, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12166, + "start": 12165, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12122, + "name": "line", + "start": 12118, + "type": "Identifier" + }, + "end": 12167, + "optional": false, + "start": 12118, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 12207, + "raw": "0.13036646025917076", + "start": 12188, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 12207, + "operator": "-", + "start": 12187, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 12236, + "raw": "0.012051713627069693", + "start": 12216, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 12243, + "start": 12178, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12246, + "start": 12245, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12177, + "name": "line", + "start": 12173, + "type": "Identifier" + }, + "end": 12247, + "optional": false, + "start": 12173, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 12286, + "raw": "0.1656465612645519", + "start": 12268, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 12286, + "operator": "-", + "start": 12267, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 12315, + "raw": "0.20775229173765486", + "start": 12296, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 12315, + "operator": "-", + "start": 12295, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 12322, + "start": 12258, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12325, + "start": 12324, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12257, + "name": "line", + "start": 12253, + "type": "Identifier" + }, + "end": 12326, + "optional": false, + "start": 12253, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 12365, + "raw": "0.0962723255929061", + "start": 12347, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 12365, + "operator": "-", + "start": 12346, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 12394, + "raw": "0.05417797659066137", + "start": 12375, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 12394, + "operator": "-", + "start": 12374, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 12401, + "start": 12337, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12404, + "start": 12403, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12336, + "name": "line", + "start": 12332, + "type": "Identifier" + }, + "end": 12405, + "optional": false, + "start": 12332, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12434, + "raw": "0.902108945498191", + "start": 12417, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 12454, + "raw": "0.3958978534964961", + "start": 12436, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 12455, + "start": 12416, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12458, + "start": 12457, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12415, + "name": "line", + "start": 12411, + "type": "Identifier" + }, + "end": 12459, + "optional": false, + "start": 12411, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12498, + "raw": "0.27997950083139167", + "start": 12479, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 12527, + "raw": "0.17778188444008958", + "start": 12508, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 12527, + "operator": "-", + "start": 12507, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 12534, + "start": 12470, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12537, + "start": 12536, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12469, + "name": "line", + "start": 12465, + "type": "Identifier" + }, + "end": 12538, + "optional": false, + "start": 12465, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12568, + "raw": "0.5235806061589545", + "start": 12550, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 12587, + "raw": "0.694318985642328", + "start": 12570, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 12588, + "start": 12549, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12591, + "start": 12590, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12548, + "name": "line", + "start": 12544, + "type": "Identifier" + }, + "end": 12592, + "optional": false, + "start": 12544, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12631, + "raw": "0.39140760219992154", + "start": 12612, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 12659, + "raw": "0.7839795272576484", + "start": 12641, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 12659, + "operator": "-", + "start": 12640, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 12666, + "start": 12603, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12669, + "start": 12668, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12602, + "name": "line", + "start": 12598, + "type": "Identifier" + }, + "end": 12670, + "optional": false, + "start": 12598, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12700, + "raw": "0.8414243527073519", + "start": 12682, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 12720, + "raw": "0.5395591528940082", + "start": 12702, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 12721, + "start": 12681, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12724, + "start": 12723, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12680, + "name": "line", + "start": 12676, + "type": "Identifier" + }, + "end": 12725, + "optional": false, + "start": 12676, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12763, + "raw": "0.6137667704875602", + "start": 12745, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 12791, + "raw": "0.22119647516722085", + "start": 12772, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 12798, + "start": 12736, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12801, + "start": 12800, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12735, + "name": "line", + "start": 12731, + "type": "Identifier" + }, + "end": 12802, + "optional": false, + "start": 12731, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 12832, + "raw": "0.8830488380766681", + "start": 12814, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 12852, + "raw": "0.6996724408425232", + "start": 12834, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 12853, + "start": 12813, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12856, + "start": 12855, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12812, + "name": "line", + "start": 12808, + "type": "Identifier" + }, + "end": 12857, + "optional": false, + "start": 12808, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 12896, + "raw": "0.3670208139314082", + "start": 12878, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 12896, + "operator": "-", + "start": 12877, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 12924, + "raw": "0.21201331909674526", + "start": 12905, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 12931, + "start": 12868, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 12934, + "start": 12933, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12867, + "name": "line", + "start": 12863, + "type": "Identifier" + }, + "end": 12935, + "optional": false, + "start": 12863, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 12974, + "raw": "0.4707511307971115", + "start": 12956, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 12974, + "operator": "-", + "start": 12955, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 13001, + "raw": "0.4905279615419764", + "start": 12983, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 13008, + "start": 12946, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13011, + "start": 13010, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 12945, + "name": "line", + "start": 12941, + "type": "Identifier" + }, + "end": 13012, + "optional": false, + "start": 12941, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 13051, + "raw": "0.8328324229085962", + "start": 13033, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 13051, + "operator": "-", + "start": 13032, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 13078, + "raw": "0.4677492878818803", + "start": 13060, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 13085, + "start": 13023, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13088, + "start": 13087, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13022, + "name": "line", + "start": 13018, + "type": "Identifier" + }, + "end": 13089, + "optional": false, + "start": 13018, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 13128, + "raw": "0.8111463382182231", + "start": 13110, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 13128, + "operator": "-", + "start": 13109, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 13157, + "raw": "0.41814807547140576", + "start": 13138, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 13157, + "operator": "-", + "start": 13137, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 13164, + "start": 13100, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13167, + "start": 13166, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13099, + "name": "line", + "start": 13095, + "type": "Identifier" + }, + "end": 13168, + "optional": false, + "start": 13095, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 13207, + "raw": "0.03807684940941125", + "start": 13188, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 13235, + "raw": "0.25664826686353326", + "start": 13216, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 13242, + "start": 13179, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13245, + "start": 13244, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13178, + "name": "line", + "start": 13174, + "type": "Identifier" + }, + "end": 13246, + "optional": false, + "start": 13174, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 13285, + "raw": "0.23950083339596384", + "start": 13266, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 13313, + "raw": "0.43693196301855575", + "start": 13294, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 13320, + "start": 13257, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13323, + "start": 13322, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13256, + "name": "line", + "start": 13252, + "type": "Identifier" + }, + "end": 13324, + "optional": false, + "start": 13252, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 13364, + "raw": "0.16279444820904887", + "start": 13345, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 13364, + "operator": "-", + "start": 13344, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 13391, + "raw": "0.8064475707664818", + "start": 13373, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 13398, + "start": 13335, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13401, + "start": 13400, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13334, + "name": "line", + "start": 13330, + "type": "Identifier" + }, + "end": 13402, + "optional": false, + "start": 13330, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 13442, + "raw": "0.08972872009232558", + "start": 13423, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 13442, + "operator": "-", + "start": 13422, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 13471, + "raw": "0.08887625823751266", + "start": 13452, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 13471, + "operator": "-", + "start": 13451, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 13478, + "start": 13413, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13481, + "start": 13480, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13412, + "name": "line", + "start": 13408, + "type": "Identifier" + }, + "end": 13482, + "optional": false, + "start": 13408, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 13520, + "raw": "0.9203433427102556", + "start": 13502, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 13549, + "raw": "0.17343459369697545", + "start": 13530, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 13549, + "operator": "-", + "start": 13529, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 13556, + "start": 13493, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13559, + "start": 13558, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13492, + "name": "line", + "start": 13488, + "type": "Identifier" + }, + "end": 13560, + "optional": false, + "start": 13488, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 13601, + "raw": "0.0017496234414517975", + "start": 13580, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 13629, + "raw": "0.5178508316168335", + "start": 13611, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 13629, + "operator": "-", + "start": 13610, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 13636, + "start": 13571, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13639, + "start": 13638, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13570, + "name": "line", + "start": 13566, + "type": "Identifier" + }, + "end": 13640, + "optional": false, + "start": 13566, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 13678, + "raw": "0.6206263405732759", + "start": 13660, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 13706, + "raw": "0.8733399468665124", + "start": 13688, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 13706, + "operator": "-", + "start": 13687, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 13713, + "start": 13651, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13716, + "start": 13715, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13650, + "name": "line", + "start": 13646, + "type": "Identifier" + }, + "end": 13717, + "optional": false, + "start": 13646, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 13756, + "raw": "0.7776386664456383", + "start": 13738, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 13756, + "operator": "-", + "start": 13737, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 13783, + "raw": "0.7602780485384968", + "start": 13765, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 13790, + "start": 13728, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13793, + "start": 13792, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13727, + "name": "line", + "start": 13723, + "type": "Identifier" + }, + "end": 13794, + "optional": false, + "start": 13723, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 13824, + "raw": "0.5439379760788592", + "start": 13806, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 13844, + "raw": "0.8449177589350552", + "start": 13826, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 13845, + "start": 13805, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13848, + "start": 13847, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13804, + "name": "line", + "start": 13800, + "type": "Identifier" + }, + "end": 13849, + "optional": false, + "start": 13800, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 13889, + "raw": "0.13036646025917076", + "start": 13870, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 13889, + "operator": "-", + "start": 13869, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 13918, + "raw": "0.012051713627069693", + "start": 13898, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 13925, + "start": 13860, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 13928, + "start": 13927, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13859, + "name": "line", + "start": 13855, + "type": "Identifier" + }, + "end": 13929, + "optional": false, + "start": 13855, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 13968, + "raw": "0.1656465612645519", + "start": 13950, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 13968, + "operator": "-", + "start": 13949, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 13997, + "raw": "0.20775229173765486", + "start": 13978, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 13997, + "operator": "-", + "start": 13977, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14004, + "start": 13940, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14007, + "start": 14006, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 13939, + "name": "line", + "start": 13935, + "type": "Identifier" + }, + "end": 14008, + "optional": false, + "start": 13935, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 14047, + "raw": "0.0962723255929061", + "start": 14029, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 14047, + "operator": "-", + "start": 14028, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 14076, + "raw": "0.05417797659066137", + "start": 14057, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 14076, + "operator": "-", + "start": 14056, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14083, + "start": 14019, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14086, + "start": 14085, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14018, + "name": "line", + "start": 14014, + "type": "Identifier" + }, + "end": 14087, + "optional": false, + "start": 14014, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14116, + "raw": "0.902108945498191", + "start": 14099, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 14136, + "raw": "0.3958978534964961", + "start": 14118, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 14137, + "start": 14098, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14140, + "start": 14139, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14097, + "name": "line", + "start": 14093, + "type": "Identifier" + }, + "end": 14141, + "optional": false, + "start": 14093, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14180, + "raw": "0.27997950083139167", + "start": 14161, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 14209, + "raw": "0.17778188444008958", + "start": 14190, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 14209, + "operator": "-", + "start": 14189, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14216, + "start": 14152, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14219, + "start": 14218, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14151, + "name": "line", + "start": 14147, + "type": "Identifier" + }, + "end": 14220, + "optional": false, + "start": 14147, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14250, + "raw": "0.5235806061589545", + "start": 14232, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 14269, + "raw": "0.694318985642328", + "start": 14252, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 14270, + "start": 14231, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14273, + "start": 14272, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14230, + "name": "line", + "start": 14226, + "type": "Identifier" + }, + "end": 14274, + "optional": false, + "start": 14226, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14313, + "raw": "0.39140760219992154", + "start": 14294, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 14341, + "raw": "0.7839795272576484", + "start": 14323, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 14341, + "operator": "-", + "start": 14322, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14348, + "start": 14285, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14351, + "start": 14350, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14284, + "name": "line", + "start": 14280, + "type": "Identifier" + }, + "end": 14352, + "optional": false, + "start": 14280, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14382, + "raw": "0.8414243527073519", + "start": 14364, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 14402, + "raw": "0.5395591528940082", + "start": 14384, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 14403, + "start": 14363, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14406, + "start": 14405, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14362, + "name": "line", + "start": 14358, + "type": "Identifier" + }, + "end": 14407, + "optional": false, + "start": 14358, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14445, + "raw": "0.6137667704875602", + "start": 14427, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 14473, + "raw": "0.22119647516722085", + "start": 14454, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 14480, + "start": 14418, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14483, + "start": 14482, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14417, + "name": "line", + "start": 14413, + "type": "Identifier" + }, + "end": 14484, + "optional": false, + "start": 14413, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14514, + "raw": "0.8830488380766681", + "start": 14496, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 14534, + "raw": "0.6996724408425232", + "start": 14516, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 14535, + "start": 14495, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14538, + "start": 14537, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14494, + "name": "line", + "start": 14490, + "type": "Identifier" + }, + "end": 14539, + "optional": false, + "start": 14490, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 14579, + "raw": "0.41290485754343953", + "start": 14560, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 14579, + "operator": "-", + "start": 14559, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 14607, + "raw": "0.4152647361760933", + "start": 14589, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 14607, + "operator": "-", + "start": 14588, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14614, + "start": 14550, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14617, + "start": 14616, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14549, + "name": "line", + "start": 14545, + "type": "Identifier" + }, + "end": 14618, + "optional": false, + "start": 14545, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14656, + "raw": "0.5169538755575687", + "start": 14638, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 14684, + "raw": "0.9085567867302617", + "start": 14666, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 14684, + "operator": "-", + "start": 14665, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14691, + "start": 14629, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14694, + "start": 14693, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14628, + "name": "line", + "start": 14624, + "type": "Identifier" + }, + "end": 14695, + "optional": false, + "start": 14624, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 14734, + "raw": "0.6716353749059765", + "start": 14716, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 14734, + "operator": "-", + "start": 14715, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 14762, + "raw": "0.9605576808879026", + "start": 14744, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 14762, + "operator": "-", + "start": 14743, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14769, + "start": 14706, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14772, + "start": 14771, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14705, + "name": "line", + "start": 14701, + "type": "Identifier" + }, + "end": 14773, + "optional": false, + "start": 14701, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 14813, + "raw": "0.010280170930300203", + "start": 14793, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 14842, + "raw": "0.37344123662342166", + "start": 14823, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 14842, + "operator": "-", + "start": 14822, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 14849, + "start": 14784, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14852, + "start": 14851, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14783, + "name": "line", + "start": 14779, + "type": "Identifier" + }, + "end": 14853, + "optional": false, + "start": 14779, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 14892, + "raw": "0.3670208139314082", + "start": 14874, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 14892, + "operator": "-", + "start": 14873, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 14920, + "raw": "0.21201331909674526", + "start": 14901, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 14927, + "start": 14864, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 14930, + "start": 14929, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14863, + "name": "line", + "start": 14859, + "type": "Identifier" + }, + "end": 14931, + "optional": false, + "start": 14859, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 14970, + "raw": "0.4707511307971115", + "start": 14952, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 14970, + "operator": "-", + "start": 14951, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 14997, + "raw": "0.4905279615419764", + "start": 14979, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 15004, + "start": 14942, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15007, + "start": 15006, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 14941, + "name": "line", + "start": 14937, + "type": "Identifier" + }, + "end": 15008, + "optional": false, + "start": 14937, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 15047, + "raw": "0.8328324229085962", + "start": 15029, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 15047, + "operator": "-", + "start": 15028, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 15074, + "raw": "0.4677492878818803", + "start": 15056, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 15081, + "start": 15019, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15084, + "start": 15083, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15018, + "name": "line", + "start": 15014, + "type": "Identifier" + }, + "end": 15085, + "optional": false, + "start": 15014, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 15124, + "raw": "0.8111463382182231", + "start": 15106, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 15124, + "operator": "-", + "start": 15105, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 15153, + "raw": "0.41814807547140576", + "start": 15134, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 15153, + "operator": "-", + "start": 15133, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 15160, + "start": 15096, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15163, + "start": 15162, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15095, + "name": "line", + "start": 15091, + "type": "Identifier" + }, + "end": 15164, + "optional": false, + "start": 15091, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 15203, + "raw": "0.03807684940941125", + "start": 15184, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 15231, + "raw": "0.25664826686353326", + "start": 15212, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 15238, + "start": 15175, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15241, + "start": 15240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15174, + "name": "line", + "start": 15170, + "type": "Identifier" + }, + "end": 15242, + "optional": false, + "start": 15170, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 15281, + "raw": "0.23950083339596384", + "start": 15262, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 15309, + "raw": "0.43693196301855575", + "start": 15290, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 15316, + "start": 15253, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15319, + "start": 15318, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15252, + "name": "line", + "start": 15248, + "type": "Identifier" + }, + "end": 15320, + "optional": false, + "start": 15248, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 15360, + "raw": "0.16279444820904887", + "start": 15341, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 15360, + "operator": "-", + "start": 15340, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 15387, + "raw": "0.8064475707664818", + "start": 15369, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 15394, + "start": 15331, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15397, + "start": 15396, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15330, + "name": "line", + "start": 15326, + "type": "Identifier" + }, + "end": 15398, + "optional": false, + "start": 15326, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 15438, + "raw": "0.08972872009232558", + "start": 15419, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 15438, + "operator": "-", + "start": 15418, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 15467, + "raw": "0.08887625823751266", + "start": 15448, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 15467, + "operator": "-", + "start": 15447, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 15474, + "start": 15409, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15477, + "start": 15476, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15408, + "name": "line", + "start": 15404, + "type": "Identifier" + }, + "end": 15478, + "optional": false, + "start": 15404, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 15516, + "raw": "0.9203433427102556", + "start": 15498, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 15545, + "raw": "0.17343459369697545", + "start": 15526, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 15545, + "operator": "-", + "start": 15525, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 15552, + "start": 15489, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15555, + "start": 15554, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15488, + "name": "line", + "start": 15484, + "type": "Identifier" + }, + "end": 15556, + "optional": false, + "start": 15484, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 15597, + "raw": "0.0017496234414517975", + "start": 15576, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 15625, + "raw": "0.5178508316168335", + "start": 15607, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 15625, + "operator": "-", + "start": 15606, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 15632, + "start": 15567, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15635, + "start": 15634, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15566, + "name": "line", + "start": 15562, + "type": "Identifier" + }, + "end": 15636, + "optional": false, + "start": 15562, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 15674, + "raw": "0.6206263405732759", + "start": 15656, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 15702, + "raw": "0.8733399468665124", + "start": 15684, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 15702, + "operator": "-", + "start": 15683, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 15709, + "start": 15647, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15712, + "start": 15711, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15646, + "name": "line", + "start": 15642, + "type": "Identifier" + }, + "end": 15713, + "optional": false, + "start": 15642, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 15752, + "raw": "0.7776386664456383", + "start": 15734, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 15752, + "operator": "-", + "start": 15733, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 15779, + "raw": "0.7602780485384968", + "start": 15761, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 15786, + "start": 15724, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15789, + "start": 15788, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15723, + "name": "line", + "start": 15719, + "type": "Identifier" + }, + "end": 15790, + "optional": false, + "start": 15719, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 15820, + "raw": "0.5439379760788592", + "start": 15802, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 15840, + "raw": "0.8449177589350552", + "start": 15822, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 15841, + "start": 15801, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15844, + "start": 15843, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15800, + "name": "line", + "start": 15796, + "type": "Identifier" + }, + "end": 15845, + "optional": false, + "start": 15796, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 15885, + "raw": "0.13036646025917076", + "start": 15866, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 15885, + "operator": "-", + "start": 15865, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 15914, + "raw": "0.012051713627069693", + "start": 15894, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 15921, + "start": 15856, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 15924, + "start": 15923, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15855, + "name": "line", + "start": 15851, + "type": "Identifier" + }, + "end": 15925, + "optional": false, + "start": 15851, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 15964, + "raw": "0.1656465612645519", + "start": 15946, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 15964, + "operator": "-", + "start": 15945, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 15993, + "raw": "0.20775229173765486", + "start": 15974, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 15993, + "operator": "-", + "start": 15973, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16000, + "start": 15936, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16003, + "start": 16002, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 15935, + "name": "line", + "start": 15931, + "type": "Identifier" + }, + "end": 16004, + "optional": false, + "start": 15931, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 16043, + "raw": "0.0962723255929061", + "start": 16025, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 16043, + "operator": "-", + "start": 16024, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 16072, + "raw": "0.05417797659066137", + "start": 16053, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 16072, + "operator": "-", + "start": 16052, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16079, + "start": 16015, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16082, + "start": 16081, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16014, + "name": "line", + "start": 16010, + "type": "Identifier" + }, + "end": 16083, + "optional": false, + "start": 16010, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16112, + "raw": "0.902108945498191", + "start": 16095, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 16132, + "raw": "0.3958978534964961", + "start": 16114, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 16133, + "start": 16094, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16136, + "start": 16135, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16093, + "name": "line", + "start": 16089, + "type": "Identifier" + }, + "end": 16137, + "optional": false, + "start": 16089, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16176, + "raw": "0.27997950083139167", + "start": 16157, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 16205, + "raw": "0.17778188444008958", + "start": 16186, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 16205, + "operator": "-", + "start": 16185, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16212, + "start": 16148, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16215, + "start": 16214, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16147, + "name": "line", + "start": 16143, + "type": "Identifier" + }, + "end": 16216, + "optional": false, + "start": 16143, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16246, + "raw": "0.5235806061589545", + "start": 16228, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 16265, + "raw": "0.694318985642328", + "start": 16248, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 16266, + "start": 16227, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16269, + "start": 16268, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16226, + "name": "line", + "start": 16222, + "type": "Identifier" + }, + "end": 16270, + "optional": false, + "start": 16222, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16309, + "raw": "0.39140760219992154", + "start": 16290, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 16337, + "raw": "0.7839795272576484", + "start": 16319, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 16337, + "operator": "-", + "start": 16318, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16344, + "start": 16281, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16347, + "start": 16346, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16280, + "name": "line", + "start": 16276, + "type": "Identifier" + }, + "end": 16348, + "optional": false, + "start": 16276, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16378, + "raw": "0.8414243527073519", + "start": 16360, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 16398, + "raw": "0.5395591528940082", + "start": 16380, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 16399, + "start": 16359, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16402, + "start": 16401, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16358, + "name": "line", + "start": 16354, + "type": "Identifier" + }, + "end": 16403, + "optional": false, + "start": 16354, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16441, + "raw": "0.6137667704875602", + "start": 16423, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 16469, + "raw": "0.22119647516722085", + "start": 16450, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 16476, + "start": 16414, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16479, + "start": 16478, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16413, + "name": "line", + "start": 16409, + "type": "Identifier" + }, + "end": 16480, + "optional": false, + "start": 16409, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16510, + "raw": "0.8830488380766681", + "start": 16492, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 16530, + "raw": "0.6996724408425232", + "start": 16512, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 16531, + "start": 16491, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16534, + "start": 16533, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16490, + "name": "line", + "start": 16486, + "type": "Identifier" + }, + "end": 16535, + "optional": false, + "start": 16486, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 16575, + "raw": "0.41290485754343953", + "start": 16556, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 16575, + "operator": "-", + "start": 16555, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 16603, + "raw": "0.4152647361760933", + "start": 16585, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 16603, + "operator": "-", + "start": 16584, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16610, + "start": 16546, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16613, + "start": 16612, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16545, + "name": "line", + "start": 16541, + "type": "Identifier" + }, + "end": 16614, + "optional": false, + "start": 16541, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16652, + "raw": "0.5169538755575687", + "start": 16634, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 16680, + "raw": "0.9085567867302617", + "start": 16662, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 16680, + "operator": "-", + "start": 16661, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16687, + "start": 16625, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16690, + "start": 16689, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16624, + "name": "line", + "start": 16620, + "type": "Identifier" + }, + "end": 16691, + "optional": false, + "start": 16620, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 16730, + "raw": "0.6716353749059765", + "start": 16712, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 16730, + "operator": "-", + "start": 16711, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 16758, + "raw": "0.9605576808879026", + "start": 16740, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 16758, + "operator": "-", + "start": 16739, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16765, + "start": 16702, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16768, + "start": 16767, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16701, + "name": "line", + "start": 16697, + "type": "Identifier" + }, + "end": 16769, + "optional": false, + "start": 16697, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16809, + "raw": "0.010280170930300203", + "start": 16789, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 16838, + "raw": "0.37344123662342166", + "start": 16819, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 16838, + "operator": "-", + "start": 16818, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16845, + "start": 16780, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16848, + "start": 16847, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16779, + "name": "line", + "start": 16775, + "type": "Identifier" + }, + "end": 16849, + "optional": false, + "start": 16775, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16888, + "raw": "0.10357375682791004", + "start": 16869, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 16917, + "raw": "0.42294321030821425", + "start": 16898, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 16917, + "operator": "-", + "start": 16897, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 16924, + "start": 16860, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 16927, + "start": 16926, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16859, + "name": "line", + "start": 16855, + "type": "Identifier" + }, + "end": 16928, + "optional": false, + "start": 16855, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 16966, + "raw": "0.4520311575096987", + "start": 16948, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 16995, + "raw": "0.11232675307600548", + "start": 16976, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 16995, + "operator": "-", + "start": 16975, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 17002, + "start": 16939, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17005, + "start": 17004, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 16938, + "name": "line", + "start": 16934, + "type": "Identifier" + }, + "end": 17006, + "optional": false, + "start": 16934, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 17045, + "raw": "0.8821185914380845", + "start": 17027, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 17045, + "operator": "-", + "start": 17026, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 17073, + "raw": "0.7155147434939819", + "start": 17055, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 17073, + "operator": "-", + "start": 17054, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 17080, + "start": 17017, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17083, + "start": 17082, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17016, + "name": "line", + "start": 17012, + "type": "Identifier" + }, + "end": 17084, + "optional": false, + "start": 17012, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17114, + "raw": "0.9195487101690416", + "start": 17096, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 17134, + "raw": "0.2691627465297364", + "start": 17116, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 17135, + "start": 17095, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17138, + "start": 17137, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17094, + "name": "line", + "start": 17090, + "type": "Identifier" + }, + "end": 17139, + "optional": false, + "start": 17090, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17177, + "raw": "0.7098978191546745", + "start": 17159, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 17205, + "raw": "0.11710004169385968", + "start": 17186, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 17212, + "start": 17150, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17215, + "start": 17214, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17149, + "name": "line", + "start": 17145, + "type": "Identifier" + }, + "end": 17216, + "optional": false, + "start": 17145, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 17256, + "raw": "0.37876368560819995", + "start": 17237, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 17256, + "operator": "-", + "start": 17236, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 17283, + "raw": "0.7106729314759084", + "start": 17265, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 17290, + "start": 17227, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17293, + "start": 17292, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17226, + "name": "line", + "start": 17222, + "type": "Identifier" + }, + "end": 17294, + "optional": false, + "start": 17222, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 17334, + "raw": "0.29728126898353335", + "start": 17315, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 17334, + "operator": "-", + "start": 17314, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 17363, + "raw": "0.06649734568328003", + "start": 17344, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 17363, + "operator": "-", + "start": 17343, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 17370, + "start": 17305, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17373, + "start": 17372, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17304, + "name": "line", + "start": 17300, + "type": "Identifier" + }, + "end": 17374, + "optional": false, + "start": 17300, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17413, + "raw": "0.22965781558352072", + "start": 17394, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 17441, + "raw": "0.7601866432836641", + "start": 17423, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 17441, + "operator": "-", + "start": 17422, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 17448, + "start": 17385, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17451, + "start": 17450, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17384, + "name": "line", + "start": 17380, + "type": "Identifier" + }, + "end": 17452, + "optional": false, + "start": 17380, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 17491, + "raw": "0.6356501074317229", + "start": 17473, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 17491, + "operator": "-", + "start": 17472, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 17519, + "raw": "0.19458425399338064", + "start": 17500, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 17526, + "start": 17463, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17529, + "start": 17528, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17462, + "name": "line", + "start": 17458, + "type": "Identifier" + }, + "end": 17530, + "optional": false, + "start": 17458, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17560, + "raw": "0.5721251777404546", + "start": 17542, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 17580, + "raw": "0.2888584097921527", + "start": 17562, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 17581, + "start": 17541, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17584, + "start": 17583, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17540, + "name": "line", + "start": 17536, + "type": "Identifier" + }, + "end": 17585, + "optional": false, + "start": 17536, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 17624, + "raw": "0.9580409549552311", + "start": 17606, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 17624, + "operator": "-", + "start": 17605, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 17653, + "raw": "0.02243818192078395", + "start": 17634, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 17653, + "operator": "-", + "start": 17633, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 17660, + "start": 17596, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17663, + "start": 17662, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17595, + "name": "line", + "start": 17591, + "type": "Identifier" + }, + "end": 17664, + "optional": false, + "start": 17591, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17702, + "raw": "0.3299184618602866", + "start": 17684, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 17730, + "raw": "0.8353726942369875", + "start": 17712, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 17730, + "operator": "-", + "start": 17711, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 17737, + "start": 17675, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17740, + "start": 17739, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17674, + "name": "line", + "start": 17670, + "type": "Identifier" + }, + "end": 17741, + "optional": false, + "start": 17670, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17779, + "raw": "0.7434639386755209", + "start": 17761, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 17807, + "raw": "0.7919648864138378", + "start": 17789, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 17807, + "operator": "-", + "start": 17788, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 17814, + "start": 17752, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17817, + "start": 17816, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17751, + "name": "line", + "start": 17747, + "type": "Identifier" + }, + "end": 17818, + "optional": false, + "start": 17747, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17848, + "raw": "0.9935751011164615", + "start": 17830, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 17868, + "raw": "0.9042566468497608", + "start": 17850, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 17869, + "start": 17829, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17872, + "start": 17871, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17828, + "name": "line", + "start": 17824, + "type": "Identifier" + }, + "end": 17873, + "optional": false, + "start": 17824, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 17912, + "raw": "0.5035812884687294", + "start": 17894, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 17912, + "operator": "-", + "start": 17893, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 17939, + "raw": "0.5150967434989442", + "start": 17921, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 17946, + "start": 17884, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 17949, + "start": 17948, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17883, + "name": "line", + "start": 17879, + "type": "Identifier" + }, + "end": 17950, + "optional": false, + "start": 17879, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 17980, + "raw": "0.5526227215900215", + "start": 17962, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 18000, + "raw": "0.7612604137272441", + "start": 17982, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 18001, + "start": 17961, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18004, + "start": 18003, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 17960, + "name": "line", + "start": 17956, + "type": "Identifier" + }, + "end": 18005, + "optional": false, + "start": 17956, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 18043, + "raw": "0.8593271349126876", + "start": 18025, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 18071, + "raw": "0.08414894953725849", + "start": 18052, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 18078, + "start": 18016, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18081, + "start": 18080, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18015, + "name": "line", + "start": 18011, + "type": "Identifier" + }, + "end": 18082, + "optional": false, + "start": 18011, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18121, + "raw": "0.8181049219192864", + "start": 18103, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 18121, + "operator": "-", + "start": 18102, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 18148, + "raw": "0.903548131323352", + "start": 18131, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 18148, + "operator": "-", + "start": 18130, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 18155, + "start": 18093, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18158, + "start": 18157, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18092, + "name": "line", + "start": 18088, + "type": "Identifier" + }, + "end": 18159, + "optional": false, + "start": 18088, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 18197, + "raw": "0.3165782044458305", + "start": 18179, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 18226, + "raw": "0.24189274252014914", + "start": 18207, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 18226, + "operator": "-", + "start": 18206, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 18233, + "start": 18170, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18236, + "start": 18235, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18169, + "name": "line", + "start": 18165, + "type": "Identifier" + }, + "end": 18237, + "optional": false, + "start": 18165, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18277, + "raw": "0.44390956414045135", + "start": 18258, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 18277, + "operator": "-", + "start": 18257, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 18306, + "raw": "0.25912591535126905", + "start": 18287, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 18306, + "operator": "-", + "start": 18286, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 18313, + "start": 18248, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18316, + "start": 18315, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18247, + "name": "line", + "start": 18243, + "type": "Identifier" + }, + "end": 18317, + "optional": false, + "start": 18243, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18356, + "raw": "0.6605165911891009", + "start": 18338, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 18356, + "operator": "-", + "start": 18337, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 18385, + "raw": "0.40355115288839194", + "start": 18366, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 18385, + "operator": "-", + "start": 18365, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 18392, + "start": 18328, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18395, + "start": 18394, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18327, + "name": "line", + "start": 18323, + "type": "Identifier" + }, + "end": 18396, + "optional": false, + "start": 18323, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18435, + "raw": "0.7170489950180006", + "start": 18417, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 18435, + "operator": "-", + "start": 18416, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 18463, + "raw": "0.23454356079651384", + "start": 18444, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 18470, + "start": 18407, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18473, + "start": 18472, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18406, + "name": "line", + "start": 18402, + "type": "Identifier" + }, + "end": 18474, + "optional": false, + "start": 18402, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18513, + "raw": "0.2568187045379722", + "start": 18495, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 18513, + "operator": "-", + "start": 18494, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 18542, + "raw": "0.45031188717601367", + "start": 18523, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 18542, + "operator": "-", + "start": 18522, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 18549, + "start": 18485, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18552, + "start": 18551, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18484, + "name": "line", + "start": 18480, + "type": "Identifier" + }, + "end": 18553, + "optional": false, + "start": 18480, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 18591, + "raw": "0.6751951211858687", + "start": 18573, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 18619, + "raw": "0.9709424233465593", + "start": 18601, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 18619, + "operator": "-", + "start": 18600, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 18626, + "start": 18564, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18629, + "start": 18628, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18563, + "name": "line", + "start": 18559, + "type": "Identifier" + }, + "end": 18630, + "optional": false, + "start": 18559, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18669, + "raw": "0.5689619842972184", + "start": 18651, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 18669, + "operator": "-", + "start": 18650, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 18696, + "raw": "0.5918969913790362", + "start": 18678, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 18703, + "start": 18641, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18706, + "start": 18705, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18640, + "name": "line", + "start": 18636, + "type": "Identifier" + }, + "end": 18707, + "optional": false, + "start": 18636, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18746, + "raw": "0.8328324229085962", + "start": 18728, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 18746, + "operator": "-", + "start": 18727, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 18773, + "raw": "0.4677492878818803", + "start": 18755, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 18780, + "start": 18718, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18783, + "start": 18782, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18717, + "name": "line", + "start": 18713, + "type": "Identifier" + }, + "end": 18784, + "optional": false, + "start": 18713, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 18823, + "raw": "0.8111463382182231", + "start": 18805, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 18823, + "operator": "-", + "start": 18804, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 18852, + "raw": "0.41814807547140576", + "start": 18833, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 18852, + "operator": "-", + "start": 18832, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 18859, + "start": 18795, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18862, + "start": 18861, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18794, + "name": "line", + "start": 18790, + "type": "Identifier" + }, + "end": 18863, + "optional": false, + "start": 18790, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 18902, + "raw": "0.03807684940941125", + "start": 18883, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 18930, + "raw": "0.25664826686353326", + "start": 18911, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 18937, + "start": 18874, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 18940, + "start": 18939, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18873, + "name": "line", + "start": 18869, + "type": "Identifier" + }, + "end": 18941, + "optional": false, + "start": 18869, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 18980, + "raw": "0.23950083339596384", + "start": 18961, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 19008, + "raw": "0.43693196301855575", + "start": 18989, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 19015, + "start": 18952, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19018, + "start": 19017, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 18951, + "name": "line", + "start": 18947, + "type": "Identifier" + }, + "end": 19019, + "optional": false, + "start": 18947, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 19059, + "raw": "0.16279444820904887", + "start": 19040, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 19059, + "operator": "-", + "start": 19039, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 19086, + "raw": "0.8064475707664818", + "start": 19068, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 19093, + "start": 19030, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19096, + "start": 19095, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19029, + "name": "line", + "start": 19025, + "type": "Identifier" + }, + "end": 19097, + "optional": false, + "start": 19025, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 19137, + "raw": "0.08972872009232558", + "start": 19118, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 19137, + "operator": "-", + "start": 19117, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 19166, + "raw": "0.08887625823751266", + "start": 19147, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 19166, + "operator": "-", + "start": 19146, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 19173, + "start": 19108, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19176, + "start": 19175, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19107, + "name": "line", + "start": 19103, + "type": "Identifier" + }, + "end": 19177, + "optional": false, + "start": 19103, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 19215, + "raw": "0.9203433427102556", + "start": 19197, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 19244, + "raw": "0.17343459369697545", + "start": 19225, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 19244, + "operator": "-", + "start": 19224, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 19251, + "start": 19188, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19254, + "start": 19253, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19187, + "name": "line", + "start": 19183, + "type": "Identifier" + }, + "end": 19255, + "optional": false, + "start": 19183, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 19296, + "raw": "0.0017496234414517975", + "start": 19275, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 19324, + "raw": "0.5178508316168335", + "start": 19306, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 19324, + "operator": "-", + "start": 19305, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 19331, + "start": 19266, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19334, + "start": 19333, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19265, + "name": "line", + "start": 19261, + "type": "Identifier" + }, + "end": 19335, + "optional": false, + "start": 19261, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 19373, + "raw": "0.6206263405732759", + "start": 19355, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 19401, + "raw": "0.8733399468665124", + "start": 19383, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 19401, + "operator": "-", + "start": 19382, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 19408, + "start": 19346, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19411, + "start": 19410, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19345, + "name": "line", + "start": 19341, + "type": "Identifier" + }, + "end": 19412, + "optional": false, + "start": 19341, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 19451, + "raw": "0.7776386664456383", + "start": 19433, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 19451, + "operator": "-", + "start": 19432, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 19478, + "raw": "0.7602780485384968", + "start": 19460, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 19485, + "start": 19423, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19488, + "start": 19487, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19422, + "name": "line", + "start": 19418, + "type": "Identifier" + }, + "end": 19489, + "optional": false, + "start": 19418, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 19519, + "raw": "0.5439379760788592", + "start": 19501, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 19539, + "raw": "0.8449177589350552", + "start": 19521, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 19540, + "start": 19500, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19543, + "start": 19542, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19499, + "name": "line", + "start": 19495, + "type": "Identifier" + }, + "end": 19544, + "optional": false, + "start": 19495, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 19584, + "raw": "0.13036646025917076", + "start": 19565, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 19584, + "operator": "-", + "start": 19564, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 19613, + "raw": "0.012051713627069693", + "start": 19593, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 19620, + "start": 19555, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19623, + "start": 19622, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19554, + "name": "line", + "start": 19550, + "type": "Identifier" + }, + "end": 19624, + "optional": false, + "start": 19550, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 19663, + "raw": "0.1656465612645519", + "start": 19645, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 19663, + "operator": "-", + "start": 19644, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 19692, + "raw": "0.20775229173765486", + "start": 19673, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 19692, + "operator": "-", + "start": 19672, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 19699, + "start": 19635, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19702, + "start": 19701, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19634, + "name": "line", + "start": 19630, + "type": "Identifier" + }, + "end": 19703, + "optional": false, + "start": 19630, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 19742, + "raw": "0.0962723255929061", + "start": 19724, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 19742, + "operator": "-", + "start": 19723, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 19771, + "raw": "0.05417797659066137", + "start": 19752, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 19771, + "operator": "-", + "start": 19751, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 19778, + "start": 19714, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19781, + "start": 19780, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19713, + "name": "line", + "start": 19709, + "type": "Identifier" + }, + "end": 19782, + "optional": false, + "start": 19709, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 19811, + "raw": "0.902108945498191", + "start": 19794, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 19831, + "raw": "0.3958978534964961", + "start": 19813, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 19832, + "start": 19793, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19835, + "start": 19834, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19792, + "name": "line", + "start": 19788, + "type": "Identifier" + }, + "end": 19836, + "optional": false, + "start": 19788, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 19875, + "raw": "0.27997950083139167", + "start": 19856, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 19904, + "raw": "0.17778188444008958", + "start": 19885, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 19904, + "operator": "-", + "start": 19884, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 19911, + "start": 19847, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19914, + "start": 19913, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19846, + "name": "line", + "start": 19842, + "type": "Identifier" + }, + "end": 19915, + "optional": false, + "start": 19842, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 19945, + "raw": "0.5235806061589545", + "start": 19927, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 19964, + "raw": "0.694318985642328", + "start": 19947, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 19965, + "start": 19926, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 19968, + "start": 19967, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19925, + "name": "line", + "start": 19921, + "type": "Identifier" + }, + "end": 19969, + "optional": false, + "start": 19921, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20008, + "raw": "0.39140760219992154", + "start": 19989, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 20036, + "raw": "0.7839795272576484", + "start": 20018, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 20036, + "operator": "-", + "start": 20017, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20043, + "start": 19980, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20046, + "start": 20045, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 19979, + "name": "line", + "start": 19975, + "type": "Identifier" + }, + "end": 20047, + "optional": false, + "start": 19975, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20077, + "raw": "0.8414243527073519", + "start": 20059, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 20097, + "raw": "0.5395591528940082", + "start": 20079, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 20098, + "start": 20058, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20101, + "start": 20100, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20057, + "name": "line", + "start": 20053, + "type": "Identifier" + }, + "end": 20102, + "optional": false, + "start": 20053, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20140, + "raw": "0.6137667704875602", + "start": 20122, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 20168, + "raw": "0.22119647516722085", + "start": 20149, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 20175, + "start": 20113, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20178, + "start": 20177, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20112, + "name": "line", + "start": 20108, + "type": "Identifier" + }, + "end": 20179, + "optional": false, + "start": 20108, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20209, + "raw": "0.8830488380766681", + "start": 20191, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 20229, + "raw": "0.6996724408425232", + "start": 20211, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 20230, + "start": 20190, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20233, + "start": 20232, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20189, + "name": "line", + "start": 20185, + "type": "Identifier" + }, + "end": 20234, + "optional": false, + "start": 20185, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 20274, + "raw": "0.41290485754343953", + "start": 20255, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 20274, + "operator": "-", + "start": 20254, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 20302, + "raw": "0.4152647361760933", + "start": 20284, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 20302, + "operator": "-", + "start": 20283, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20309, + "start": 20245, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20312, + "start": 20311, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20244, + "name": "line", + "start": 20240, + "type": "Identifier" + }, + "end": 20313, + "optional": false, + "start": 20240, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20351, + "raw": "0.5169538755575687", + "start": 20333, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 20379, + "raw": "0.9085567867302617", + "start": 20361, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 20379, + "operator": "-", + "start": 20360, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20386, + "start": 20324, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20389, + "start": 20388, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20323, + "name": "line", + "start": 20319, + "type": "Identifier" + }, + "end": 20390, + "optional": false, + "start": 20319, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20428, + "raw": "0.6751951211858687", + "start": 20410, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 20456, + "raw": "0.9709424233465593", + "start": 20438, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 20456, + "operator": "-", + "start": 20437, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20463, + "start": 20401, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20466, + "start": 20465, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20400, + "name": "line", + "start": 20396, + "type": "Identifier" + }, + "end": 20467, + "optional": false, + "start": 20396, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 20506, + "raw": "0.5689619842972184", + "start": 20488, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 20506, + "operator": "-", + "start": 20487, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 20533, + "raw": "0.5918969913790362", + "start": 20515, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 20540, + "start": 20478, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20543, + "start": 20542, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20477, + "name": "line", + "start": 20473, + "type": "Identifier" + }, + "end": 20544, + "optional": false, + "start": 20473, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20582, + "raw": "0.9464450621708211", + "start": 20564, + "type": "Literal", + "type": "Literal", + "value": 0.9464450621708211 + }, + { + "argument": { + "end": 20610, + "raw": "0.2684908127803667", + "start": 20592, + "type": "Literal", + "type": "Literal", + "value": 0.2684908127803667 + }, + "end": 20610, + "operator": "-", + "start": 20591, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20617, + "start": 20555, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20620, + "start": 20619, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20554, + "name": "line", + "start": 20550, + "type": "Identifier" + }, + "end": 20621, + "optional": false, + "start": 20550, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 20651, + "raw": "0.5241732366617591", + "start": 20633, + "type": "Literal", + "type": "Literal", + "value": 0.5241732366617591 + }, + { + "end": 20671, + "raw": "0.9011437416408563", + "start": 20653, + "type": "Literal", + "type": "Literal", + "value": 0.9011437416408563 + } + ], + "end": 20672, + "start": 20632, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20675, + "start": 20674, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20631, + "name": "line", + "start": 20627, + "type": "Identifier" + }, + "end": 20676, + "optional": false, + "start": 20627, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 20716, + "raw": "0.14255393713960607", + "start": 20697, + "type": "Literal", + "type": "Literal", + "value": 0.14255393713960607 + }, + "end": 20716, + "operator": "-", + "start": 20696, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 20744, + "raw": "0.5194262624564814", + "start": 20726, + "type": "Literal", + "type": "Literal", + "value": 0.5194262624564814 + }, + "end": 20744, + "operator": "-", + "start": 20725, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20751, + "start": 20687, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20754, + "start": 20753, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20686, + "name": "line", + "start": 20682, + "type": "Identifier" + }, + "end": 20755, + "optional": false, + "start": 20682, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 20794, + "raw": "0.4287123231350338", + "start": 20776, + "type": "Literal", + "type": "Literal", + "value": 0.4287123231350338 + }, + "end": 20794, + "operator": "-", + "start": 20775, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 20822, + "raw": "0.4223564528725028", + "start": 20804, + "type": "Literal", + "type": "Literal", + "value": 0.4223564528725028 + }, + "end": 20822, + "operator": "-", + "start": 20803, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20829, + "start": 20766, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20832, + "start": 20831, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20765, + "name": "line", + "start": 20761, + "type": "Identifier" + }, + "end": 20833, + "optional": false, + "start": 20761, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 20873, + "raw": "0.09316367294024519", + "start": 20854, + "type": "Literal", + "type": "Literal", + "value": 0.09316367294024519 + }, + "end": 20873, + "operator": "-", + "start": 20853, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 20901, + "raw": "0.9063127021008246", + "start": 20883, + "type": "Literal", + "type": "Literal", + "value": 0.9063127021008246 + }, + "end": 20901, + "operator": "-", + "start": 20882, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 20908, + "start": 20844, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20911, + "start": 20910, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20843, + "name": "line", + "start": 20839, + "type": "Identifier" + }, + "end": 20912, + "optional": false, + "start": 20839, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 20951, + "raw": "0.2767766535558669", + "start": 20933, + "type": "Literal", + "type": "Literal", + "value": 0.2767766535558669 + }, + "end": 20951, + "operator": "-", + "start": 20932, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 20978, + "raw": "0.6816248114129131", + "start": 20960, + "type": "Literal", + "type": "Literal", + "value": 0.6816248114129131 + } + ], + "end": 20985, + "start": 20923, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 20988, + "start": 20987, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20922, + "name": "line", + "start": 20918, + "type": "Identifier" + }, + "end": 20989, + "optional": false, + "start": 20918, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21027, + "raw": "0.9796762495562534", + "start": 21009, + "type": "Literal", + "type": "Literal", + "value": 0.9796762495562534 + }, + { + "argument": { + "end": 21055, + "raw": "0.0822145668330625", + "start": 21037, + "type": "Literal", + "type": "Literal", + "value": 0.0822145668330625 + }, + "end": 21055, + "operator": "-", + "start": 21036, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 21062, + "start": 21000, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21065, + "start": 21064, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 20999, + "name": "line", + "start": 20995, + "type": "Identifier" + }, + "end": 21066, + "optional": false, + "start": 20995, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 21105, + "raw": "0.8666513070867441", + "start": 21087, + "type": "Literal", + "type": "Literal", + "value": 0.8666513070867441 + }, + "end": 21105, + "operator": "-", + "start": 21086, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 21132, + "raw": "0.301053160242023", + "start": 21115, + "type": "Literal", + "type": "Literal", + "value": 0.301053160242023 + }, + "end": 21132, + "operator": "-", + "start": 21114, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 21139, + "start": 21077, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21142, + "start": 21141, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21076, + "name": "line", + "start": 21072, + "type": "Identifier" + }, + "end": 21143, + "optional": false, + "start": 21072, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21180, + "raw": "0.537415656028112", + "start": 21163, + "type": "Literal", + "type": "Literal", + "value": 0.537415656028112 + }, + { + "end": 21209, + "raw": "0.020272692875002774", + "start": 21189, + "type": "Literal", + "type": "Literal", + "value": 0.020272692875002774 + } + ], + "end": 21216, + "start": 21154, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21219, + "start": 21218, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21153, + "name": "line", + "start": 21149, + "type": "Identifier" + }, + "end": 21220, + "optional": false, + "start": 21149, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21258, + "raw": "0.9332396256457531", + "start": 21240, + "type": "Literal", + "type": "Literal", + "value": 0.9332396256457531 + }, + { + "argument": { + "end": 21286, + "raw": "0.6228175690649898", + "start": 21268, + "type": "Literal", + "type": "Literal", + "value": 0.6228175690649898 + }, + "end": 21286, + "operator": "-", + "start": 21267, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 21293, + "start": 21231, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21296, + "start": 21295, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21230, + "name": "line", + "start": 21226, + "type": "Identifier" + }, + "end": 21297, + "optional": false, + "start": 21226, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21336, + "raw": "0.18052415837320734", + "start": 21317, + "type": "Literal", + "type": "Literal", + "value": 0.18052415837320734 + }, + { + "argument": { + "end": 21365, + "raw": "0.36894384647296197", + "start": 21346, + "type": "Literal", + "type": "Literal", + "value": 0.36894384647296197 + }, + "end": 21365, + "operator": "-", + "start": 21345, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 21372, + "start": 21308, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21375, + "start": 21374, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21307, + "name": "line", + "start": 21303, + "type": "Identifier" + }, + "end": 21376, + "optional": false, + "start": 21303, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21406, + "raw": "0.5384372634075449", + "start": 21388, + "type": "Literal", + "type": "Literal", + "value": 0.5384372634075449 + }, + { + "end": 21426, + "raw": "0.2377565050887107", + "start": 21408, + "type": "Literal", + "type": "Literal", + "value": 0.2377565050887107 + } + ], + "end": 21427, + "start": 21387, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21430, + "start": 21429, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21386, + "name": "line", + "start": 21382, + "type": "Identifier" + }, + "end": 21431, + "optional": false, + "start": 21382, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21470, + "raw": "0.39043436929278874", + "start": 21451, + "type": "Literal", + "type": "Literal", + "value": 0.39043436929278874 + }, + { + "end": 21498, + "raw": "0.14273182483160451", + "start": 21479, + "type": "Literal", + "type": "Literal", + "value": 0.14273182483160451 + } + ], + "end": 21505, + "start": 21442, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21508, + "start": 21507, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21441, + "name": "line", + "start": 21437, + "type": "Identifier" + }, + "end": 21509, + "optional": false, + "start": 21437, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21548, + "raw": "0.09782890412897283", + "start": 21529, + "type": "Literal", + "type": "Literal", + "value": 0.09782890412897283 + }, + { + "end": 21575, + "raw": "0.9907667536909659", + "start": 21557, + "type": "Literal", + "type": "Literal", + "value": 0.9907667536909659 + } + ], + "end": 21582, + "start": 21520, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21585, + "start": 21584, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21519, + "name": "line", + "start": 21515, + "type": "Identifier" + }, + "end": 21586, + "optional": false, + "start": 21515, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21624, + "raw": "0.5286610085921146", + "start": 21606, + "type": "Literal", + "type": "Literal", + "value": 0.5286610085921146 + }, + { + "argument": { + "end": 21652, + "raw": "0.7924508308419256", + "start": 21634, + "type": "Literal", + "type": "Literal", + "value": 0.7924508308419256 + }, + "end": 21652, + "operator": "-", + "start": 21633, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 21659, + "start": 21597, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21662, + "start": 21661, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21596, + "name": "line", + "start": 21592, + "type": "Identifier" + }, + "end": 21663, + "optional": false, + "start": 21592, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21701, + "raw": "0.3789978184503342", + "start": 21683, + "type": "Literal", + "type": "Literal", + "value": 0.3789978184503342 + }, + { + "end": 21729, + "raw": "0.12396120576838676", + "start": 21710, + "type": "Literal", + "type": "Literal", + "value": 0.12396120576838676 + } + ], + "end": 21736, + "start": 21674, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21739, + "start": 21738, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21673, + "name": "line", + "start": 21669, + "type": "Identifier" + }, + "end": 21740, + "optional": false, + "start": 21669, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 21779, + "raw": "0.9484912744890612", + "start": 21761, + "type": "Literal", + "type": "Literal", + "value": 0.9484912744890612 + }, + "end": 21779, + "operator": "-", + "start": 21760, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 21806, + "raw": "0.6729649846476855", + "start": 21788, + "type": "Literal", + "type": "Literal", + "value": 0.6729649846476855 + } + ], + "end": 21813, + "start": 21751, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21816, + "start": 21815, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21750, + "name": "line", + "start": 21746, + "type": "Identifier" + }, + "end": 21817, + "optional": false, + "start": 21746, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21855, + "raw": "0.7451758753425153", + "start": 21837, + "type": "Literal", + "type": "Literal", + "value": 0.7451758753425153 + }, + { + "argument": { + "end": 21884, + "raw": "0.21318737562458967", + "start": 21865, + "type": "Literal", + "type": "Literal", + "value": 0.21318737562458967 + }, + "end": 21884, + "operator": "-", + "start": 21864, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 21891, + "start": 21828, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21894, + "start": 21893, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21827, + "name": "line", + "start": 21823, + "type": "Identifier" + }, + "end": 21895, + "optional": false, + "start": 21823, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 21933, + "raw": "0.1873200727251887", + "start": 21915, + "type": "Literal", + "type": "Literal", + "value": 0.1873200727251887 + }, + { + "argument": { + "end": 21962, + "raw": "0.15961374297992448", + "start": 21943, + "type": "Literal", + "type": "Literal", + "value": 0.15961374297992448 + }, + "end": 21962, + "operator": "-", + "start": 21942, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 21969, + "start": 21906, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 21972, + "start": 21971, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21905, + "name": "line", + "start": 21901, + "type": "Identifier" + }, + "end": 21973, + "optional": false, + "start": 21901, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22013, + "raw": "0.05729464924537564", + "start": 21994, + "type": "Literal", + "type": "Literal", + "value": 0.05729464924537564 + }, + "end": 22013, + "operator": "-", + "start": 21993, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 22041, + "raw": "0.5436345558508746", + "start": 22023, + "type": "Literal", + "type": "Literal", + "value": 0.5436345558508746 + }, + "end": 22041, + "operator": "-", + "start": 22022, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 22048, + "start": 21984, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22051, + "start": 22050, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 21983, + "name": "line", + "start": 21979, + "type": "Identifier" + }, + "end": 22052, + "optional": false, + "start": 21979, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22092, + "raw": "0.09582414374469184", + "start": 22073, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 22092, + "operator": "-", + "start": 22072, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 22120, + "raw": "0.7533839681212353", + "start": 22102, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 22120, + "operator": "-", + "start": 22101, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 22127, + "start": 22063, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22130, + "start": 22129, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22062, + "name": "line", + "start": 22058, + "type": "Identifier" + }, + "end": 22131, + "optional": false, + "start": 22058, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22171, + "raw": "0.17254116580051848", + "start": 22152, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 22171, + "operator": "-", + "start": 22151, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 22199, + "raw": "0.7669113400341137", + "start": 22181, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 22199, + "operator": "-", + "start": 22180, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 22206, + "start": 22142, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22209, + "start": 22208, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22141, + "name": "line", + "start": 22137, + "type": "Identifier" + }, + "end": 22210, + "optional": false, + "start": 22137, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 22240, + "raw": "0.8944730032887609", + "start": 22222, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 22260, + "raw": "0.6093318694741408", + "start": 22242, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 22261, + "start": 22221, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22264, + "start": 22263, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22220, + "name": "line", + "start": 22216, + "type": "Identifier" + }, + "end": 22265, + "optional": false, + "start": 22216, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22304, + "raw": "0.3670208139314082", + "start": 22286, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 22304, + "operator": "-", + "start": 22285, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 22332, + "raw": "0.21201331909674526", + "start": 22313, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 22339, + "start": 22276, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22342, + "start": 22341, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22275, + "name": "line", + "start": 22271, + "type": "Identifier" + }, + "end": 22343, + "optional": false, + "start": 22271, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22382, + "raw": "0.4707511307971115", + "start": 22364, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 22382, + "operator": "-", + "start": 22363, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 22409, + "raw": "0.4905279615419764", + "start": 22391, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 22416, + "start": 22354, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22419, + "start": 22418, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22353, + "name": "line", + "start": 22349, + "type": "Identifier" + }, + "end": 22420, + "optional": false, + "start": 22349, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22459, + "raw": "0.8328324229085962", + "start": 22441, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 22459, + "operator": "-", + "start": 22440, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 22486, + "raw": "0.4677492878818803", + "start": 22468, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 22493, + "start": 22431, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22496, + "start": 22495, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22430, + "name": "line", + "start": 22426, + "type": "Identifier" + }, + "end": 22497, + "optional": false, + "start": 22426, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22536, + "raw": "0.8111463382182231", + "start": 22518, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 22536, + "operator": "-", + "start": 22517, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 22565, + "raw": "0.41814807547140576", + "start": 22546, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 22565, + "operator": "-", + "start": 22545, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 22572, + "start": 22508, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22575, + "start": 22574, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22507, + "name": "line", + "start": 22503, + "type": "Identifier" + }, + "end": 22576, + "optional": false, + "start": 22503, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 22615, + "raw": "0.03807684940941125", + "start": 22596, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 22643, + "raw": "0.25664826686353326", + "start": 22624, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 22650, + "start": 22587, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22653, + "start": 22652, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22586, + "name": "line", + "start": 22582, + "type": "Identifier" + }, + "end": 22654, + "optional": false, + "start": 22582, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 22693, + "raw": "0.23950083339596384", + "start": 22674, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 22721, + "raw": "0.43693196301855575", + "start": 22702, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 22728, + "start": 22665, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22731, + "start": 22730, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22664, + "name": "line", + "start": 22660, + "type": "Identifier" + }, + "end": 22732, + "optional": false, + "start": 22660, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22772, + "raw": "0.16279444820904887", + "start": 22753, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 22772, + "operator": "-", + "start": 22752, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 22799, + "raw": "0.8064475707664818", + "start": 22781, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 22806, + "start": 22743, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22809, + "start": 22808, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22742, + "name": "line", + "start": 22738, + "type": "Identifier" + }, + "end": 22810, + "optional": false, + "start": 22738, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 22850, + "raw": "0.08972872009232558", + "start": 22831, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 22850, + "operator": "-", + "start": 22830, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 22879, + "raw": "0.08887625823751266", + "start": 22860, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 22879, + "operator": "-", + "start": 22859, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 22886, + "start": 22821, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22889, + "start": 22888, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22820, + "name": "line", + "start": 22816, + "type": "Identifier" + }, + "end": 22890, + "optional": false, + "start": 22816, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 22928, + "raw": "0.9203433427102556", + "start": 22910, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 22957, + "raw": "0.17343459369697545", + "start": 22938, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 22957, + "operator": "-", + "start": 22937, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 22964, + "start": 22901, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 22967, + "start": 22966, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22900, + "name": "line", + "start": 22896, + "type": "Identifier" + }, + "end": 22968, + "optional": false, + "start": 22896, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23009, + "raw": "0.0017496234414517975", + "start": 22988, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 23037, + "raw": "0.5178508316168335", + "start": 23019, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 23037, + "operator": "-", + "start": 23018, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 23044, + "start": 22979, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23047, + "start": 23046, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 22978, + "name": "line", + "start": 22974, + "type": "Identifier" + }, + "end": 23048, + "optional": false, + "start": 22974, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23086, + "raw": "0.6206263405732759", + "start": 23068, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 23114, + "raw": "0.8733399468665124", + "start": 23096, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 23114, + "operator": "-", + "start": 23095, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 23121, + "start": 23059, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23124, + "start": 23123, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23058, + "name": "line", + "start": 23054, + "type": "Identifier" + }, + "end": 23125, + "optional": false, + "start": 23054, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 23164, + "raw": "0.7776386664456383", + "start": 23146, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 23164, + "operator": "-", + "start": 23145, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 23191, + "raw": "0.7602780485384968", + "start": 23173, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 23198, + "start": 23136, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23201, + "start": 23200, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23135, + "name": "line", + "start": 23131, + "type": "Identifier" + }, + "end": 23202, + "optional": false, + "start": 23131, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23232, + "raw": "0.5439379760788592", + "start": 23214, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 23252, + "raw": "0.8449177589350552", + "start": 23234, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 23253, + "start": 23213, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23256, + "start": 23255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23212, + "name": "line", + "start": 23208, + "type": "Identifier" + }, + "end": 23257, + "optional": false, + "start": 23208, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 23297, + "raw": "0.13036646025917076", + "start": 23278, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 23297, + "operator": "-", + "start": 23277, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 23326, + "raw": "0.012051713627069693", + "start": 23306, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 23333, + "start": 23268, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23336, + "start": 23335, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23267, + "name": "line", + "start": 23263, + "type": "Identifier" + }, + "end": 23337, + "optional": false, + "start": 23263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 23376, + "raw": "0.1656465612645519", + "start": 23358, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 23376, + "operator": "-", + "start": 23357, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 23405, + "raw": "0.20775229173765486", + "start": 23386, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 23405, + "operator": "-", + "start": 23385, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 23412, + "start": 23348, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23415, + "start": 23414, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23347, + "name": "line", + "start": 23343, + "type": "Identifier" + }, + "end": 23416, + "optional": false, + "start": 23343, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 23455, + "raw": "0.0962723255929061", + "start": 23437, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 23455, + "operator": "-", + "start": 23436, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 23484, + "raw": "0.05417797659066137", + "start": 23465, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 23484, + "operator": "-", + "start": 23464, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 23491, + "start": 23427, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23494, + "start": 23493, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23426, + "name": "line", + "start": 23422, + "type": "Identifier" + }, + "end": 23495, + "optional": false, + "start": 23422, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23524, + "raw": "0.902108945498191", + "start": 23507, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 23544, + "raw": "0.3958978534964961", + "start": 23526, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 23545, + "start": 23506, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23548, + "start": 23547, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23505, + "name": "line", + "start": 23501, + "type": "Identifier" + }, + "end": 23549, + "optional": false, + "start": 23501, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23588, + "raw": "0.27997950083139167", + "start": 23569, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 23617, + "raw": "0.17778188444008958", + "start": 23598, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 23617, + "operator": "-", + "start": 23597, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 23624, + "start": 23560, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23627, + "start": 23626, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23559, + "name": "line", + "start": 23555, + "type": "Identifier" + }, + "end": 23628, + "optional": false, + "start": 23555, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23658, + "raw": "0.5235806061589545", + "start": 23640, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 23677, + "raw": "0.694318985642328", + "start": 23660, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 23678, + "start": 23639, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23681, + "start": 23680, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23638, + "name": "line", + "start": 23634, + "type": "Identifier" + }, + "end": 23682, + "optional": false, + "start": 23634, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23721, + "raw": "0.39140760219992154", + "start": 23702, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 23749, + "raw": "0.7839795272576484", + "start": 23731, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 23749, + "operator": "-", + "start": 23730, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 23756, + "start": 23693, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23759, + "start": 23758, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23692, + "name": "line", + "start": 23688, + "type": "Identifier" + }, + "end": 23760, + "optional": false, + "start": 23688, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23790, + "raw": "0.8414243527073519", + "start": 23772, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 23810, + "raw": "0.5395591528940082", + "start": 23792, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 23811, + "start": 23771, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23814, + "start": 23813, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23770, + "name": "line", + "start": 23766, + "type": "Identifier" + }, + "end": 23815, + "optional": false, + "start": 23766, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23853, + "raw": "0.6137667704875602", + "start": 23835, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 23881, + "raw": "0.22119647516722085", + "start": 23862, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 23888, + "start": 23826, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23891, + "start": 23890, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23825, + "name": "line", + "start": 23821, + "type": "Identifier" + }, + "end": 23892, + "optional": false, + "start": 23821, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 23922, + "raw": "0.8830488380766681", + "start": 23904, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 23942, + "raw": "0.6996724408425232", + "start": 23924, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 23943, + "start": 23903, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 23946, + "start": 23945, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23902, + "name": "line", + "start": 23898, + "type": "Identifier" + }, + "end": 23947, + "optional": false, + "start": 23898, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 23987, + "raw": "0.41290485754343953", + "start": 23968, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 23987, + "operator": "-", + "start": 23967, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 24015, + "raw": "0.4152647361760933", + "start": 23997, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 24015, + "operator": "-", + "start": 23996, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24022, + "start": 23958, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24025, + "start": 24024, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 23957, + "name": "line", + "start": 23953, + "type": "Identifier" + }, + "end": 24026, + "optional": false, + "start": 23953, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24064, + "raw": "0.5169538755575687", + "start": 24046, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 24092, + "raw": "0.9085567867302617", + "start": 24074, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 24092, + "operator": "-", + "start": 24073, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24099, + "start": 24037, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24102, + "start": 24101, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24036, + "name": "line", + "start": 24032, + "type": "Identifier" + }, + "end": 24103, + "optional": false, + "start": 24032, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 24142, + "raw": "0.6716353749059765", + "start": 24124, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 24142, + "operator": "-", + "start": 24123, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 24170, + "raw": "0.9605576808879026", + "start": 24152, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 24170, + "operator": "-", + "start": 24151, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24177, + "start": 24114, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24180, + "start": 24179, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24113, + "name": "line", + "start": 24109, + "type": "Identifier" + }, + "end": 24181, + "optional": false, + "start": 24109, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24221, + "raw": "0.010280170930300203", + "start": 24201, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 24250, + "raw": "0.37344123662342166", + "start": 24231, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 24250, + "operator": "-", + "start": 24230, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24257, + "start": 24192, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24260, + "start": 24259, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24191, + "name": "line", + "start": 24187, + "type": "Identifier" + }, + "end": 24261, + "optional": false, + "start": 24187, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24300, + "raw": "0.10357375682791004", + "start": 24281, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 24329, + "raw": "0.42294321030821425", + "start": 24310, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 24329, + "operator": "-", + "start": 24309, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24336, + "start": 24272, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24339, + "start": 24338, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24271, + "name": "line", + "start": 24267, + "type": "Identifier" + }, + "end": 24340, + "optional": false, + "start": 24267, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24378, + "raw": "0.4520311575096987", + "start": 24360, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 24407, + "raw": "0.11232675307600548", + "start": 24388, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 24407, + "operator": "-", + "start": 24387, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24414, + "start": 24351, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24417, + "start": 24416, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24350, + "name": "line", + "start": 24346, + "type": "Identifier" + }, + "end": 24418, + "optional": false, + "start": 24346, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 24457, + "raw": "0.8821185914380845", + "start": 24439, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 24457, + "operator": "-", + "start": 24438, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 24485, + "raw": "0.7155147434939819", + "start": 24467, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 24485, + "operator": "-", + "start": 24466, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24492, + "start": 24429, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24495, + "start": 24494, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24428, + "name": "line", + "start": 24424, + "type": "Identifier" + }, + "end": 24496, + "optional": false, + "start": 24424, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24526, + "raw": "0.9195487101690416", + "start": 24508, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 24546, + "raw": "0.2691627465297364", + "start": 24528, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 24547, + "start": 24507, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24550, + "start": 24549, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24506, + "name": "line", + "start": 24502, + "type": "Identifier" + }, + "end": 24551, + "optional": false, + "start": 24502, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24589, + "raw": "0.7098978191546745", + "start": 24571, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 24617, + "raw": "0.11710004169385968", + "start": 24598, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 24624, + "start": 24562, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24627, + "start": 24626, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24561, + "name": "line", + "start": 24557, + "type": "Identifier" + }, + "end": 24628, + "optional": false, + "start": 24557, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 24668, + "raw": "0.37876368560819995", + "start": 24649, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 24668, + "operator": "-", + "start": 24648, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 24695, + "raw": "0.7106729314759084", + "start": 24677, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 24702, + "start": 24639, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24705, + "start": 24704, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24638, + "name": "line", + "start": 24634, + "type": "Identifier" + }, + "end": 24706, + "optional": false, + "start": 24634, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 24746, + "raw": "0.29728126898353335", + "start": 24727, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 24746, + "operator": "-", + "start": 24726, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 24775, + "raw": "0.06649734568328003", + "start": 24756, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 24775, + "operator": "-", + "start": 24755, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24782, + "start": 24717, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24785, + "start": 24784, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24716, + "name": "line", + "start": 24712, + "type": "Identifier" + }, + "end": 24786, + "optional": false, + "start": 24712, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24825, + "raw": "0.22965781558352072", + "start": 24806, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 24853, + "raw": "0.7601866432836641", + "start": 24835, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 24853, + "operator": "-", + "start": 24834, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 24860, + "start": 24797, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24863, + "start": 24862, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24796, + "name": "line", + "start": 24792, + "type": "Identifier" + }, + "end": 24864, + "optional": false, + "start": 24792, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 24903, + "raw": "0.6356501074317229", + "start": 24885, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 24903, + "operator": "-", + "start": 24884, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 24931, + "raw": "0.19458425399338064", + "start": 24912, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 24938, + "start": 24875, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24941, + "start": 24940, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24874, + "name": "line", + "start": 24870, + "type": "Identifier" + }, + "end": 24942, + "optional": false, + "start": 24870, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 24972, + "raw": "0.5721251777404546", + "start": 24954, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 24992, + "raw": "0.2888584097921527", + "start": 24974, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 24993, + "start": 24953, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 24996, + "start": 24995, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 24952, + "name": "line", + "start": 24948, + "type": "Identifier" + }, + "end": 24997, + "optional": false, + "start": 24948, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 25036, + "raw": "0.9580409549552311", + "start": 25018, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 25036, + "operator": "-", + "start": 25017, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 25065, + "raw": "0.02243818192078395", + "start": 25046, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 25065, + "operator": "-", + "start": 25045, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25072, + "start": 25008, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25075, + "start": 25074, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25007, + "name": "line", + "start": 25003, + "type": "Identifier" + }, + "end": 25076, + "optional": false, + "start": 25003, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 25114, + "raw": "0.3299184618602866", + "start": 25096, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 25142, + "raw": "0.8353726942369875", + "start": 25124, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 25142, + "operator": "-", + "start": 25123, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25149, + "start": 25087, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25152, + "start": 25151, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25086, + "name": "line", + "start": 25082, + "type": "Identifier" + }, + "end": 25153, + "optional": false, + "start": 25082, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 25191, + "raw": "0.7434639386755209", + "start": 25173, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 25219, + "raw": "0.7919648864138378", + "start": 25201, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 25219, + "operator": "-", + "start": 25200, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25226, + "start": 25164, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25229, + "start": 25228, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25163, + "name": "line", + "start": 25159, + "type": "Identifier" + }, + "end": 25230, + "optional": false, + "start": 25159, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 25260, + "raw": "0.9935751011164615", + "start": 25242, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 25280, + "raw": "0.9042566468497608", + "start": 25262, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 25281, + "start": 25241, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25284, + "start": 25283, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25240, + "name": "line", + "start": 25236, + "type": "Identifier" + }, + "end": 25285, + "optional": false, + "start": 25236, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 25324, + "raw": "0.5035812884687294", + "start": 25306, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 25324, + "operator": "-", + "start": 25305, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 25351, + "raw": "0.5150967434989442", + "start": 25333, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 25358, + "start": 25296, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25361, + "start": 25360, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25295, + "name": "line", + "start": 25291, + "type": "Identifier" + }, + "end": 25362, + "optional": false, + "start": 25291, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 25392, + "raw": "0.5526227215900215", + "start": 25374, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 25412, + "raw": "0.7612604137272441", + "start": 25394, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 25413, + "start": 25373, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25416, + "start": 25415, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25372, + "name": "line", + "start": 25368, + "type": "Identifier" + }, + "end": 25417, + "optional": false, + "start": 25368, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 25455, + "raw": "0.8593271349126876", + "start": 25437, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 25483, + "raw": "0.08414894953725849", + "start": 25464, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 25490, + "start": 25428, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25493, + "start": 25492, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25427, + "name": "line", + "start": 25423, + "type": "Identifier" + }, + "end": 25494, + "optional": false, + "start": 25423, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 25533, + "raw": "0.8181049219192864", + "start": 25515, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 25533, + "operator": "-", + "start": 25514, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 25560, + "raw": "0.903548131323352", + "start": 25543, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 25560, + "operator": "-", + "start": 25542, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25567, + "start": 25505, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25570, + "start": 25569, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25504, + "name": "line", + "start": 25500, + "type": "Identifier" + }, + "end": 25571, + "optional": false, + "start": 25500, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 25609, + "raw": "0.3165782044458305", + "start": 25591, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 25638, + "raw": "0.24189274252014914", + "start": 25619, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 25638, + "operator": "-", + "start": 25618, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25645, + "start": 25582, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25648, + "start": 25647, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25581, + "name": "line", + "start": 25577, + "type": "Identifier" + }, + "end": 25649, + "optional": false, + "start": 25577, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 25689, + "raw": "0.44390956414045135", + "start": 25670, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 25689, + "operator": "-", + "start": 25669, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 25718, + "raw": "0.25912591535126905", + "start": 25699, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 25718, + "operator": "-", + "start": 25698, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25725, + "start": 25660, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25728, + "start": 25727, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25659, + "name": "line", + "start": 25655, + "type": "Identifier" + }, + "end": 25729, + "optional": false, + "start": 25655, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 25768, + "raw": "0.6605165911891009", + "start": 25750, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 25768, + "operator": "-", + "start": 25749, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 25797, + "raw": "0.40355115288839194", + "start": 25778, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 25797, + "operator": "-", + "start": 25777, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25804, + "start": 25740, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25807, + "start": 25806, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25739, + "name": "line", + "start": 25735, + "type": "Identifier" + }, + "end": 25808, + "optional": false, + "start": 25735, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 25847, + "raw": "0.7170489950180006", + "start": 25829, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 25847, + "operator": "-", + "start": 25828, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 25875, + "raw": "0.23454356079651384", + "start": 25856, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 25882, + "start": 25819, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25885, + "start": 25884, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25818, + "name": "line", + "start": 25814, + "type": "Identifier" + }, + "end": 25886, + "optional": false, + "start": 25814, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 25925, + "raw": "0.2568187045379722", + "start": 25907, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 25925, + "operator": "-", + "start": 25906, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 25954, + "raw": "0.45031188717601367", + "start": 25935, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 25954, + "operator": "-", + "start": 25934, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 25961, + "start": 25897, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 25964, + "start": 25963, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25896, + "name": "line", + "start": 25892, + "type": "Identifier" + }, + "end": 25965, + "optional": false, + "start": 25892, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 26003, + "raw": "0.6751951211858687", + "start": 25985, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 26031, + "raw": "0.9709424233465593", + "start": 26013, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 26031, + "operator": "-", + "start": 26012, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 26038, + "start": 25976, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26041, + "start": 26040, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 25975, + "name": "line", + "start": 25971, + "type": "Identifier" + }, + "end": 26042, + "optional": false, + "start": 25971, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 26081, + "raw": "0.5689619842972184", + "start": 26063, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 26081, + "operator": "-", + "start": 26062, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 26108, + "raw": "0.5918969913790362", + "start": 26090, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 26115, + "start": 26053, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26118, + "start": 26117, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26052, + "name": "line", + "start": 26048, + "type": "Identifier" + }, + "end": 26119, + "optional": false, + "start": 26048, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 26158, + "raw": "0.8328324229085962", + "start": 26140, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 26158, + "operator": "-", + "start": 26139, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 26185, + "raw": "0.4677492878818803", + "start": 26167, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 26192, + "start": 26130, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26195, + "start": 26194, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26129, + "name": "line", + "start": 26125, + "type": "Identifier" + }, + "end": 26196, + "optional": false, + "start": 26125, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 26235, + "raw": "0.8111463382182231", + "start": 26217, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 26235, + "operator": "-", + "start": 26216, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 26264, + "raw": "0.41814807547140576", + "start": 26245, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 26264, + "operator": "-", + "start": 26244, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 26271, + "start": 26207, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26274, + "start": 26273, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26206, + "name": "line", + "start": 26202, + "type": "Identifier" + }, + "end": 26275, + "optional": false, + "start": 26202, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 26314, + "raw": "0.03807684940941125", + "start": 26295, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 26342, + "raw": "0.25664826686353326", + "start": 26323, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 26349, + "start": 26286, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26352, + "start": 26351, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26285, + "name": "line", + "start": 26281, + "type": "Identifier" + }, + "end": 26353, + "optional": false, + "start": 26281, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 26392, + "raw": "0.23950083339596384", + "start": 26373, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 26420, + "raw": "0.43693196301855575", + "start": 26401, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 26427, + "start": 26364, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26430, + "start": 26429, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26363, + "name": "line", + "start": 26359, + "type": "Identifier" + }, + "end": 26431, + "optional": false, + "start": 26359, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 26471, + "raw": "0.16279444820904887", + "start": 26452, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 26471, + "operator": "-", + "start": 26451, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 26498, + "raw": "0.8064475707664818", + "start": 26480, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 26505, + "start": 26442, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26508, + "start": 26507, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26441, + "name": "line", + "start": 26437, + "type": "Identifier" + }, + "end": 26509, + "optional": false, + "start": 26437, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 26549, + "raw": "0.08972872009232558", + "start": 26530, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 26549, + "operator": "-", + "start": 26529, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 26578, + "raw": "0.08887625823751266", + "start": 26559, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 26578, + "operator": "-", + "start": 26558, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 26585, + "start": 26520, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26588, + "start": 26587, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26519, + "name": "line", + "start": 26515, + "type": "Identifier" + }, + "end": 26589, + "optional": false, + "start": 26515, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 26627, + "raw": "0.9203433427102556", + "start": 26609, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 26656, + "raw": "0.17343459369697545", + "start": 26637, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 26656, + "operator": "-", + "start": 26636, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 26663, + "start": 26600, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26666, + "start": 26665, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26599, + "name": "line", + "start": 26595, + "type": "Identifier" + }, + "end": 26667, + "optional": false, + "start": 26595, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 26708, + "raw": "0.0017496234414517975", + "start": 26687, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 26736, + "raw": "0.5178508316168335", + "start": 26718, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 26736, + "operator": "-", + "start": 26717, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 26743, + "start": 26678, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26746, + "start": 26745, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26677, + "name": "line", + "start": 26673, + "type": "Identifier" + }, + "end": 26747, + "optional": false, + "start": 26673, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 26785, + "raw": "0.6206263405732759", + "start": 26767, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 26813, + "raw": "0.8733399468665124", + "start": 26795, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 26813, + "operator": "-", + "start": 26794, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 26820, + "start": 26758, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26823, + "start": 26822, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26757, + "name": "line", + "start": 26753, + "type": "Identifier" + }, + "end": 26824, + "optional": false, + "start": 26753, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 26863, + "raw": "0.7776386664456383", + "start": 26845, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 26863, + "operator": "-", + "start": 26844, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 26890, + "raw": "0.7602780485384968", + "start": 26872, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 26897, + "start": 26835, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26900, + "start": 26899, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26834, + "name": "line", + "start": 26830, + "type": "Identifier" + }, + "end": 26901, + "optional": false, + "start": 26830, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 26931, + "raw": "0.5439379760788592", + "start": 26913, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 26951, + "raw": "0.8449177589350552", + "start": 26933, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 26952, + "start": 26912, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 26955, + "start": 26954, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26911, + "name": "line", + "start": 26907, + "type": "Identifier" + }, + "end": 26956, + "optional": false, + "start": 26907, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 26996, + "raw": "0.13036646025917076", + "start": 26977, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 26996, + "operator": "-", + "start": 26976, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 27025, + "raw": "0.012051713627069693", + "start": 27005, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 27032, + "start": 26967, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27035, + "start": 27034, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 26966, + "name": "line", + "start": 26962, + "type": "Identifier" + }, + "end": 27036, + "optional": false, + "start": 26962, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 27075, + "raw": "0.1656465612645519", + "start": 27057, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 27075, + "operator": "-", + "start": 27056, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 27104, + "raw": "0.20775229173765486", + "start": 27085, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 27104, + "operator": "-", + "start": 27084, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 27111, + "start": 27047, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27114, + "start": 27113, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27046, + "name": "line", + "start": 27042, + "type": "Identifier" + }, + "end": 27115, + "optional": false, + "start": 27042, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 27154, + "raw": "0.0962723255929061", + "start": 27136, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 27154, + "operator": "-", + "start": 27135, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 27183, + "raw": "0.05417797659066137", + "start": 27164, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 27183, + "operator": "-", + "start": 27163, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 27190, + "start": 27126, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27193, + "start": 27192, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27125, + "name": "line", + "start": 27121, + "type": "Identifier" + }, + "end": 27194, + "optional": false, + "start": 27121, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27223, + "raw": "0.902108945498191", + "start": 27206, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 27243, + "raw": "0.3958978534964961", + "start": 27225, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 27244, + "start": 27205, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27247, + "start": 27246, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27204, + "name": "line", + "start": 27200, + "type": "Identifier" + }, + "end": 27248, + "optional": false, + "start": 27200, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27287, + "raw": "0.27997950083139167", + "start": 27268, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 27316, + "raw": "0.17778188444008958", + "start": 27297, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 27316, + "operator": "-", + "start": 27296, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 27323, + "start": 27259, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27326, + "start": 27325, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27258, + "name": "line", + "start": 27254, + "type": "Identifier" + }, + "end": 27327, + "optional": false, + "start": 27254, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27357, + "raw": "0.5235806061589545", + "start": 27339, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 27376, + "raw": "0.694318985642328", + "start": 27359, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 27377, + "start": 27338, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27380, + "start": 27379, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27337, + "name": "line", + "start": 27333, + "type": "Identifier" + }, + "end": 27381, + "optional": false, + "start": 27333, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27420, + "raw": "0.39140760219992154", + "start": 27401, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 27448, + "raw": "0.7839795272576484", + "start": 27430, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 27448, + "operator": "-", + "start": 27429, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 27455, + "start": 27392, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27458, + "start": 27457, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27391, + "name": "line", + "start": 27387, + "type": "Identifier" + }, + "end": 27459, + "optional": false, + "start": 27387, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27489, + "raw": "0.8414243527073519", + "start": 27471, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 27509, + "raw": "0.5395591528940082", + "start": 27491, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 27510, + "start": 27470, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27513, + "start": 27512, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27469, + "name": "line", + "start": 27465, + "type": "Identifier" + }, + "end": 27514, + "optional": false, + "start": 27465, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27552, + "raw": "0.6137667704875602", + "start": 27534, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 27580, + "raw": "0.22119647516722085", + "start": 27561, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 27587, + "start": 27525, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27590, + "start": 27589, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27524, + "name": "line", + "start": 27520, + "type": "Identifier" + }, + "end": 27591, + "optional": false, + "start": 27520, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27621, + "raw": "0.8830488380766681", + "start": 27603, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 27641, + "raw": "0.6996724408425232", + "start": 27623, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 27642, + "start": 27602, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27645, + "start": 27644, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27601, + "name": "line", + "start": 27597, + "type": "Identifier" + }, + "end": 27646, + "optional": false, + "start": 27597, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 27685, + "raw": "0.3670208139314082", + "start": 27667, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 27685, + "operator": "-", + "start": 27666, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 27713, + "raw": "0.21201331909674526", + "start": 27694, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 27720, + "start": 27657, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27723, + "start": 27722, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27656, + "name": "line", + "start": 27652, + "type": "Identifier" + }, + "end": 27724, + "optional": false, + "start": 27652, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 27763, + "raw": "0.4707511307971115", + "start": 27745, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 27763, + "operator": "-", + "start": 27744, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 27790, + "raw": "0.4905279615419764", + "start": 27772, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 27797, + "start": 27735, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27800, + "start": 27799, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27734, + "name": "line", + "start": 27730, + "type": "Identifier" + }, + "end": 27801, + "optional": false, + "start": 27730, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 27840, + "raw": "0.8328324229085962", + "start": 27822, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 27840, + "operator": "-", + "start": 27821, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 27867, + "raw": "0.4677492878818803", + "start": 27849, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 27874, + "start": 27812, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27877, + "start": 27876, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27811, + "name": "line", + "start": 27807, + "type": "Identifier" + }, + "end": 27878, + "optional": false, + "start": 27807, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 27917, + "raw": "0.8111463382182231", + "start": 27899, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 27917, + "operator": "-", + "start": 27898, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 27946, + "raw": "0.41814807547140576", + "start": 27927, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 27946, + "operator": "-", + "start": 27926, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 27953, + "start": 27889, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 27956, + "start": 27955, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27888, + "name": "line", + "start": 27884, + "type": "Identifier" + }, + "end": 27957, + "optional": false, + "start": 27884, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 27996, + "raw": "0.03807684940941125", + "start": 27977, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 28024, + "raw": "0.25664826686353326", + "start": 28005, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 28031, + "start": 27968, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28034, + "start": 28033, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 27967, + "name": "line", + "start": 27963, + "type": "Identifier" + }, + "end": 28035, + "optional": false, + "start": 27963, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 28074, + "raw": "0.23950083339596384", + "start": 28055, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 28102, + "raw": "0.43693196301855575", + "start": 28083, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 28109, + "start": 28046, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28112, + "start": 28111, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28045, + "name": "line", + "start": 28041, + "type": "Identifier" + }, + "end": 28113, + "optional": false, + "start": 28041, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 28153, + "raw": "0.16279444820904887", + "start": 28134, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 28153, + "operator": "-", + "start": 28133, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 28180, + "raw": "0.8064475707664818", + "start": 28162, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 28187, + "start": 28124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28190, + "start": 28189, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28123, + "name": "line", + "start": 28119, + "type": "Identifier" + }, + "end": 28191, + "optional": false, + "start": 28119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 28231, + "raw": "0.08972872009232558", + "start": 28212, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 28231, + "operator": "-", + "start": 28211, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 28260, + "raw": "0.08887625823751266", + "start": 28241, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 28260, + "operator": "-", + "start": 28240, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 28267, + "start": 28202, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28270, + "start": 28269, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28201, + "name": "line", + "start": 28197, + "type": "Identifier" + }, + "end": 28271, + "optional": false, + "start": 28197, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 28309, + "raw": "0.9203433427102556", + "start": 28291, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 28338, + "raw": "0.17343459369697545", + "start": 28319, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 28338, + "operator": "-", + "start": 28318, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 28345, + "start": 28282, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28348, + "start": 28347, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28281, + "name": "line", + "start": 28277, + "type": "Identifier" + }, + "end": 28349, + "optional": false, + "start": 28277, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 28390, + "raw": "0.0017496234414517975", + "start": 28369, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 28418, + "raw": "0.5178508316168335", + "start": 28400, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 28418, + "operator": "-", + "start": 28399, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 28425, + "start": 28360, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28428, + "start": 28427, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28359, + "name": "line", + "start": 28355, + "type": "Identifier" + }, + "end": 28429, + "optional": false, + "start": 28355, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 28467, + "raw": "0.6206263405732759", + "start": 28449, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 28495, + "raw": "0.8733399468665124", + "start": 28477, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 28495, + "operator": "-", + "start": 28476, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 28502, + "start": 28440, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28505, + "start": 28504, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28439, + "name": "line", + "start": 28435, + "type": "Identifier" + }, + "end": 28506, + "optional": false, + "start": 28435, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 28545, + "raw": "0.7776386664456383", + "start": 28527, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 28545, + "operator": "-", + "start": 28526, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 28572, + "raw": "0.7602780485384968", + "start": 28554, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 28579, + "start": 28517, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28582, + "start": 28581, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28516, + "name": "line", + "start": 28512, + "type": "Identifier" + }, + "end": 28583, + "optional": false, + "start": 28512, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 28613, + "raw": "0.5439379760788592", + "start": 28595, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 28633, + "raw": "0.8449177589350552", + "start": 28615, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 28634, + "start": 28594, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28637, + "start": 28636, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28593, + "name": "line", + "start": 28589, + "type": "Identifier" + }, + "end": 28638, + "optional": false, + "start": 28589, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 28678, + "raw": "0.13036646025917076", + "start": 28659, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 28678, + "operator": "-", + "start": 28658, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 28707, + "raw": "0.012051713627069693", + "start": 28687, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 28714, + "start": 28649, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28717, + "start": 28716, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28648, + "name": "line", + "start": 28644, + "type": "Identifier" + }, + "end": 28718, + "optional": false, + "start": 28644, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 28757, + "raw": "0.1656465612645519", + "start": 28739, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 28757, + "operator": "-", + "start": 28738, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 28786, + "raw": "0.20775229173765486", + "start": 28767, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 28786, + "operator": "-", + "start": 28766, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 28793, + "start": 28729, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28796, + "start": 28795, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28728, + "name": "line", + "start": 28724, + "type": "Identifier" + }, + "end": 28797, + "optional": false, + "start": 28724, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 28836, + "raw": "0.0962723255929061", + "start": 28818, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 28836, + "operator": "-", + "start": 28817, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 28865, + "raw": "0.05417797659066137", + "start": 28846, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 28865, + "operator": "-", + "start": 28845, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 28872, + "start": 28808, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28875, + "start": 28874, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28807, + "name": "line", + "start": 28803, + "type": "Identifier" + }, + "end": 28876, + "optional": false, + "start": 28803, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 28905, + "raw": "0.902108945498191", + "start": 28888, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 28925, + "raw": "0.3958978534964961", + "start": 28907, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 28926, + "start": 28887, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 28929, + "start": 28928, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28886, + "name": "line", + "start": 28882, + "type": "Identifier" + }, + "end": 28930, + "optional": false, + "start": 28882, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 28969, + "raw": "0.27997950083139167", + "start": 28950, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 28998, + "raw": "0.17778188444008958", + "start": 28979, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 28998, + "operator": "-", + "start": 28978, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29005, + "start": 28941, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29008, + "start": 29007, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 28940, + "name": "line", + "start": 28936, + "type": "Identifier" + }, + "end": 29009, + "optional": false, + "start": 28936, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29039, + "raw": "0.5235806061589545", + "start": 29021, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 29058, + "raw": "0.694318985642328", + "start": 29041, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 29059, + "start": 29020, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29062, + "start": 29061, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29019, + "name": "line", + "start": 29015, + "type": "Identifier" + }, + "end": 29063, + "optional": false, + "start": 29015, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29102, + "raw": "0.39140760219992154", + "start": 29083, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 29130, + "raw": "0.7839795272576484", + "start": 29112, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 29130, + "operator": "-", + "start": 29111, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29137, + "start": 29074, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29140, + "start": 29139, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29073, + "name": "line", + "start": 29069, + "type": "Identifier" + }, + "end": 29141, + "optional": false, + "start": 29069, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29171, + "raw": "0.8414243527073519", + "start": 29153, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 29191, + "raw": "0.5395591528940082", + "start": 29173, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 29192, + "start": 29152, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29195, + "start": 29194, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29151, + "name": "line", + "start": 29147, + "type": "Identifier" + }, + "end": 29196, + "optional": false, + "start": 29147, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29234, + "raw": "0.6137667704875602", + "start": 29216, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 29262, + "raw": "0.22119647516722085", + "start": 29243, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 29269, + "start": 29207, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29272, + "start": 29271, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29206, + "name": "line", + "start": 29202, + "type": "Identifier" + }, + "end": 29273, + "optional": false, + "start": 29202, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29303, + "raw": "0.8830488380766681", + "start": 29285, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 29323, + "raw": "0.6996724408425232", + "start": 29305, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 29324, + "start": 29284, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29327, + "start": 29326, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29283, + "name": "line", + "start": 29279, + "type": "Identifier" + }, + "end": 29328, + "optional": false, + "start": 29279, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 29368, + "raw": "0.41290485754343953", + "start": 29349, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 29368, + "operator": "-", + "start": 29348, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 29396, + "raw": "0.4152647361760933", + "start": 29378, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 29396, + "operator": "-", + "start": 29377, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29403, + "start": 29339, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29406, + "start": 29405, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29338, + "name": "line", + "start": 29334, + "type": "Identifier" + }, + "end": 29407, + "optional": false, + "start": 29334, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29445, + "raw": "0.5169538755575687", + "start": 29427, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 29473, + "raw": "0.9085567867302617", + "start": 29455, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 29473, + "operator": "-", + "start": 29454, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29480, + "start": 29418, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29483, + "start": 29482, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29417, + "name": "line", + "start": 29413, + "type": "Identifier" + }, + "end": 29484, + "optional": false, + "start": 29413, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 29523, + "raw": "0.6716353749059765", + "start": 29505, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 29523, + "operator": "-", + "start": 29504, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 29551, + "raw": "0.9605576808879026", + "start": 29533, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 29551, + "operator": "-", + "start": 29532, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29558, + "start": 29495, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29561, + "start": 29560, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29494, + "name": "line", + "start": 29490, + "type": "Identifier" + }, + "end": 29562, + "optional": false, + "start": 29490, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29602, + "raw": "0.010280170930300203", + "start": 29582, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 29631, + "raw": "0.37344123662342166", + "start": 29612, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 29631, + "operator": "-", + "start": 29611, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29638, + "start": 29573, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29641, + "start": 29640, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29572, + "name": "line", + "start": 29568, + "type": "Identifier" + }, + "end": 29642, + "optional": false, + "start": 29568, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29681, + "raw": "0.10357375682791004", + "start": 29662, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 29710, + "raw": "0.42294321030821425", + "start": 29691, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 29710, + "operator": "-", + "start": 29690, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29717, + "start": 29653, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29720, + "start": 29719, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29652, + "name": "line", + "start": 29648, + "type": "Identifier" + }, + "end": 29721, + "optional": false, + "start": 29648, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29759, + "raw": "0.4520311575096987", + "start": 29741, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 29788, + "raw": "0.11232675307600548", + "start": 29769, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 29788, + "operator": "-", + "start": 29768, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29795, + "start": 29732, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29798, + "start": 29797, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29731, + "name": "line", + "start": 29727, + "type": "Identifier" + }, + "end": 29799, + "optional": false, + "start": 29727, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 29838, + "raw": "0.8821185914380845", + "start": 29820, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 29838, + "operator": "-", + "start": 29819, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 29866, + "raw": "0.7155147434939819", + "start": 29848, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 29866, + "operator": "-", + "start": 29847, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 29873, + "start": 29810, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29876, + "start": 29875, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29809, + "name": "line", + "start": 29805, + "type": "Identifier" + }, + "end": 29877, + "optional": false, + "start": 29805, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29907, + "raw": "0.9195487101690416", + "start": 29889, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 29927, + "raw": "0.2691627465297364", + "start": 29909, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 29928, + "start": 29888, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 29931, + "start": 29930, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29887, + "name": "line", + "start": 29883, + "type": "Identifier" + }, + "end": 29932, + "optional": false, + "start": 29883, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 29970, + "raw": "0.7098978191546745", + "start": 29952, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 29998, + "raw": "0.11710004169385968", + "start": 29979, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 30005, + "start": 29943, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30008, + "start": 30007, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 29942, + "name": "line", + "start": 29938, + "type": "Identifier" + }, + "end": 30009, + "optional": false, + "start": 29938, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 30049, + "raw": "0.37876368560819995", + "start": 30030, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 30049, + "operator": "-", + "start": 30029, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 30076, + "raw": "0.7106729314759084", + "start": 30058, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 30083, + "start": 30020, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30086, + "start": 30085, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30019, + "name": "line", + "start": 30015, + "type": "Identifier" + }, + "end": 30087, + "optional": false, + "start": 30015, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 30127, + "raw": "0.29728126898353335", + "start": 30108, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 30127, + "operator": "-", + "start": 30107, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 30156, + "raw": "0.06649734568328003", + "start": 30137, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 30156, + "operator": "-", + "start": 30136, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 30163, + "start": 30098, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30166, + "start": 30165, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30097, + "name": "line", + "start": 30093, + "type": "Identifier" + }, + "end": 30167, + "optional": false, + "start": 30093, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30206, + "raw": "0.22965781558352072", + "start": 30187, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 30234, + "raw": "0.7601866432836641", + "start": 30216, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 30234, + "operator": "-", + "start": 30215, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 30241, + "start": 30178, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30244, + "start": 30243, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30177, + "name": "line", + "start": 30173, + "type": "Identifier" + }, + "end": 30245, + "optional": false, + "start": 30173, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 30284, + "raw": "0.6356501074317229", + "start": 30266, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 30284, + "operator": "-", + "start": 30265, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 30312, + "raw": "0.19458425399338064", + "start": 30293, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 30319, + "start": 30256, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30322, + "start": 30321, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30255, + "name": "line", + "start": 30251, + "type": "Identifier" + }, + "end": 30323, + "optional": false, + "start": 30251, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30353, + "raw": "0.5721251777404546", + "start": 30335, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 30373, + "raw": "0.2888584097921527", + "start": 30355, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 30374, + "start": 30334, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30377, + "start": 30376, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30333, + "name": "line", + "start": 30329, + "type": "Identifier" + }, + "end": 30378, + "optional": false, + "start": 30329, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 30417, + "raw": "0.9580409549552311", + "start": 30399, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 30417, + "operator": "-", + "start": 30398, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 30446, + "raw": "0.02243818192078395", + "start": 30427, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 30446, + "operator": "-", + "start": 30426, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 30453, + "start": 30389, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30456, + "start": 30455, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30388, + "name": "line", + "start": 30384, + "type": "Identifier" + }, + "end": 30457, + "optional": false, + "start": 30384, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30495, + "raw": "0.3299184618602866", + "start": 30477, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 30523, + "raw": "0.8353726942369875", + "start": 30505, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 30523, + "operator": "-", + "start": 30504, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 30530, + "start": 30468, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30533, + "start": 30532, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30467, + "name": "line", + "start": 30463, + "type": "Identifier" + }, + "end": 30534, + "optional": false, + "start": 30463, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30572, + "raw": "0.7434639386755209", + "start": 30554, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 30600, + "raw": "0.7919648864138378", + "start": 30582, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 30600, + "operator": "-", + "start": 30581, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 30607, + "start": 30545, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30610, + "start": 30609, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30544, + "name": "line", + "start": 30540, + "type": "Identifier" + }, + "end": 30611, + "optional": false, + "start": 30540, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30641, + "raw": "0.9935751011164615", + "start": 30623, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 30661, + "raw": "0.9042566468497608", + "start": 30643, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 30662, + "start": 30622, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30665, + "start": 30664, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30621, + "name": "line", + "start": 30617, + "type": "Identifier" + }, + "end": 30666, + "optional": false, + "start": 30617, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 30705, + "raw": "0.5035812884687294", + "start": 30687, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 30705, + "operator": "-", + "start": 30686, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 30732, + "raw": "0.5150967434989442", + "start": 30714, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 30739, + "start": 30677, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30742, + "start": 30741, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30676, + "name": "line", + "start": 30672, + "type": "Identifier" + }, + "end": 30743, + "optional": false, + "start": 30672, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30773, + "raw": "0.5526227215900215", + "start": 30755, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 30793, + "raw": "0.7612604137272441", + "start": 30775, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 30794, + "start": 30754, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30797, + "start": 30796, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30753, + "name": "line", + "start": 30749, + "type": "Identifier" + }, + "end": 30798, + "optional": false, + "start": 30749, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30836, + "raw": "0.8593271349126876", + "start": 30818, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 30864, + "raw": "0.08414894953725849", + "start": 30845, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 30871, + "start": 30809, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30874, + "start": 30873, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30808, + "name": "line", + "start": 30804, + "type": "Identifier" + }, + "end": 30875, + "optional": false, + "start": 30804, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 30914, + "raw": "0.8181049219192864", + "start": 30896, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 30914, + "operator": "-", + "start": 30895, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 30941, + "raw": "0.903548131323352", + "start": 30924, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 30941, + "operator": "-", + "start": 30923, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 30948, + "start": 30886, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 30951, + "start": 30950, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30885, + "name": "line", + "start": 30881, + "type": "Identifier" + }, + "end": 30952, + "optional": false, + "start": 30881, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 30990, + "raw": "0.3165782044458305", + "start": 30972, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 31019, + "raw": "0.24189274252014914", + "start": 31000, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 31019, + "operator": "-", + "start": 30999, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 31026, + "start": 30963, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31029, + "start": 31028, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 30962, + "name": "line", + "start": 30958, + "type": "Identifier" + }, + "end": 31030, + "optional": false, + "start": 30958, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31070, + "raw": "0.44390956414045135", + "start": 31051, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 31070, + "operator": "-", + "start": 31050, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 31099, + "raw": "0.25912591535126905", + "start": 31080, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 31099, + "operator": "-", + "start": 31079, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 31106, + "start": 31041, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31109, + "start": 31108, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31040, + "name": "line", + "start": 31036, + "type": "Identifier" + }, + "end": 31110, + "optional": false, + "start": 31036, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31149, + "raw": "0.6605165911891009", + "start": 31131, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 31149, + "operator": "-", + "start": 31130, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 31178, + "raw": "0.40355115288839194", + "start": 31159, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 31178, + "operator": "-", + "start": 31158, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 31185, + "start": 31121, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31188, + "start": 31187, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31120, + "name": "line", + "start": 31116, + "type": "Identifier" + }, + "end": 31189, + "optional": false, + "start": 31116, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31228, + "raw": "0.7170489950180006", + "start": 31210, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 31228, + "operator": "-", + "start": 31209, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 31256, + "raw": "0.23454356079651384", + "start": 31237, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 31263, + "start": 31200, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31266, + "start": 31265, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31199, + "name": "line", + "start": 31195, + "type": "Identifier" + }, + "end": 31267, + "optional": false, + "start": 31195, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31306, + "raw": "0.2568187045379722", + "start": 31288, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 31306, + "operator": "-", + "start": 31287, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 31335, + "raw": "0.45031188717601367", + "start": 31316, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 31335, + "operator": "-", + "start": 31315, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 31342, + "start": 31278, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31345, + "start": 31344, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31277, + "name": "line", + "start": 31273, + "type": "Identifier" + }, + "end": 31346, + "optional": false, + "start": 31273, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 31384, + "raw": "0.6751951211858687", + "start": 31366, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 31412, + "raw": "0.9709424233465593", + "start": 31394, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 31412, + "operator": "-", + "start": 31393, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 31419, + "start": 31357, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31422, + "start": 31421, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31356, + "name": "line", + "start": 31352, + "type": "Identifier" + }, + "end": 31423, + "optional": false, + "start": 31352, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31462, + "raw": "0.5689619842972184", + "start": 31444, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 31462, + "operator": "-", + "start": 31443, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 31489, + "raw": "0.5918969913790362", + "start": 31471, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 31496, + "start": 31434, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31499, + "start": 31498, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31433, + "name": "line", + "start": 31429, + "type": "Identifier" + }, + "end": 31500, + "optional": false, + "start": 31429, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31539, + "raw": "0.8328324229085962", + "start": 31521, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 31539, + "operator": "-", + "start": 31520, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 31566, + "raw": "0.4677492878818803", + "start": 31548, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 31573, + "start": 31511, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31576, + "start": 31575, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31510, + "name": "line", + "start": 31506, + "type": "Identifier" + }, + "end": 31577, + "optional": false, + "start": 31506, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31616, + "raw": "0.8111463382182231", + "start": 31598, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 31616, + "operator": "-", + "start": 31597, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 31645, + "raw": "0.41814807547140576", + "start": 31626, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 31645, + "operator": "-", + "start": 31625, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 31652, + "start": 31588, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31655, + "start": 31654, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31587, + "name": "line", + "start": 31583, + "type": "Identifier" + }, + "end": 31656, + "optional": false, + "start": 31583, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 31695, + "raw": "0.03807684940941125", + "start": 31676, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 31723, + "raw": "0.25664826686353326", + "start": 31704, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 31730, + "start": 31667, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31733, + "start": 31732, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31666, + "name": "line", + "start": 31662, + "type": "Identifier" + }, + "end": 31734, + "optional": false, + "start": 31662, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 31773, + "raw": "0.23950083339596384", + "start": 31754, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 31801, + "raw": "0.43693196301855575", + "start": 31782, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 31808, + "start": 31745, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31811, + "start": 31810, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31744, + "name": "line", + "start": 31740, + "type": "Identifier" + }, + "end": 31812, + "optional": false, + "start": 31740, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31852, + "raw": "0.16279444820904887", + "start": 31833, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 31852, + "operator": "-", + "start": 31832, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 31879, + "raw": "0.8064475707664818", + "start": 31861, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 31886, + "start": 31823, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31889, + "start": 31888, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31822, + "name": "line", + "start": 31818, + "type": "Identifier" + }, + "end": 31890, + "optional": false, + "start": 31818, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 31930, + "raw": "0.08972872009232558", + "start": 31911, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 31930, + "operator": "-", + "start": 31910, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 31959, + "raw": "0.08887625823751266", + "start": 31940, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 31959, + "operator": "-", + "start": 31939, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 31966, + "start": 31901, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 31969, + "start": 31968, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31900, + "name": "line", + "start": 31896, + "type": "Identifier" + }, + "end": 31970, + "optional": false, + "start": 31896, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32008, + "raw": "0.9203433427102556", + "start": 31990, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 32037, + "raw": "0.17343459369697545", + "start": 32018, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 32037, + "operator": "-", + "start": 32017, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 32044, + "start": 31981, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32047, + "start": 32046, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 31980, + "name": "line", + "start": 31976, + "type": "Identifier" + }, + "end": 32048, + "optional": false, + "start": 31976, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32089, + "raw": "0.0017496234414517975", + "start": 32068, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 32117, + "raw": "0.5178508316168335", + "start": 32099, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 32117, + "operator": "-", + "start": 32098, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 32124, + "start": 32059, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32127, + "start": 32126, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32058, + "name": "line", + "start": 32054, + "type": "Identifier" + }, + "end": 32128, + "optional": false, + "start": 32054, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32166, + "raw": "0.6206263405732759", + "start": 32148, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 32194, + "raw": "0.8733399468665124", + "start": 32176, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 32194, + "operator": "-", + "start": 32175, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 32201, + "start": 32139, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32204, + "start": 32203, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32138, + "name": "line", + "start": 32134, + "type": "Identifier" + }, + "end": 32205, + "optional": false, + "start": 32134, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 32244, + "raw": "0.7776386664456383", + "start": 32226, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 32244, + "operator": "-", + "start": 32225, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 32271, + "raw": "0.7602780485384968", + "start": 32253, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 32278, + "start": 32216, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32281, + "start": 32280, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32215, + "name": "line", + "start": 32211, + "type": "Identifier" + }, + "end": 32282, + "optional": false, + "start": 32211, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32312, + "raw": "0.5439379760788592", + "start": 32294, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 32332, + "raw": "0.8449177589350552", + "start": 32314, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 32333, + "start": 32293, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32336, + "start": 32335, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32292, + "name": "line", + "start": 32288, + "type": "Identifier" + }, + "end": 32337, + "optional": false, + "start": 32288, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 32377, + "raw": "0.13036646025917076", + "start": 32358, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 32377, + "operator": "-", + "start": 32357, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 32406, + "raw": "0.012051713627069693", + "start": 32386, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 32413, + "start": 32348, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32416, + "start": 32415, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32347, + "name": "line", + "start": 32343, + "type": "Identifier" + }, + "end": 32417, + "optional": false, + "start": 32343, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 32456, + "raw": "0.1656465612645519", + "start": 32438, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 32456, + "operator": "-", + "start": 32437, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 32485, + "raw": "0.20775229173765486", + "start": 32466, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 32485, + "operator": "-", + "start": 32465, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 32492, + "start": 32428, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32495, + "start": 32494, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32427, + "name": "line", + "start": 32423, + "type": "Identifier" + }, + "end": 32496, + "optional": false, + "start": 32423, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 32535, + "raw": "0.0962723255929061", + "start": 32517, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 32535, + "operator": "-", + "start": 32516, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 32564, + "raw": "0.05417797659066137", + "start": 32545, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 32564, + "operator": "-", + "start": 32544, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 32571, + "start": 32507, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32574, + "start": 32573, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32506, + "name": "line", + "start": 32502, + "type": "Identifier" + }, + "end": 32575, + "optional": false, + "start": 32502, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32604, + "raw": "0.902108945498191", + "start": 32587, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 32624, + "raw": "0.3958978534964961", + "start": 32606, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 32625, + "start": 32586, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32628, + "start": 32627, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32585, + "name": "line", + "start": 32581, + "type": "Identifier" + }, + "end": 32629, + "optional": false, + "start": 32581, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32668, + "raw": "0.27997950083139167", + "start": 32649, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 32697, + "raw": "0.17778188444008958", + "start": 32678, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 32697, + "operator": "-", + "start": 32677, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 32704, + "start": 32640, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32707, + "start": 32706, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32639, + "name": "line", + "start": 32635, + "type": "Identifier" + }, + "end": 32708, + "optional": false, + "start": 32635, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32738, + "raw": "0.5235806061589545", + "start": 32720, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 32757, + "raw": "0.694318985642328", + "start": 32740, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 32758, + "start": 32719, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32761, + "start": 32760, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32718, + "name": "line", + "start": 32714, + "type": "Identifier" + }, + "end": 32762, + "optional": false, + "start": 32714, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32801, + "raw": "0.39140760219992154", + "start": 32782, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 32829, + "raw": "0.7839795272576484", + "start": 32811, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 32829, + "operator": "-", + "start": 32810, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 32836, + "start": 32773, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32839, + "start": 32838, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32772, + "name": "line", + "start": 32768, + "type": "Identifier" + }, + "end": 32840, + "optional": false, + "start": 32768, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32870, + "raw": "0.8414243527073519", + "start": 32852, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 32890, + "raw": "0.5395591528940082", + "start": 32872, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 32891, + "start": 32851, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32894, + "start": 32893, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32850, + "name": "line", + "start": 32846, + "type": "Identifier" + }, + "end": 32895, + "optional": false, + "start": 32846, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 32933, + "raw": "0.6137667704875602", + "start": 32915, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 32961, + "raw": "0.22119647516722085", + "start": 32942, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 32968, + "start": 32906, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 32971, + "start": 32970, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32905, + "name": "line", + "start": 32901, + "type": "Identifier" + }, + "end": 32972, + "optional": false, + "start": 32901, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33012, + "raw": "0.09582414374469184", + "start": 32993, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 33012, + "operator": "-", + "start": 32992, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 33040, + "raw": "0.7533839681212353", + "start": 33022, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 33040, + "operator": "-", + "start": 33021, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33047, + "start": 32983, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33050, + "start": 33049, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 32982, + "name": "line", + "start": 32978, + "type": "Identifier" + }, + "end": 33051, + "optional": false, + "start": 32978, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33091, + "raw": "0.17254116580051848", + "start": 33072, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 33091, + "operator": "-", + "start": 33071, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 33119, + "raw": "0.7669113400341137", + "start": 33101, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 33119, + "operator": "-", + "start": 33100, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33126, + "start": 33062, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33129, + "start": 33128, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33061, + "name": "line", + "start": 33057, + "type": "Identifier" + }, + "end": 33130, + "optional": false, + "start": 33057, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 33160, + "raw": "0.8944730032887609", + "start": 33142, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 33180, + "raw": "0.6093318694741408", + "start": 33162, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 33181, + "start": 33141, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33184, + "start": 33183, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33140, + "name": "line", + "start": 33136, + "type": "Identifier" + }, + "end": 33185, + "optional": false, + "start": 33136, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33225, + "raw": "0.41290485754343953", + "start": 33206, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 33225, + "operator": "-", + "start": 33205, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 33253, + "raw": "0.4152647361760933", + "start": 33235, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 33253, + "operator": "-", + "start": 33234, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33260, + "start": 33196, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33263, + "start": 33262, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33195, + "name": "line", + "start": 33191, + "type": "Identifier" + }, + "end": 33264, + "optional": false, + "start": 33191, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 33302, + "raw": "0.5169538755575687", + "start": 33284, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 33330, + "raw": "0.9085567867302617", + "start": 33312, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 33330, + "operator": "-", + "start": 33311, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33337, + "start": 33275, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33340, + "start": 33339, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33274, + "name": "line", + "start": 33270, + "type": "Identifier" + }, + "end": 33341, + "optional": false, + "start": 33270, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 33379, + "raw": "0.6751951211858687", + "start": 33361, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 33407, + "raw": "0.9709424233465593", + "start": 33389, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 33407, + "operator": "-", + "start": 33388, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33414, + "start": 33352, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33417, + "start": 33416, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33351, + "name": "line", + "start": 33347, + "type": "Identifier" + }, + "end": 33418, + "optional": false, + "start": 33347, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33457, + "raw": "0.5689619842972184", + "start": 33439, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 33457, + "operator": "-", + "start": 33438, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 33484, + "raw": "0.5918969913790362", + "start": 33466, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 33491, + "start": 33429, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33494, + "start": 33493, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33428, + "name": "line", + "start": 33424, + "type": "Identifier" + }, + "end": 33495, + "optional": false, + "start": 33424, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 33533, + "raw": "0.9464450621708211", + "start": 33515, + "type": "Literal", + "type": "Literal", + "value": 0.9464450621708211 + }, + { + "argument": { + "end": 33561, + "raw": "0.2684908127803667", + "start": 33543, + "type": "Literal", + "type": "Literal", + "value": 0.2684908127803667 + }, + "end": 33561, + "operator": "-", + "start": 33542, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33568, + "start": 33506, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33571, + "start": 33570, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33505, + "name": "line", + "start": 33501, + "type": "Identifier" + }, + "end": 33572, + "optional": false, + "start": 33501, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 33602, + "raw": "0.5241732366617591", + "start": 33584, + "type": "Literal", + "type": "Literal", + "value": 0.5241732366617591 + }, + { + "end": 33622, + "raw": "0.9011437416408563", + "start": 33604, + "type": "Literal", + "type": "Literal", + "value": 0.9011437416408563 + } + ], + "end": 33623, + "start": 33583, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33626, + "start": 33625, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33582, + "name": "line", + "start": 33578, + "type": "Identifier" + }, + "end": 33627, + "optional": false, + "start": 33578, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33667, + "raw": "0.14255393713960607", + "start": 33648, + "type": "Literal", + "type": "Literal", + "value": 0.14255393713960607 + }, + "end": 33667, + "operator": "-", + "start": 33647, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 33695, + "raw": "0.5194262624564814", + "start": 33677, + "type": "Literal", + "type": "Literal", + "value": 0.5194262624564814 + }, + "end": 33695, + "operator": "-", + "start": 33676, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33702, + "start": 33638, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33705, + "start": 33704, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33637, + "name": "line", + "start": 33633, + "type": "Identifier" + }, + "end": 33706, + "optional": false, + "start": 33633, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33745, + "raw": "0.4287123231350338", + "start": 33727, + "type": "Literal", + "type": "Literal", + "value": 0.4287123231350338 + }, + "end": 33745, + "operator": "-", + "start": 33726, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 33773, + "raw": "0.4223564528725028", + "start": 33755, + "type": "Literal", + "type": "Literal", + "value": 0.4223564528725028 + }, + "end": 33773, + "operator": "-", + "start": 33754, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33780, + "start": 33717, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33783, + "start": 33782, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33716, + "name": "line", + "start": 33712, + "type": "Identifier" + }, + "end": 33784, + "optional": false, + "start": 33712, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33824, + "raw": "0.09316367294024519", + "start": 33805, + "type": "Literal", + "type": "Literal", + "value": 0.09316367294024519 + }, + "end": 33824, + "operator": "-", + "start": 33804, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 33852, + "raw": "0.9063127021008246", + "start": 33834, + "type": "Literal", + "type": "Literal", + "value": 0.9063127021008246 + }, + "end": 33852, + "operator": "-", + "start": 33833, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 33859, + "start": 33795, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33862, + "start": 33861, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33794, + "name": "line", + "start": 33790, + "type": "Identifier" + }, + "end": 33863, + "optional": false, + "start": 33790, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 33902, + "raw": "0.2767766535558669", + "start": 33884, + "type": "Literal", + "type": "Literal", + "value": 0.2767766535558669 + }, + "end": 33902, + "operator": "-", + "start": 33883, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 33929, + "raw": "0.6816248114129131", + "start": 33911, + "type": "Literal", + "type": "Literal", + "value": 0.6816248114129131 + } + ], + "end": 33936, + "start": 33874, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 33939, + "start": 33938, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33873, + "name": "line", + "start": 33869, + "type": "Identifier" + }, + "end": 33940, + "optional": false, + "start": 33869, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 33978, + "raw": "0.9796762495562534", + "start": 33960, + "type": "Literal", + "type": "Literal", + "value": 0.9796762495562534 + }, + { + "argument": { + "end": 34006, + "raw": "0.0822145668330625", + "start": 33988, + "type": "Literal", + "type": "Literal", + "value": 0.0822145668330625 + }, + "end": 34006, + "operator": "-", + "start": 33987, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34013, + "start": 33951, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34016, + "start": 34015, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 33950, + "name": "line", + "start": 33946, + "type": "Identifier" + }, + "end": 34017, + "optional": false, + "start": 33946, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 34056, + "raw": "0.8666513070867441", + "start": 34038, + "type": "Literal", + "type": "Literal", + "value": 0.8666513070867441 + }, + "end": 34056, + "operator": "-", + "start": 34037, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 34083, + "raw": "0.301053160242023", + "start": 34066, + "type": "Literal", + "type": "Literal", + "value": 0.301053160242023 + }, + "end": 34083, + "operator": "-", + "start": 34065, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34090, + "start": 34028, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34093, + "start": 34092, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34027, + "name": "line", + "start": 34023, + "type": "Identifier" + }, + "end": 34094, + "optional": false, + "start": 34023, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34131, + "raw": "0.537415656028112", + "start": 34114, + "type": "Literal", + "type": "Literal", + "value": 0.537415656028112 + }, + { + "end": 34160, + "raw": "0.020272692875002774", + "start": 34140, + "type": "Literal", + "type": "Literal", + "value": 0.020272692875002774 + } + ], + "end": 34167, + "start": 34105, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34170, + "start": 34169, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34104, + "name": "line", + "start": 34100, + "type": "Identifier" + }, + "end": 34171, + "optional": false, + "start": 34100, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34209, + "raw": "0.9332396256457531", + "start": 34191, + "type": "Literal", + "type": "Literal", + "value": 0.9332396256457531 + }, + { + "argument": { + "end": 34237, + "raw": "0.6228175690649898", + "start": 34219, + "type": "Literal", + "type": "Literal", + "value": 0.6228175690649898 + }, + "end": 34237, + "operator": "-", + "start": 34218, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34244, + "start": 34182, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34247, + "start": 34246, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34181, + "name": "line", + "start": 34177, + "type": "Identifier" + }, + "end": 34248, + "optional": false, + "start": 34177, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34287, + "raw": "0.18052415837320734", + "start": 34268, + "type": "Literal", + "type": "Literal", + "value": 0.18052415837320734 + }, + { + "argument": { + "end": 34316, + "raw": "0.36894384647296197", + "start": 34297, + "type": "Literal", + "type": "Literal", + "value": 0.36894384647296197 + }, + "end": 34316, + "operator": "-", + "start": 34296, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34323, + "start": 34259, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34326, + "start": 34325, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34258, + "name": "line", + "start": 34254, + "type": "Identifier" + }, + "end": 34327, + "optional": false, + "start": 34254, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34357, + "raw": "0.5384372634075449", + "start": 34339, + "type": "Literal", + "type": "Literal", + "value": 0.5384372634075449 + }, + { + "end": 34377, + "raw": "0.2377565050887107", + "start": 34359, + "type": "Literal", + "type": "Literal", + "value": 0.2377565050887107 + } + ], + "end": 34378, + "start": 34338, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34381, + "start": 34380, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34337, + "name": "line", + "start": 34333, + "type": "Identifier" + }, + "end": 34382, + "optional": false, + "start": 34333, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34421, + "raw": "0.39043436929278874", + "start": 34402, + "type": "Literal", + "type": "Literal", + "value": 0.39043436929278874 + }, + { + "end": 34449, + "raw": "0.14273182483160451", + "start": 34430, + "type": "Literal", + "type": "Literal", + "value": 0.14273182483160451 + } + ], + "end": 34456, + "start": 34393, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34459, + "start": 34458, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34392, + "name": "line", + "start": 34388, + "type": "Identifier" + }, + "end": 34460, + "optional": false, + "start": 34388, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34499, + "raw": "0.09782890412897283", + "start": 34480, + "type": "Literal", + "type": "Literal", + "value": 0.09782890412897283 + }, + { + "end": 34526, + "raw": "0.9907667536909659", + "start": 34508, + "type": "Literal", + "type": "Literal", + "value": 0.9907667536909659 + } + ], + "end": 34533, + "start": 34471, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34536, + "start": 34535, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34470, + "name": "line", + "start": 34466, + "type": "Identifier" + }, + "end": 34537, + "optional": false, + "start": 34466, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34575, + "raw": "0.5286610085921146", + "start": 34557, + "type": "Literal", + "type": "Literal", + "value": 0.5286610085921146 + }, + { + "argument": { + "end": 34603, + "raw": "0.7924508308419256", + "start": 34585, + "type": "Literal", + "type": "Literal", + "value": 0.7924508308419256 + }, + "end": 34603, + "operator": "-", + "start": 34584, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34610, + "start": 34548, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34613, + "start": 34612, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34547, + "name": "line", + "start": 34543, + "type": "Identifier" + }, + "end": 34614, + "optional": false, + "start": 34543, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34652, + "raw": "0.3789978184503342", + "start": 34634, + "type": "Literal", + "type": "Literal", + "value": 0.3789978184503342 + }, + { + "end": 34680, + "raw": "0.12396120576838676", + "start": 34661, + "type": "Literal", + "type": "Literal", + "value": 0.12396120576838676 + } + ], + "end": 34687, + "start": 34625, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34690, + "start": 34689, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34624, + "name": "line", + "start": 34620, + "type": "Identifier" + }, + "end": 34691, + "optional": false, + "start": 34620, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 34730, + "raw": "0.9484912744890612", + "start": 34712, + "type": "Literal", + "type": "Literal", + "value": 0.9484912744890612 + }, + "end": 34730, + "operator": "-", + "start": 34711, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 34757, + "raw": "0.6729649846476855", + "start": 34739, + "type": "Literal", + "type": "Literal", + "value": 0.6729649846476855 + } + ], + "end": 34764, + "start": 34702, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34767, + "start": 34766, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34701, + "name": "line", + "start": 34697, + "type": "Identifier" + }, + "end": 34768, + "optional": false, + "start": 34697, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34806, + "raw": "0.7451758753425153", + "start": 34788, + "type": "Literal", + "type": "Literal", + "value": 0.7451758753425153 + }, + { + "argument": { + "end": 34835, + "raw": "0.21318737562458967", + "start": 34816, + "type": "Literal", + "type": "Literal", + "value": 0.21318737562458967 + }, + "end": 34835, + "operator": "-", + "start": 34815, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34842, + "start": 34779, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34845, + "start": 34844, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34778, + "name": "line", + "start": 34774, + "type": "Identifier" + }, + "end": 34846, + "optional": false, + "start": 34774, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 34884, + "raw": "0.1873200727251887", + "start": 34866, + "type": "Literal", + "type": "Literal", + "value": 0.1873200727251887 + }, + { + "argument": { + "end": 34913, + "raw": "0.15961374297992448", + "start": 34894, + "type": "Literal", + "type": "Literal", + "value": 0.15961374297992448 + }, + "end": 34913, + "operator": "-", + "start": 34893, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34920, + "start": 34857, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 34923, + "start": 34922, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34856, + "name": "line", + "start": 34852, + "type": "Identifier" + }, + "end": 34924, + "optional": false, + "start": 34852, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 34964, + "raw": "0.05729464924537564", + "start": 34945, + "type": "Literal", + "type": "Literal", + "value": 0.05729464924537564 + }, + "end": 34964, + "operator": "-", + "start": 34944, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 34992, + "raw": "0.5436345558508746", + "start": 34974, + "type": "Literal", + "type": "Literal", + "value": 0.5436345558508746 + }, + "end": 34992, + "operator": "-", + "start": 34973, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 34999, + "start": 34935, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35002, + "start": 35001, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 34934, + "name": "line", + "start": 34930, + "type": "Identifier" + }, + "end": 35003, + "optional": false, + "start": 34930, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35043, + "raw": "0.09582414374469184", + "start": 35024, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 35043, + "operator": "-", + "start": 35023, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 35071, + "raw": "0.7533839681212353", + "start": 35053, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 35071, + "operator": "-", + "start": 35052, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 35078, + "start": 35014, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35081, + "start": 35080, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35013, + "name": "line", + "start": 35009, + "type": "Identifier" + }, + "end": 35082, + "optional": false, + "start": 35009, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35122, + "raw": "0.17254116580051848", + "start": 35103, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 35122, + "operator": "-", + "start": 35102, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 35150, + "raw": "0.7669113400341137", + "start": 35132, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 35150, + "operator": "-", + "start": 35131, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 35157, + "start": 35093, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35160, + "start": 35159, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35092, + "name": "line", + "start": 35088, + "type": "Identifier" + }, + "end": 35161, + "optional": false, + "start": 35088, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 35191, + "raw": "0.8944730032887609", + "start": 35173, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 35211, + "raw": "0.6093318694741408", + "start": 35193, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 35212, + "start": 35172, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35215, + "start": 35214, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35171, + "name": "line", + "start": 35167, + "type": "Identifier" + }, + "end": 35216, + "optional": false, + "start": 35167, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35255, + "raw": "0.6238548626325471", + "start": 35237, + "type": "Literal", + "type": "Literal", + "value": 0.6238548626325471 + }, + "end": 35255, + "operator": "-", + "start": 35236, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 35282, + "raw": "0.4053626746020169", + "start": 35264, + "type": "Literal", + "type": "Literal", + "value": 0.4053626746020169 + } + ], + "end": 35289, + "start": 35227, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35292, + "start": 35291, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35226, + "name": "line", + "start": 35222, + "type": "Identifier" + }, + "end": 35293, + "optional": false, + "start": 35222, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 35331, + "raw": "0.1379445992766417", + "start": 35313, + "type": "Literal", + "type": "Literal", + "value": 0.1379445992766417 + }, + { + "argument": { + "end": 35360, + "raw": "0.47871087958516045", + "start": 35341, + "type": "Literal", + "type": "Literal", + "value": 0.47871087958516045 + }, + "end": 35360, + "operator": "-", + "start": 35340, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 35367, + "start": 35304, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35370, + "start": 35369, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35303, + "name": "line", + "start": 35299, + "type": "Identifier" + }, + "end": 35371, + "optional": false, + "start": 35299, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35410, + "raw": "0.9516767113283946", + "start": 35392, + "type": "Literal", + "type": "Literal", + "value": 0.9516767113283946 + }, + "end": 35410, + "operator": "-", + "start": 35391, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 35437, + "raw": "0.8619900618578948", + "start": 35419, + "type": "Literal", + "type": "Literal", + "value": 0.8619900618578948 + } + ], + "end": 35444, + "start": 35382, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35447, + "start": 35446, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35381, + "name": "line", + "start": 35377, + "type": "Identifier" + }, + "end": 35448, + "optional": false, + "start": 35377, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 35478, + "raw": "0.9398732950992088", + "start": 35460, + "type": "Literal", + "type": "Literal", + "value": 0.9398732950992088 + }, + { + "end": 35498, + "raw": "0.6326239915683629", + "start": 35480, + "type": "Literal", + "type": "Literal", + "value": 0.6326239915683629 + } + ], + "end": 35499, + "start": 35459, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35502, + "start": 35501, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35458, + "name": "line", + "start": 35454, + "type": "Identifier" + }, + "end": 35503, + "optional": false, + "start": 35454, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35542, + "raw": "0.8631974445502164", + "start": 35524, + "type": "Literal", + "type": "Literal", + "value": 0.8631974445502164 + }, + "end": 35542, + "operator": "-", + "start": 35523, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 35571, + "raw": "0.016153555523963137", + "start": 35551, + "type": "Literal", + "type": "Literal", + "value": 0.016153555523963137 + } + ], + "end": 35578, + "start": 35514, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35581, + "start": 35580, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35513, + "name": "line", + "start": 35509, + "type": "Identifier" + }, + "end": 35582, + "optional": false, + "start": 35509, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 35621, + "raw": "0.19167797120152907", + "start": 35602, + "type": "Literal", + "type": "Literal", + "value": 0.19167797120152907 + }, + { + "argument": { + "end": 35649, + "raw": "0.4916414381703984", + "start": 35631, + "type": "Literal", + "type": "Literal", + "value": 0.4916414381703984 + }, + "end": 35649, + "operator": "-", + "start": 35630, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 35656, + "start": 35593, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35659, + "start": 35658, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35592, + "name": "line", + "start": 35588, + "type": "Identifier" + }, + "end": 35660, + "optional": false, + "start": 35588, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35699, + "raw": "0.8644261221501586", + "start": 35681, + "type": "Literal", + "type": "Literal", + "value": 0.8644261221501586 + }, + "end": 35699, + "operator": "-", + "start": 35680, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 35728, + "raw": "0.11434763886359756", + "start": 35709, + "type": "Literal", + "type": "Literal", + "value": 0.11434763886359756 + }, + "end": 35728, + "operator": "-", + "start": 35708, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 35735, + "start": 35671, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35738, + "start": 35737, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35670, + "name": "line", + "start": 35666, + "type": "Identifier" + }, + "end": 35739, + "optional": false, + "start": 35666, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35780, + "raw": "0.029081958413378572", + "start": 35760, + "type": "Literal", + "type": "Literal", + "value": 0.029081958413378572 + }, + "end": 35780, + "operator": "-", + "start": 35759, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 35808, + "raw": "0.5214138808318329", + "start": 35790, + "type": "Literal", + "type": "Literal", + "value": 0.5214138808318329 + }, + "end": 35808, + "operator": "-", + "start": 35789, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 35815, + "start": 35750, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35818, + "start": 35817, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35749, + "name": "line", + "start": 35745, + "type": "Identifier" + }, + "end": 35819, + "optional": false, + "start": 35745, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35858, + "raw": "0.8713091851579695", + "start": 35840, + "type": "Literal", + "type": "Literal", + "value": 0.8713091851579695 + }, + "end": 35858, + "operator": "-", + "start": 35839, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 35885, + "raw": "0.7866284950967315", + "start": 35867, + "type": "Literal", + "type": "Literal", + "value": 0.7866284950967315 + } + ], + "end": 35892, + "start": 35830, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35895, + "start": 35894, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35829, + "name": "line", + "start": 35825, + "type": "Identifier" + }, + "end": 35896, + "optional": false, + "start": 35825, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 35925, + "raw": "0.884342023093545", + "start": 35908, + "type": "Literal", + "type": "Literal", + "value": 0.884342023093545 + }, + { + "argument": { + "end": 35946, + "raw": "0.1825407002568431", + "start": 35928, + "type": "Literal", + "type": "Literal", + "value": 0.1825407002568431 + }, + "end": 35946, + "operator": "-", + "start": 35927, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 35947, + "start": 35907, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 35950, + "start": 35949, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35906, + "name": "line", + "start": 35902, + "type": "Identifier" + }, + "end": 35951, + "optional": false, + "start": 35902, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 35990, + "raw": "0.6978385295364686", + "start": 35972, + "type": "Literal", + "type": "Literal", + "value": 0.6978385295364686 + }, + "end": 35990, + "operator": "-", + "start": 35971, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 36017, + "raw": "0.0440574328736949", + "start": 35999, + "type": "Literal", + "type": "Literal", + "value": 0.0440574328736949 + } + ], + "end": 36024, + "start": 35962, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36027, + "start": 36026, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 35961, + "name": "line", + "start": 35957, + "type": "Identifier" + }, + "end": 36028, + "optional": false, + "start": 35957, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 36068, + "raw": "0.48055049324331556", + "start": 36049, + "type": "Literal", + "type": "Literal", + "value": 0.48055049324331556 + }, + "end": 36068, + "operator": "-", + "start": 36048, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 36098, + "raw": "0.028546347149214002", + "start": 36078, + "type": "Literal", + "type": "Literal", + "value": 0.028546347149214002 + }, + "end": 36098, + "operator": "-", + "start": 36077, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36105, + "start": 36039, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36108, + "start": 36107, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36038, + "name": "line", + "start": 36034, + "type": "Identifier" + }, + "end": 36109, + "optional": false, + "start": 36034, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36148, + "raw": "0.41283517382864776", + "start": 36129, + "type": "Literal", + "type": "Literal", + "value": 0.41283517382864776 + }, + { + "argument": { + "end": 36177, + "raw": "0.44938038251347323", + "start": 36158, + "type": "Literal", + "type": "Literal", + "value": 0.44938038251347323 + }, + "end": 36177, + "operator": "-", + "start": 36157, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36184, + "start": 36120, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36187, + "start": 36186, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36119, + "name": "line", + "start": 36115, + "type": "Identifier" + }, + "end": 36188, + "optional": false, + "start": 36115, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36218, + "raw": "0.7911399832501751", + "start": 36200, + "type": "Literal", + "type": "Literal", + "value": 0.7911399832501751 + }, + { + "end": 36237, + "raw": "0.893446368526005", + "start": 36220, + "type": "Literal", + "type": "Literal", + "value": 0.893446368526005 + } + ], + "end": 36238, + "start": 36199, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36241, + "start": 36240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36198, + "name": "line", + "start": 36194, + "type": "Identifier" + }, + "end": 36242, + "optional": false, + "start": 36194, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36280, + "raw": "0.6507434699009087", + "start": 36262, + "type": "Literal", + "type": "Literal", + "value": 0.6507434699009087 + }, + { + "argument": { + "end": 36308, + "raw": "0.6890023920962012", + "start": 36290, + "type": "Literal", + "type": "Literal", + "value": 0.6890023920962012 + }, + "end": 36308, + "operator": "-", + "start": 36289, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36315, + "start": 36253, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36318, + "start": 36317, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36252, + "name": "line", + "start": 36248, + "type": "Identifier" + }, + "end": 36319, + "optional": false, + "start": 36248, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36358, + "raw": "0.10489019777253028", + "start": 36339, + "type": "Literal", + "type": "Literal", + "value": 0.10489019777253028 + }, + { + "argument": { + "end": 36386, + "raw": "0.5467450997193952", + "start": 36368, + "type": "Literal", + "type": "Literal", + "value": 0.5467450997193952 + }, + "end": 36386, + "operator": "-", + "start": 36367, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36393, + "start": 36330, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36396, + "start": 36395, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36329, + "name": "line", + "start": 36325, + "type": "Identifier" + }, + "end": 36397, + "optional": false, + "start": 36325, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 36436, + "raw": "0.5760905289992633", + "start": 36418, + "type": "Literal", + "type": "Literal", + "value": 0.5760905289992633 + }, + "end": 36436, + "operator": "-", + "start": 36417, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 36464, + "raw": "0.2639900702114173", + "start": 36446, + "type": "Literal", + "type": "Literal", + "value": 0.2639900702114173 + }, + "end": 36464, + "operator": "-", + "start": 36445, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36471, + "start": 36408, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36474, + "start": 36473, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36407, + "name": "line", + "start": 36403, + "type": "Identifier" + }, + "end": 36475, + "optional": false, + "start": 36403, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36514, + "raw": "0.39828861790105297", + "start": 36495, + "type": "Literal", + "type": "Literal", + "value": 0.39828861790105297 + }, + { + "end": 36541, + "raw": "0.8036624129416385", + "start": 36523, + "type": "Literal", + "type": "Literal", + "value": 0.8036624129416385 + } + ], + "end": 36548, + "start": 36486, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36551, + "start": 36550, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36485, + "name": "line", + "start": 36481, + "type": "Identifier" + }, + "end": 36552, + "optional": false, + "start": 36481, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 36582, + "raw": "0.673848991328553", + "start": 36565, + "type": "Literal", + "type": "Literal", + "value": 0.673848991328553 + }, + "end": 36582, + "operator": "-", + "start": 36564, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 36602, + "raw": "0.918443329270668", + "start": 36585, + "type": "Literal", + "type": "Literal", + "value": 0.918443329270668 + }, + "end": 36602, + "operator": "-", + "start": 36584, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36603, + "start": 36563, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36606, + "start": 36605, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36562, + "name": "line", + "start": 36558, + "type": "Identifier" + }, + "end": 36607, + "optional": false, + "start": 36558, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 36646, + "raw": "0.8599152936179257", + "start": 36628, + "type": "Literal", + "type": "Literal", + "value": 0.8599152936179257 + }, + "end": 36646, + "operator": "-", + "start": 36627, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 36674, + "raw": "0.9499371022680787", + "start": 36656, + "type": "Literal", + "type": "Literal", + "value": 0.9499371022680787 + }, + "end": 36674, + "operator": "-", + "start": 36655, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36681, + "start": 36618, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36684, + "start": 36683, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36617, + "name": "line", + "start": 36613, + "type": "Identifier" + }, + "end": 36685, + "optional": false, + "start": 36613, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36723, + "raw": "0.6285243831393765", + "start": 36705, + "type": "Literal", + "type": "Literal", + "value": 0.6285243831393765 + }, + { + "argument": { + "end": 36751, + "raw": "0.5186557636566307", + "start": 36733, + "type": "Literal", + "type": "Literal", + "value": 0.5186557636566307 + }, + "end": 36751, + "operator": "-", + "start": 36732, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36758, + "start": 36696, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36761, + "start": 36760, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36695, + "name": "line", + "start": 36691, + "type": "Identifier" + }, + "end": 36762, + "optional": false, + "start": 36691, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36800, + "raw": "0.3222412784832269", + "start": 36782, + "type": "Literal", + "type": "Literal", + "value": 0.3222412784832269 + }, + { + "end": 36828, + "raw": "0.24621192679727177", + "start": 36809, + "type": "Literal", + "type": "Literal", + "value": 0.24621192679727177 + } + ], + "end": 36835, + "start": 36773, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36838, + "start": 36837, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36772, + "name": "line", + "start": 36768, + "type": "Identifier" + }, + "end": 36839, + "optional": false, + "start": 36768, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 36878, + "raw": "0.19754357911311016", + "start": 36859, + "type": "Literal", + "type": "Literal", + "value": 0.19754357911311016 + }, + { + "argument": { + "end": 36906, + "raw": "0.7529246632397206", + "start": 36888, + "type": "Literal", + "type": "Literal", + "value": 0.7529246632397206 + }, + "end": 36906, + "operator": "-", + "start": 36887, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 36913, + "start": 36850, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36916, + "start": 36915, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36849, + "name": "line", + "start": 36845, + "type": "Identifier" + }, + "end": 36917, + "optional": false, + "start": 36845, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 36957, + "raw": "0.43181570545865555", + "start": 36938, + "type": "Literal", + "type": "Literal", + "value": 0.43181570545865555 + }, + "end": 36957, + "operator": "-", + "start": 36937, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 36985, + "raw": "0.18945437402201537", + "start": 36966, + "type": "Literal", + "type": "Literal", + "value": 0.18945437402201537 + } + ], + "end": 36992, + "start": 36928, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 36995, + "start": 36994, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 36927, + "name": "line", + "start": 36923, + "type": "Identifier" + }, + "end": 36996, + "optional": false, + "start": 36923, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 37034, + "raw": "0.8714511090241797", + "start": 37016, + "type": "Literal", + "type": "Literal", + "value": 0.8714511090241797 + }, + { + "argument": { + "end": 37062, + "raw": "0.7215844196844685", + "start": 37044, + "type": "Literal", + "type": "Literal", + "value": 0.7215844196844685 + }, + "end": 37062, + "operator": "-", + "start": 37043, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 37069, + "start": 37007, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37072, + "start": 37071, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37006, + "name": "line", + "start": 37002, + "type": "Identifier" + }, + "end": 37073, + "optional": false, + "start": 37002, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 37112, + "raw": "0.3670208139314082", + "start": 37094, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 37112, + "operator": "-", + "start": 37093, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 37140, + "raw": "0.21201331909674526", + "start": 37121, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 37147, + "start": 37084, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37150, + "start": 37149, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37083, + "name": "line", + "start": 37079, + "type": "Identifier" + }, + "end": 37151, + "optional": false, + "start": 37079, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 37190, + "raw": "0.4707511307971115", + "start": 37172, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 37190, + "operator": "-", + "start": 37171, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 37217, + "raw": "0.4905279615419764", + "start": 37199, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 37224, + "start": 37162, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37227, + "start": 37226, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37161, + "name": "line", + "start": 37157, + "type": "Identifier" + }, + "end": 37228, + "optional": false, + "start": 37157, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 37267, + "raw": "0.8328324229085962", + "start": 37249, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 37267, + "operator": "-", + "start": 37248, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 37294, + "raw": "0.4677492878818803", + "start": 37276, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 37301, + "start": 37239, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37304, + "start": 37303, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37238, + "name": "line", + "start": 37234, + "type": "Identifier" + }, + "end": 37305, + "optional": false, + "start": 37234, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 37344, + "raw": "0.8111463382182231", + "start": 37326, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 37344, + "operator": "-", + "start": 37325, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 37373, + "raw": "0.41814807547140576", + "start": 37354, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 37373, + "operator": "-", + "start": 37353, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 37380, + "start": 37316, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37383, + "start": 37382, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37315, + "name": "line", + "start": 37311, + "type": "Identifier" + }, + "end": 37384, + "optional": false, + "start": 37311, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 37423, + "raw": "0.03807684940941125", + "start": 37404, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 37451, + "raw": "0.25664826686353326", + "start": 37432, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 37458, + "start": 37395, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37461, + "start": 37460, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37394, + "name": "line", + "start": 37390, + "type": "Identifier" + }, + "end": 37462, + "optional": false, + "start": 37390, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 37501, + "raw": "0.23950083339596384", + "start": 37482, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 37529, + "raw": "0.43693196301855575", + "start": 37510, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 37536, + "start": 37473, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37539, + "start": 37538, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37472, + "name": "line", + "start": 37468, + "type": "Identifier" + }, + "end": 37540, + "optional": false, + "start": 37468, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 37580, + "raw": "0.16279444820904887", + "start": 37561, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 37580, + "operator": "-", + "start": 37560, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 37607, + "raw": "0.8064475707664818", + "start": 37589, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 37614, + "start": 37551, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37617, + "start": 37616, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37550, + "name": "line", + "start": 37546, + "type": "Identifier" + }, + "end": 37618, + "optional": false, + "start": 37546, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 37658, + "raw": "0.08972872009232558", + "start": 37639, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 37658, + "operator": "-", + "start": 37638, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 37687, + "raw": "0.08887625823751266", + "start": 37668, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 37687, + "operator": "-", + "start": 37667, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 37694, + "start": 37629, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37697, + "start": 37696, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37628, + "name": "line", + "start": 37624, + "type": "Identifier" + }, + "end": 37698, + "optional": false, + "start": 37624, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 37736, + "raw": "0.9203433427102556", + "start": 37718, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 37765, + "raw": "0.17343459369697545", + "start": 37746, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 37765, + "operator": "-", + "start": 37745, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 37772, + "start": 37709, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37775, + "start": 37774, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37708, + "name": "line", + "start": 37704, + "type": "Identifier" + }, + "end": 37776, + "optional": false, + "start": 37704, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 37817, + "raw": "0.0017496234414517975", + "start": 37796, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 37845, + "raw": "0.5178508316168335", + "start": 37827, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 37845, + "operator": "-", + "start": 37826, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 37852, + "start": 37787, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37855, + "start": 37854, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37786, + "name": "line", + "start": 37782, + "type": "Identifier" + }, + "end": 37856, + "optional": false, + "start": 37782, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 37894, + "raw": "0.6206263405732759", + "start": 37876, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 37922, + "raw": "0.8733399468665124", + "start": 37904, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 37922, + "operator": "-", + "start": 37903, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 37929, + "start": 37867, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 37932, + "start": 37931, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37866, + "name": "line", + "start": 37862, + "type": "Identifier" + }, + "end": 37933, + "optional": false, + "start": 37862, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 37972, + "raw": "0.7776386664456383", + "start": 37954, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 37972, + "operator": "-", + "start": 37953, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 37999, + "raw": "0.7602780485384968", + "start": 37981, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 38006, + "start": 37944, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38009, + "start": 38008, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 37943, + "name": "line", + "start": 37939, + "type": "Identifier" + }, + "end": 38010, + "optional": false, + "start": 37939, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38040, + "raw": "0.5439379760788592", + "start": 38022, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 38060, + "raw": "0.8449177589350552", + "start": 38042, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 38061, + "start": 38021, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38064, + "start": 38063, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38020, + "name": "line", + "start": 38016, + "type": "Identifier" + }, + "end": 38065, + "optional": false, + "start": 38016, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 38105, + "raw": "0.13036646025917076", + "start": 38086, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 38105, + "operator": "-", + "start": 38085, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 38134, + "raw": "0.012051713627069693", + "start": 38114, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 38141, + "start": 38076, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38144, + "start": 38143, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38075, + "name": "line", + "start": 38071, + "type": "Identifier" + }, + "end": 38145, + "optional": false, + "start": 38071, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 38184, + "raw": "0.1656465612645519", + "start": 38166, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 38184, + "operator": "-", + "start": 38165, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 38213, + "raw": "0.20775229173765486", + "start": 38194, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 38213, + "operator": "-", + "start": 38193, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 38220, + "start": 38156, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38223, + "start": 38222, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38155, + "name": "line", + "start": 38151, + "type": "Identifier" + }, + "end": 38224, + "optional": false, + "start": 38151, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 38263, + "raw": "0.0962723255929061", + "start": 38245, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 38263, + "operator": "-", + "start": 38244, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 38292, + "raw": "0.05417797659066137", + "start": 38273, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 38292, + "operator": "-", + "start": 38272, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 38299, + "start": 38235, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38302, + "start": 38301, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38234, + "name": "line", + "start": 38230, + "type": "Identifier" + }, + "end": 38303, + "optional": false, + "start": 38230, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38332, + "raw": "0.902108945498191", + "start": 38315, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 38352, + "raw": "0.3958978534964961", + "start": 38334, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 38353, + "start": 38314, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38356, + "start": 38355, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38313, + "name": "line", + "start": 38309, + "type": "Identifier" + }, + "end": 38357, + "optional": false, + "start": 38309, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38396, + "raw": "0.27997950083139167", + "start": 38377, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 38425, + "raw": "0.17778188444008958", + "start": 38406, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 38425, + "operator": "-", + "start": 38405, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 38432, + "start": 38368, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38435, + "start": 38434, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38367, + "name": "line", + "start": 38363, + "type": "Identifier" + }, + "end": 38436, + "optional": false, + "start": 38363, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38466, + "raw": "0.5235806061589545", + "start": 38448, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 38485, + "raw": "0.694318985642328", + "start": 38468, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 38486, + "start": 38447, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38489, + "start": 38488, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38446, + "name": "line", + "start": 38442, + "type": "Identifier" + }, + "end": 38490, + "optional": false, + "start": 38442, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38529, + "raw": "0.39140760219992154", + "start": 38510, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 38557, + "raw": "0.7839795272576484", + "start": 38539, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 38557, + "operator": "-", + "start": 38538, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 38564, + "start": 38501, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38567, + "start": 38566, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38500, + "name": "line", + "start": 38496, + "type": "Identifier" + }, + "end": 38568, + "optional": false, + "start": 38496, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38598, + "raw": "0.8414243527073519", + "start": 38580, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 38618, + "raw": "0.5395591528940082", + "start": 38600, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 38619, + "start": 38579, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38622, + "start": 38621, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38578, + "name": "line", + "start": 38574, + "type": "Identifier" + }, + "end": 38623, + "optional": false, + "start": 38574, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38661, + "raw": "0.6137667704875602", + "start": 38643, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 38689, + "raw": "0.22119647516722085", + "start": 38670, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 38696, + "start": 38634, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38699, + "start": 38698, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38633, + "name": "line", + "start": 38629, + "type": "Identifier" + }, + "end": 38700, + "optional": false, + "start": 38629, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38730, + "raw": "0.8830488380766681", + "start": 38712, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 38750, + "raw": "0.6996724408425232", + "start": 38732, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 38751, + "start": 38711, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38754, + "start": 38753, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38710, + "name": "line", + "start": 38706, + "type": "Identifier" + }, + "end": 38755, + "optional": false, + "start": 38706, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 38795, + "raw": "0.41290485754343953", + "start": 38776, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 38795, + "operator": "-", + "start": 38775, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 38823, + "raw": "0.4152647361760933", + "start": 38805, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 38823, + "operator": "-", + "start": 38804, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 38830, + "start": 38766, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38833, + "start": 38832, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38765, + "name": "line", + "start": 38761, + "type": "Identifier" + }, + "end": 38834, + "optional": false, + "start": 38761, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 38872, + "raw": "0.5169538755575687", + "start": 38854, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 38900, + "raw": "0.9085567867302617", + "start": 38882, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 38900, + "operator": "-", + "start": 38881, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 38907, + "start": 38845, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38910, + "start": 38909, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38844, + "name": "line", + "start": 38840, + "type": "Identifier" + }, + "end": 38911, + "optional": false, + "start": 38840, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 38950, + "raw": "0.6716353749059765", + "start": 38932, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 38950, + "operator": "-", + "start": 38931, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 38978, + "raw": "0.9605576808879026", + "start": 38960, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 38978, + "operator": "-", + "start": 38959, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 38985, + "start": 38922, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 38988, + "start": 38987, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38921, + "name": "line", + "start": 38917, + "type": "Identifier" + }, + "end": 38989, + "optional": false, + "start": 38917, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39029, + "raw": "0.010280170930300203", + "start": 39009, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 39058, + "raw": "0.37344123662342166", + "start": 39039, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 39058, + "operator": "-", + "start": 39038, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39065, + "start": 39000, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39068, + "start": 39067, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 38999, + "name": "line", + "start": 38995, + "type": "Identifier" + }, + "end": 39069, + "optional": false, + "start": 38995, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39108, + "raw": "0.10357375682791004", + "start": 39089, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 39137, + "raw": "0.42294321030821425", + "start": 39118, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 39137, + "operator": "-", + "start": 39117, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39144, + "start": 39080, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39147, + "start": 39146, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39079, + "name": "line", + "start": 39075, + "type": "Identifier" + }, + "end": 39148, + "optional": false, + "start": 39075, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39186, + "raw": "0.4520311575096987", + "start": 39168, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 39215, + "raw": "0.11232675307600548", + "start": 39196, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 39215, + "operator": "-", + "start": 39195, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39222, + "start": 39159, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39225, + "start": 39224, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39158, + "name": "line", + "start": 39154, + "type": "Identifier" + }, + "end": 39226, + "optional": false, + "start": 39154, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 39265, + "raw": "0.8821185914380845", + "start": 39247, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 39265, + "operator": "-", + "start": 39246, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 39293, + "raw": "0.7155147434939819", + "start": 39275, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 39293, + "operator": "-", + "start": 39274, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39300, + "start": 39237, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39303, + "start": 39302, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39236, + "name": "line", + "start": 39232, + "type": "Identifier" + }, + "end": 39304, + "optional": false, + "start": 39232, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39334, + "raw": "0.9195487101690416", + "start": 39316, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 39354, + "raw": "0.2691627465297364", + "start": 39336, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 39355, + "start": 39315, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39358, + "start": 39357, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39314, + "name": "line", + "start": 39310, + "type": "Identifier" + }, + "end": 39359, + "optional": false, + "start": 39310, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39397, + "raw": "0.7098978191546745", + "start": 39379, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 39425, + "raw": "0.11710004169385968", + "start": 39406, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 39432, + "start": 39370, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39435, + "start": 39434, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39369, + "name": "line", + "start": 39365, + "type": "Identifier" + }, + "end": 39436, + "optional": false, + "start": 39365, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 39476, + "raw": "0.37876368560819995", + "start": 39457, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 39476, + "operator": "-", + "start": 39456, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 39503, + "raw": "0.7106729314759084", + "start": 39485, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 39510, + "start": 39447, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39513, + "start": 39512, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39446, + "name": "line", + "start": 39442, + "type": "Identifier" + }, + "end": 39514, + "optional": false, + "start": 39442, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 39554, + "raw": "0.29728126898353335", + "start": 39535, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 39554, + "operator": "-", + "start": 39534, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 39583, + "raw": "0.06649734568328003", + "start": 39564, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 39583, + "operator": "-", + "start": 39563, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39590, + "start": 39525, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39593, + "start": 39592, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39524, + "name": "line", + "start": 39520, + "type": "Identifier" + }, + "end": 39594, + "optional": false, + "start": 39520, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39633, + "raw": "0.22965781558352072", + "start": 39614, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 39661, + "raw": "0.7601866432836641", + "start": 39643, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 39661, + "operator": "-", + "start": 39642, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39668, + "start": 39605, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39671, + "start": 39670, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39604, + "name": "line", + "start": 39600, + "type": "Identifier" + }, + "end": 39672, + "optional": false, + "start": 39600, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 39711, + "raw": "0.6356501074317229", + "start": 39693, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 39711, + "operator": "-", + "start": 39692, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 39739, + "raw": "0.19458425399338064", + "start": 39720, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 39746, + "start": 39683, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39749, + "start": 39748, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39682, + "name": "line", + "start": 39678, + "type": "Identifier" + }, + "end": 39750, + "optional": false, + "start": 39678, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39780, + "raw": "0.5721251777404546", + "start": 39762, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 39800, + "raw": "0.2888584097921527", + "start": 39782, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 39801, + "start": 39761, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39804, + "start": 39803, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39760, + "name": "line", + "start": 39756, + "type": "Identifier" + }, + "end": 39805, + "optional": false, + "start": 39756, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 39844, + "raw": "0.9580409549552311", + "start": 39826, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 39844, + "operator": "-", + "start": 39825, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 39873, + "raw": "0.02243818192078395", + "start": 39854, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 39873, + "operator": "-", + "start": 39853, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39880, + "start": 39816, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39883, + "start": 39882, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39815, + "name": "line", + "start": 39811, + "type": "Identifier" + }, + "end": 39884, + "optional": false, + "start": 39811, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39922, + "raw": "0.3299184618602866", + "start": 39904, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 39950, + "raw": "0.8353726942369875", + "start": 39932, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 39950, + "operator": "-", + "start": 39931, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 39957, + "start": 39895, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 39960, + "start": 39959, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39894, + "name": "line", + "start": 39890, + "type": "Identifier" + }, + "end": 39961, + "optional": false, + "start": 39890, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 39999, + "raw": "0.7434639386755209", + "start": 39981, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 40027, + "raw": "0.7919648864138378", + "start": 40009, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 40027, + "operator": "-", + "start": 40008, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 40034, + "start": 39972, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40037, + "start": 40036, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 39971, + "name": "line", + "start": 39967, + "type": "Identifier" + }, + "end": 40038, + "optional": false, + "start": 39967, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 40068, + "raw": "0.9935751011164615", + "start": 40050, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 40088, + "raw": "0.9042566468497608", + "start": 40070, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 40089, + "start": 40049, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40092, + "start": 40091, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40048, + "name": "line", + "start": 40044, + "type": "Identifier" + }, + "end": 40093, + "optional": false, + "start": 40044, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40132, + "raw": "0.5035812884687294", + "start": 40114, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 40132, + "operator": "-", + "start": 40113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 40159, + "raw": "0.5150967434989442", + "start": 40141, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 40166, + "start": 40104, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40169, + "start": 40168, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40103, + "name": "line", + "start": 40099, + "type": "Identifier" + }, + "end": 40170, + "optional": false, + "start": 40099, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 40200, + "raw": "0.5526227215900215", + "start": 40182, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 40220, + "raw": "0.7612604137272441", + "start": 40202, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 40221, + "start": 40181, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40224, + "start": 40223, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40180, + "name": "line", + "start": 40176, + "type": "Identifier" + }, + "end": 40225, + "optional": false, + "start": 40176, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 40263, + "raw": "0.8593271349126876", + "start": 40245, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 40291, + "raw": "0.08414894953725849", + "start": 40272, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 40298, + "start": 40236, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40301, + "start": 40300, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40235, + "name": "line", + "start": 40231, + "type": "Identifier" + }, + "end": 40302, + "optional": false, + "start": 40231, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40341, + "raw": "0.8181049219192864", + "start": 40323, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 40341, + "operator": "-", + "start": 40322, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 40368, + "raw": "0.903548131323352", + "start": 40351, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 40368, + "operator": "-", + "start": 40350, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 40375, + "start": 40313, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40378, + "start": 40377, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40312, + "name": "line", + "start": 40308, + "type": "Identifier" + }, + "end": 40379, + "optional": false, + "start": 40308, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 40417, + "raw": "0.3165782044458305", + "start": 40399, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 40446, + "raw": "0.24189274252014914", + "start": 40427, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 40446, + "operator": "-", + "start": 40426, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 40453, + "start": 40390, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40456, + "start": 40455, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40389, + "name": "line", + "start": 40385, + "type": "Identifier" + }, + "end": 40457, + "optional": false, + "start": 40385, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40497, + "raw": "0.44390956414045135", + "start": 40478, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 40497, + "operator": "-", + "start": 40477, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 40526, + "raw": "0.25912591535126905", + "start": 40507, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 40526, + "operator": "-", + "start": 40506, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 40533, + "start": 40468, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40536, + "start": 40535, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40467, + "name": "line", + "start": 40463, + "type": "Identifier" + }, + "end": 40537, + "optional": false, + "start": 40463, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40576, + "raw": "0.6605165911891009", + "start": 40558, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 40576, + "operator": "-", + "start": 40557, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 40605, + "raw": "0.40355115288839194", + "start": 40586, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 40605, + "operator": "-", + "start": 40585, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 40612, + "start": 40548, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40615, + "start": 40614, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40547, + "name": "line", + "start": 40543, + "type": "Identifier" + }, + "end": 40616, + "optional": false, + "start": 40543, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40655, + "raw": "0.7170489950180006", + "start": 40637, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 40655, + "operator": "-", + "start": 40636, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 40683, + "raw": "0.23454356079651384", + "start": 40664, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 40690, + "start": 40627, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40693, + "start": 40692, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40626, + "name": "line", + "start": 40622, + "type": "Identifier" + }, + "end": 40694, + "optional": false, + "start": 40622, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40733, + "raw": "0.2568187045379722", + "start": 40715, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 40733, + "operator": "-", + "start": 40714, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 40762, + "raw": "0.45031188717601367", + "start": 40743, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 40762, + "operator": "-", + "start": 40742, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 40769, + "start": 40705, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40772, + "start": 40771, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40704, + "name": "line", + "start": 40700, + "type": "Identifier" + }, + "end": 40773, + "optional": false, + "start": 40700, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 40811, + "raw": "0.6751951211858687", + "start": 40793, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 40839, + "raw": "0.9709424233465593", + "start": 40821, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 40839, + "operator": "-", + "start": 40820, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 40846, + "start": 40784, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40849, + "start": 40848, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40783, + "name": "line", + "start": 40779, + "type": "Identifier" + }, + "end": 40850, + "optional": false, + "start": 40779, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40889, + "raw": "0.5689619842972184", + "start": 40871, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 40889, + "operator": "-", + "start": 40870, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 40916, + "raw": "0.5918969913790362", + "start": 40898, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 40923, + "start": 40861, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 40926, + "start": 40925, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40860, + "name": "line", + "start": 40856, + "type": "Identifier" + }, + "end": 40927, + "optional": false, + "start": 40856, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 40966, + "raw": "0.8328324229085962", + "start": 40948, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 40966, + "operator": "-", + "start": 40947, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 40993, + "raw": "0.4677492878818803", + "start": 40975, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 41000, + "start": 40938, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41003, + "start": 41002, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 40937, + "name": "line", + "start": 40933, + "type": "Identifier" + }, + "end": 41004, + "optional": false, + "start": 40933, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 41043, + "raw": "0.8111463382182231", + "start": 41025, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 41043, + "operator": "-", + "start": 41024, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 41072, + "raw": "0.41814807547140576", + "start": 41053, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 41072, + "operator": "-", + "start": 41052, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 41079, + "start": 41015, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41082, + "start": 41081, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41014, + "name": "line", + "start": 41010, + "type": "Identifier" + }, + "end": 41083, + "optional": false, + "start": 41010, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 41122, + "raw": "0.03807684940941125", + "start": 41103, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 41150, + "raw": "0.25664826686353326", + "start": 41131, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 41157, + "start": 41094, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41160, + "start": 41159, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41093, + "name": "line", + "start": 41089, + "type": "Identifier" + }, + "end": 41161, + "optional": false, + "start": 41089, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 41200, + "raw": "0.23950083339596384", + "start": 41181, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 41228, + "raw": "0.43693196301855575", + "start": 41209, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 41235, + "start": 41172, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41238, + "start": 41237, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41171, + "name": "line", + "start": 41167, + "type": "Identifier" + }, + "end": 41239, + "optional": false, + "start": 41167, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 41279, + "raw": "0.16279444820904887", + "start": 41260, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 41279, + "operator": "-", + "start": 41259, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 41306, + "raw": "0.8064475707664818", + "start": 41288, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 41313, + "start": 41250, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41316, + "start": 41315, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41249, + "name": "line", + "start": 41245, + "type": "Identifier" + }, + "end": 41317, + "optional": false, + "start": 41245, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 41357, + "raw": "0.08972872009232558", + "start": 41338, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 41357, + "operator": "-", + "start": 41337, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 41386, + "raw": "0.08887625823751266", + "start": 41367, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 41386, + "operator": "-", + "start": 41366, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 41393, + "start": 41328, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41396, + "start": 41395, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41327, + "name": "line", + "start": 41323, + "type": "Identifier" + }, + "end": 41397, + "optional": false, + "start": 41323, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 41435, + "raw": "0.9203433427102556", + "start": 41417, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 41464, + "raw": "0.17343459369697545", + "start": 41445, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 41464, + "operator": "-", + "start": 41444, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 41471, + "start": 41408, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41474, + "start": 41473, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41407, + "name": "line", + "start": 41403, + "type": "Identifier" + }, + "end": 41475, + "optional": false, + "start": 41403, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 41516, + "raw": "0.0017496234414517975", + "start": 41495, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 41544, + "raw": "0.5178508316168335", + "start": 41526, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 41544, + "operator": "-", + "start": 41525, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 41551, + "start": 41486, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41554, + "start": 41553, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41485, + "name": "line", + "start": 41481, + "type": "Identifier" + }, + "end": 41555, + "optional": false, + "start": 41481, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 41593, + "raw": "0.6206263405732759", + "start": 41575, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 41621, + "raw": "0.8733399468665124", + "start": 41603, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 41621, + "operator": "-", + "start": 41602, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 41628, + "start": 41566, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41631, + "start": 41630, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41565, + "name": "line", + "start": 41561, + "type": "Identifier" + }, + "end": 41632, + "optional": false, + "start": 41561, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 41671, + "raw": "0.7776386664456383", + "start": 41653, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 41671, + "operator": "-", + "start": 41652, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 41698, + "raw": "0.7602780485384968", + "start": 41680, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 41705, + "start": 41643, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41708, + "start": 41707, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41642, + "name": "line", + "start": 41638, + "type": "Identifier" + }, + "end": 41709, + "optional": false, + "start": 41638, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 41739, + "raw": "0.5439379760788592", + "start": 41721, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 41759, + "raw": "0.8449177589350552", + "start": 41741, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 41760, + "start": 41720, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41763, + "start": 41762, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41719, + "name": "line", + "start": 41715, + "type": "Identifier" + }, + "end": 41764, + "optional": false, + "start": 41715, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 41804, + "raw": "0.13036646025917076", + "start": 41785, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 41804, + "operator": "-", + "start": 41784, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 41833, + "raw": "0.012051713627069693", + "start": 41813, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 41840, + "start": 41775, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41843, + "start": 41842, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41774, + "name": "line", + "start": 41770, + "type": "Identifier" + }, + "end": 41844, + "optional": false, + "start": 41770, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 41883, + "raw": "0.1656465612645519", + "start": 41865, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 41883, + "operator": "-", + "start": 41864, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 41912, + "raw": "0.20775229173765486", + "start": 41893, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 41912, + "operator": "-", + "start": 41892, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 41919, + "start": 41855, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 41922, + "start": 41921, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41854, + "name": "line", + "start": 41850, + "type": "Identifier" + }, + "end": 41923, + "optional": false, + "start": 41850, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 41962, + "raw": "0.0962723255929061", + "start": 41944, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 41962, + "operator": "-", + "start": 41943, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 41991, + "raw": "0.05417797659066137", + "start": 41972, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 41991, + "operator": "-", + "start": 41971, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 41998, + "start": 41934, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42001, + "start": 42000, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 41933, + "name": "line", + "start": 41929, + "type": "Identifier" + }, + "end": 42002, + "optional": false, + "start": 41929, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42031, + "raw": "0.902108945498191", + "start": 42014, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 42051, + "raw": "0.3958978534964961", + "start": 42033, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 42052, + "start": 42013, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42055, + "start": 42054, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42012, + "name": "line", + "start": 42008, + "type": "Identifier" + }, + "end": 42056, + "optional": false, + "start": 42008, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42095, + "raw": "0.27997950083139167", + "start": 42076, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 42124, + "raw": "0.17778188444008958", + "start": 42105, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 42124, + "operator": "-", + "start": 42104, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 42131, + "start": 42067, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42134, + "start": 42133, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42066, + "name": "line", + "start": 42062, + "type": "Identifier" + }, + "end": 42135, + "optional": false, + "start": 42062, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42165, + "raw": "0.5235806061589545", + "start": 42147, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 42184, + "raw": "0.694318985642328", + "start": 42167, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 42185, + "start": 42146, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42188, + "start": 42187, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42145, + "name": "line", + "start": 42141, + "type": "Identifier" + }, + "end": 42189, + "optional": false, + "start": 42141, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42228, + "raw": "0.39140760219992154", + "start": 42209, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 42256, + "raw": "0.7839795272576484", + "start": 42238, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 42256, + "operator": "-", + "start": 42237, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 42263, + "start": 42200, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42266, + "start": 42265, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42199, + "name": "line", + "start": 42195, + "type": "Identifier" + }, + "end": 42267, + "optional": false, + "start": 42195, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42297, + "raw": "0.8414243527073519", + "start": 42279, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 42317, + "raw": "0.5395591528940082", + "start": 42299, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 42318, + "start": 42278, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42321, + "start": 42320, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42277, + "name": "line", + "start": 42273, + "type": "Identifier" + }, + "end": 42322, + "optional": false, + "start": 42273, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42360, + "raw": "0.6137667704875602", + "start": 42342, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 42388, + "raw": "0.22119647516722085", + "start": 42369, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 42395, + "start": 42333, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42398, + "start": 42397, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42332, + "name": "line", + "start": 42328, + "type": "Identifier" + }, + "end": 42399, + "optional": false, + "start": 42328, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42429, + "raw": "0.8830488380766681", + "start": 42411, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 42449, + "raw": "0.6996724408425232", + "start": 42431, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 42450, + "start": 42410, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42453, + "start": 42452, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42409, + "name": "line", + "start": 42405, + "type": "Identifier" + }, + "end": 42454, + "optional": false, + "start": 42405, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 42494, + "raw": "0.41290485754343953", + "start": 42475, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 42494, + "operator": "-", + "start": 42474, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 42522, + "raw": "0.4152647361760933", + "start": 42504, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 42522, + "operator": "-", + "start": 42503, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 42529, + "start": 42465, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42532, + "start": 42531, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42464, + "name": "line", + "start": 42460, + "type": "Identifier" + }, + "end": 42533, + "optional": false, + "start": 42460, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42571, + "raw": "0.5169538755575687", + "start": 42553, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 42599, + "raw": "0.9085567867302617", + "start": 42581, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 42599, + "operator": "-", + "start": 42580, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 42606, + "start": 42544, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42609, + "start": 42608, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42543, + "name": "line", + "start": 42539, + "type": "Identifier" + }, + "end": 42610, + "optional": false, + "start": 42539, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42648, + "raw": "0.6751951211858687", + "start": 42630, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 42676, + "raw": "0.9709424233465593", + "start": 42658, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 42676, + "operator": "-", + "start": 42657, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 42683, + "start": 42621, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42686, + "start": 42685, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42620, + "name": "line", + "start": 42616, + "type": "Identifier" + }, + "end": 42687, + "optional": false, + "start": 42616, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 42726, + "raw": "0.5689619842972184", + "start": 42708, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 42726, + "operator": "-", + "start": 42707, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 42753, + "raw": "0.5918969913790362", + "start": 42735, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 42760, + "start": 42698, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42763, + "start": 42762, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42697, + "name": "line", + "start": 42693, + "type": "Identifier" + }, + "end": 42764, + "optional": false, + "start": 42693, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42802, + "raw": "0.9464450621708211", + "start": 42784, + "type": "Literal", + "type": "Literal", + "value": 0.9464450621708211 + }, + { + "argument": { + "end": 42830, + "raw": "0.2684908127803667", + "start": 42812, + "type": "Literal", + "type": "Literal", + "value": 0.2684908127803667 + }, + "end": 42830, + "operator": "-", + "start": 42811, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 42837, + "start": 42775, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42840, + "start": 42839, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42774, + "name": "line", + "start": 42770, + "type": "Identifier" + }, + "end": 42841, + "optional": false, + "start": 42770, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 42871, + "raw": "0.5241732366617591", + "start": 42853, + "type": "Literal", + "type": "Literal", + "value": 0.5241732366617591 + }, + { + "end": 42891, + "raw": "0.9011437416408563", + "start": 42873, + "type": "Literal", + "type": "Literal", + "value": 0.9011437416408563 + } + ], + "end": 42892, + "start": 42852, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42895, + "start": 42894, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42851, + "name": "line", + "start": 42847, + "type": "Identifier" + }, + "end": 42896, + "optional": false, + "start": 42847, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 42936, + "raw": "0.14255393713960607", + "start": 42917, + "type": "Literal", + "type": "Literal", + "value": 0.14255393713960607 + }, + "end": 42936, + "operator": "-", + "start": 42916, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 42964, + "raw": "0.5194262624564814", + "start": 42946, + "type": "Literal", + "type": "Literal", + "value": 0.5194262624564814 + }, + "end": 42964, + "operator": "-", + "start": 42945, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 42971, + "start": 42907, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 42974, + "start": 42973, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42906, + "name": "line", + "start": 42902, + "type": "Identifier" + }, + "end": 42975, + "optional": false, + "start": 42902, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 43014, + "raw": "0.4287123231350338", + "start": 42996, + "type": "Literal", + "type": "Literal", + "value": 0.4287123231350338 + }, + "end": 43014, + "operator": "-", + "start": 42995, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 43042, + "raw": "0.4223564528725028", + "start": 43024, + "type": "Literal", + "type": "Literal", + "value": 0.4223564528725028 + }, + "end": 43042, + "operator": "-", + "start": 43023, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 43049, + "start": 42986, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43052, + "start": 43051, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 42985, + "name": "line", + "start": 42981, + "type": "Identifier" + }, + "end": 43053, + "optional": false, + "start": 42981, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 43093, + "raw": "0.09316367294024519", + "start": 43074, + "type": "Literal", + "type": "Literal", + "value": 0.09316367294024519 + }, + "end": 43093, + "operator": "-", + "start": 43073, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 43121, + "raw": "0.9063127021008246", + "start": 43103, + "type": "Literal", + "type": "Literal", + "value": 0.9063127021008246 + }, + "end": 43121, + "operator": "-", + "start": 43102, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 43128, + "start": 43064, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43131, + "start": 43130, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43063, + "name": "line", + "start": 43059, + "type": "Identifier" + }, + "end": 43132, + "optional": false, + "start": 43059, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 43171, + "raw": "0.2767766535558669", + "start": 43153, + "type": "Literal", + "type": "Literal", + "value": 0.2767766535558669 + }, + "end": 43171, + "operator": "-", + "start": 43152, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 43198, + "raw": "0.6816248114129131", + "start": 43180, + "type": "Literal", + "type": "Literal", + "value": 0.6816248114129131 + } + ], + "end": 43205, + "start": 43143, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43208, + "start": 43207, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43142, + "name": "line", + "start": 43138, + "type": "Identifier" + }, + "end": 43209, + "optional": false, + "start": 43138, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43247, + "raw": "0.9796762495562534", + "start": 43229, + "type": "Literal", + "type": "Literal", + "value": 0.9796762495562534 + }, + { + "argument": { + "end": 43275, + "raw": "0.0822145668330625", + "start": 43257, + "type": "Literal", + "type": "Literal", + "value": 0.0822145668330625 + }, + "end": 43275, + "operator": "-", + "start": 43256, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 43282, + "start": 43220, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43285, + "start": 43284, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43219, + "name": "line", + "start": 43215, + "type": "Identifier" + }, + "end": 43286, + "optional": false, + "start": 43215, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 43325, + "raw": "0.8666513070867441", + "start": 43307, + "type": "Literal", + "type": "Literal", + "value": 0.8666513070867441 + }, + "end": 43325, + "operator": "-", + "start": 43306, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 43352, + "raw": "0.301053160242023", + "start": 43335, + "type": "Literal", + "type": "Literal", + "value": 0.301053160242023 + }, + "end": 43352, + "operator": "-", + "start": 43334, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 43359, + "start": 43297, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43362, + "start": 43361, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43296, + "name": "line", + "start": 43292, + "type": "Identifier" + }, + "end": 43363, + "optional": false, + "start": 43292, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43400, + "raw": "0.537415656028112", + "start": 43383, + "type": "Literal", + "type": "Literal", + "value": 0.537415656028112 + }, + { + "end": 43429, + "raw": "0.020272692875002774", + "start": 43409, + "type": "Literal", + "type": "Literal", + "value": 0.020272692875002774 + } + ], + "end": 43436, + "start": 43374, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43439, + "start": 43438, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43373, + "name": "line", + "start": 43369, + "type": "Identifier" + }, + "end": 43440, + "optional": false, + "start": 43369, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43478, + "raw": "0.9332396256457531", + "start": 43460, + "type": "Literal", + "type": "Literal", + "value": 0.9332396256457531 + }, + { + "argument": { + "end": 43506, + "raw": "0.6228175690649898", + "start": 43488, + "type": "Literal", + "type": "Literal", + "value": 0.6228175690649898 + }, + "end": 43506, + "operator": "-", + "start": 43487, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 43513, + "start": 43451, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43516, + "start": 43515, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43450, + "name": "line", + "start": 43446, + "type": "Identifier" + }, + "end": 43517, + "optional": false, + "start": 43446, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43556, + "raw": "0.18052415837320734", + "start": 43537, + "type": "Literal", + "type": "Literal", + "value": 0.18052415837320734 + }, + { + "argument": { + "end": 43585, + "raw": "0.36894384647296197", + "start": 43566, + "type": "Literal", + "type": "Literal", + "value": 0.36894384647296197 + }, + "end": 43585, + "operator": "-", + "start": 43565, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 43592, + "start": 43528, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43595, + "start": 43594, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43527, + "name": "line", + "start": 43523, + "type": "Identifier" + }, + "end": 43596, + "optional": false, + "start": 43523, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43626, + "raw": "0.5384372634075449", + "start": 43608, + "type": "Literal", + "type": "Literal", + "value": 0.5384372634075449 + }, + { + "end": 43646, + "raw": "0.2377565050887107", + "start": 43628, + "type": "Literal", + "type": "Literal", + "value": 0.2377565050887107 + } + ], + "end": 43647, + "start": 43607, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43650, + "start": 43649, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43606, + "name": "line", + "start": 43602, + "type": "Identifier" + }, + "end": 43651, + "optional": false, + "start": 43602, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43690, + "raw": "0.39043436929278874", + "start": 43671, + "type": "Literal", + "type": "Literal", + "value": 0.39043436929278874 + }, + { + "end": 43718, + "raw": "0.14273182483160451", + "start": 43699, + "type": "Literal", + "type": "Literal", + "value": 0.14273182483160451 + } + ], + "end": 43725, + "start": 43662, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43728, + "start": 43727, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43661, + "name": "line", + "start": 43657, + "type": "Identifier" + }, + "end": 43729, + "optional": false, + "start": 43657, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43768, + "raw": "0.09782890412897283", + "start": 43749, + "type": "Literal", + "type": "Literal", + "value": 0.09782890412897283 + }, + { + "end": 43795, + "raw": "0.9907667536909659", + "start": 43777, + "type": "Literal", + "type": "Literal", + "value": 0.9907667536909659 + } + ], + "end": 43802, + "start": 43740, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43805, + "start": 43804, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43739, + "name": "line", + "start": 43735, + "type": "Identifier" + }, + "end": 43806, + "optional": false, + "start": 43735, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43844, + "raw": "0.5286610085921146", + "start": 43826, + "type": "Literal", + "type": "Literal", + "value": 0.5286610085921146 + }, + { + "argument": { + "end": 43872, + "raw": "0.7924508308419256", + "start": 43854, + "type": "Literal", + "type": "Literal", + "value": 0.7924508308419256 + }, + "end": 43872, + "operator": "-", + "start": 43853, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 43879, + "start": 43817, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43882, + "start": 43881, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43816, + "name": "line", + "start": 43812, + "type": "Identifier" + }, + "end": 43883, + "optional": false, + "start": 43812, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 43921, + "raw": "0.3789978184503342", + "start": 43903, + "type": "Literal", + "type": "Literal", + "value": 0.3789978184503342 + }, + { + "end": 43949, + "raw": "0.12396120576838676", + "start": 43930, + "type": "Literal", + "type": "Literal", + "value": 0.12396120576838676 + } + ], + "end": 43956, + "start": 43894, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 43959, + "start": 43958, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43893, + "name": "line", + "start": 43889, + "type": "Identifier" + }, + "end": 43960, + "optional": false, + "start": 43889, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 43999, + "raw": "0.9484912744890612", + "start": 43981, + "type": "Literal", + "type": "Literal", + "value": 0.9484912744890612 + }, + "end": 43999, + "operator": "-", + "start": 43980, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 44026, + "raw": "0.6729649846476855", + "start": 44008, + "type": "Literal", + "type": "Literal", + "value": 0.6729649846476855 + } + ], + "end": 44033, + "start": 43971, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44036, + "start": 44035, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43970, + "name": "line", + "start": 43966, + "type": "Identifier" + }, + "end": 44037, + "optional": false, + "start": 43966, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 44075, + "raw": "0.7451758753425153", + "start": 44057, + "type": "Literal", + "type": "Literal", + "value": 0.7451758753425153 + }, + { + "argument": { + "end": 44104, + "raw": "0.21318737562458967", + "start": 44085, + "type": "Literal", + "type": "Literal", + "value": 0.21318737562458967 + }, + "end": 44104, + "operator": "-", + "start": 44084, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 44111, + "start": 44048, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44114, + "start": 44113, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44047, + "name": "line", + "start": 44043, + "type": "Identifier" + }, + "end": 44115, + "optional": false, + "start": 44043, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 44153, + "raw": "0.1873200727251887", + "start": 44135, + "type": "Literal", + "type": "Literal", + "value": 0.1873200727251887 + }, + { + "argument": { + "end": 44182, + "raw": "0.15961374297992448", + "start": 44163, + "type": "Literal", + "type": "Literal", + "value": 0.15961374297992448 + }, + "end": 44182, + "operator": "-", + "start": 44162, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 44189, + "start": 44126, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44192, + "start": 44191, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44125, + "name": "line", + "start": 44121, + "type": "Identifier" + }, + "end": 44193, + "optional": false, + "start": 44121, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44233, + "raw": "0.05729464924537564", + "start": 44214, + "type": "Literal", + "type": "Literal", + "value": 0.05729464924537564 + }, + "end": 44233, + "operator": "-", + "start": 44213, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 44261, + "raw": "0.5436345558508746", + "start": 44243, + "type": "Literal", + "type": "Literal", + "value": 0.5436345558508746 + }, + "end": 44261, + "operator": "-", + "start": 44242, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 44268, + "start": 44204, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44271, + "start": 44270, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44203, + "name": "line", + "start": 44199, + "type": "Identifier" + }, + "end": 44272, + "optional": false, + "start": 44199, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44312, + "raw": "0.09582414374469184", + "start": 44293, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 44312, + "operator": "-", + "start": 44292, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 44340, + "raw": "0.7533839681212353", + "start": 44322, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 44340, + "operator": "-", + "start": 44321, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 44347, + "start": 44283, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44350, + "start": 44349, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44282, + "name": "line", + "start": 44278, + "type": "Identifier" + }, + "end": 44351, + "optional": false, + "start": 44278, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44391, + "raw": "0.17254116580051848", + "start": 44372, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 44391, + "operator": "-", + "start": 44371, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 44419, + "raw": "0.7669113400341137", + "start": 44401, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 44419, + "operator": "-", + "start": 44400, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 44426, + "start": 44362, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44429, + "start": 44428, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44361, + "name": "line", + "start": 44357, + "type": "Identifier" + }, + "end": 44430, + "optional": false, + "start": 44357, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 44460, + "raw": "0.8944730032887609", + "start": 44442, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 44480, + "raw": "0.6093318694741408", + "start": 44462, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 44481, + "start": 44441, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44484, + "start": 44483, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44440, + "name": "line", + "start": 44436, + "type": "Identifier" + }, + "end": 44485, + "optional": false, + "start": 44436, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44524, + "raw": "0.3670208139314082", + "start": 44506, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 44524, + "operator": "-", + "start": 44505, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 44552, + "raw": "0.21201331909674526", + "start": 44533, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 44559, + "start": 44496, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44562, + "start": 44561, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44495, + "name": "line", + "start": 44491, + "type": "Identifier" + }, + "end": 44563, + "optional": false, + "start": 44491, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44602, + "raw": "0.4707511307971115", + "start": 44584, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 44602, + "operator": "-", + "start": 44583, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 44629, + "raw": "0.4905279615419764", + "start": 44611, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 44636, + "start": 44574, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44639, + "start": 44638, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44573, + "name": "line", + "start": 44569, + "type": "Identifier" + }, + "end": 44640, + "optional": false, + "start": 44569, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44679, + "raw": "0.8328324229085962", + "start": 44661, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 44679, + "operator": "-", + "start": 44660, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 44706, + "raw": "0.4677492878818803", + "start": 44688, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 44713, + "start": 44651, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44716, + "start": 44715, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44650, + "name": "line", + "start": 44646, + "type": "Identifier" + }, + "end": 44717, + "optional": false, + "start": 44646, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44756, + "raw": "0.8111463382182231", + "start": 44738, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 44756, + "operator": "-", + "start": 44737, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 44785, + "raw": "0.41814807547140576", + "start": 44766, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 44785, + "operator": "-", + "start": 44765, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 44792, + "start": 44728, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44795, + "start": 44794, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44727, + "name": "line", + "start": 44723, + "type": "Identifier" + }, + "end": 44796, + "optional": false, + "start": 44723, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 44835, + "raw": "0.03807684940941125", + "start": 44816, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 44863, + "raw": "0.25664826686353326", + "start": 44844, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 44870, + "start": 44807, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44873, + "start": 44872, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44806, + "name": "line", + "start": 44802, + "type": "Identifier" + }, + "end": 44874, + "optional": false, + "start": 44802, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 44913, + "raw": "0.23950083339596384", + "start": 44894, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 44941, + "raw": "0.43693196301855575", + "start": 44922, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 44948, + "start": 44885, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 44951, + "start": 44950, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44884, + "name": "line", + "start": 44880, + "type": "Identifier" + }, + "end": 44952, + "optional": false, + "start": 44880, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 44992, + "raw": "0.16279444820904887", + "start": 44973, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 44992, + "operator": "-", + "start": 44972, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 45019, + "raw": "0.8064475707664818", + "start": 45001, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 45026, + "start": 44963, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45029, + "start": 45028, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 44962, + "name": "line", + "start": 44958, + "type": "Identifier" + }, + "end": 45030, + "optional": false, + "start": 44958, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 45070, + "raw": "0.08972872009232558", + "start": 45051, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 45070, + "operator": "-", + "start": 45050, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 45099, + "raw": "0.08887625823751266", + "start": 45080, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 45099, + "operator": "-", + "start": 45079, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45106, + "start": 45041, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45109, + "start": 45108, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45040, + "name": "line", + "start": 45036, + "type": "Identifier" + }, + "end": 45110, + "optional": false, + "start": 45036, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45148, + "raw": "0.9203433427102556", + "start": 45130, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 45177, + "raw": "0.17343459369697545", + "start": 45158, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 45177, + "operator": "-", + "start": 45157, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45184, + "start": 45121, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45187, + "start": 45186, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45120, + "name": "line", + "start": 45116, + "type": "Identifier" + }, + "end": 45188, + "optional": false, + "start": 45116, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45229, + "raw": "0.0017496234414517975", + "start": 45208, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 45257, + "raw": "0.5178508316168335", + "start": 45239, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 45257, + "operator": "-", + "start": 45238, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45264, + "start": 45199, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45267, + "start": 45266, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45198, + "name": "line", + "start": 45194, + "type": "Identifier" + }, + "end": 45268, + "optional": false, + "start": 45194, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45306, + "raw": "0.6206263405732759", + "start": 45288, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 45334, + "raw": "0.8733399468665124", + "start": 45316, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 45334, + "operator": "-", + "start": 45315, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45341, + "start": 45279, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45344, + "start": 45343, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45278, + "name": "line", + "start": 45274, + "type": "Identifier" + }, + "end": 45345, + "optional": false, + "start": 45274, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 45384, + "raw": "0.7776386664456383", + "start": 45366, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 45384, + "operator": "-", + "start": 45365, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 45411, + "raw": "0.7602780485384968", + "start": 45393, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 45418, + "start": 45356, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45421, + "start": 45420, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45355, + "name": "line", + "start": 45351, + "type": "Identifier" + }, + "end": 45422, + "optional": false, + "start": 45351, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45452, + "raw": "0.5439379760788592", + "start": 45434, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 45472, + "raw": "0.8449177589350552", + "start": 45454, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 45473, + "start": 45433, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45476, + "start": 45475, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45432, + "name": "line", + "start": 45428, + "type": "Identifier" + }, + "end": 45477, + "optional": false, + "start": 45428, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 45517, + "raw": "0.13036646025917076", + "start": 45498, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 45517, + "operator": "-", + "start": 45497, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 45546, + "raw": "0.012051713627069693", + "start": 45526, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 45553, + "start": 45488, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45556, + "start": 45555, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45487, + "name": "line", + "start": 45483, + "type": "Identifier" + }, + "end": 45557, + "optional": false, + "start": 45483, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 45596, + "raw": "0.1656465612645519", + "start": 45578, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 45596, + "operator": "-", + "start": 45577, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 45625, + "raw": "0.20775229173765486", + "start": 45606, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 45625, + "operator": "-", + "start": 45605, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45632, + "start": 45568, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45635, + "start": 45634, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45567, + "name": "line", + "start": 45563, + "type": "Identifier" + }, + "end": 45636, + "optional": false, + "start": 45563, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 45675, + "raw": "0.0962723255929061", + "start": 45657, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 45675, + "operator": "-", + "start": 45656, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 45704, + "raw": "0.05417797659066137", + "start": 45685, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 45704, + "operator": "-", + "start": 45684, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45711, + "start": 45647, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45714, + "start": 45713, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45646, + "name": "line", + "start": 45642, + "type": "Identifier" + }, + "end": 45715, + "optional": false, + "start": 45642, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45744, + "raw": "0.902108945498191", + "start": 45727, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 45764, + "raw": "0.3958978534964961", + "start": 45746, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 45765, + "start": 45726, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45768, + "start": 45767, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45725, + "name": "line", + "start": 45721, + "type": "Identifier" + }, + "end": 45769, + "optional": false, + "start": 45721, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45808, + "raw": "0.27997950083139167", + "start": 45789, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 45837, + "raw": "0.17778188444008958", + "start": 45818, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 45837, + "operator": "-", + "start": 45817, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45844, + "start": 45780, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45847, + "start": 45846, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45779, + "name": "line", + "start": 45775, + "type": "Identifier" + }, + "end": 45848, + "optional": false, + "start": 45775, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45878, + "raw": "0.5235806061589545", + "start": 45860, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 45897, + "raw": "0.694318985642328", + "start": 45880, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 45898, + "start": 45859, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45901, + "start": 45900, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45858, + "name": "line", + "start": 45854, + "type": "Identifier" + }, + "end": 45902, + "optional": false, + "start": 45854, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 45941, + "raw": "0.39140760219992154", + "start": 45922, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 45969, + "raw": "0.7839795272576484", + "start": 45951, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 45969, + "operator": "-", + "start": 45950, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 45976, + "start": 45913, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 45979, + "start": 45978, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45912, + "name": "line", + "start": 45908, + "type": "Identifier" + }, + "end": 45980, + "optional": false, + "start": 45908, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46010, + "raw": "0.8414243527073519", + "start": 45992, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 46030, + "raw": "0.5395591528940082", + "start": 46012, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 46031, + "start": 45991, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46034, + "start": 46033, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 45990, + "name": "line", + "start": 45986, + "type": "Identifier" + }, + "end": 46035, + "optional": false, + "start": 45986, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46073, + "raw": "0.6137667704875602", + "start": 46055, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 46101, + "raw": "0.22119647516722085", + "start": 46082, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 46108, + "start": 46046, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46111, + "start": 46110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46045, + "name": "line", + "start": 46041, + "type": "Identifier" + }, + "end": 46112, + "optional": false, + "start": 46041, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46142, + "raw": "0.8830488380766681", + "start": 46124, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 46162, + "raw": "0.6996724408425232", + "start": 46144, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 46163, + "start": 46123, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46166, + "start": 46165, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46122, + "name": "line", + "start": 46118, + "type": "Identifier" + }, + "end": 46167, + "optional": false, + "start": 46118, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 46207, + "raw": "0.41290485754343953", + "start": 46188, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 46207, + "operator": "-", + "start": 46187, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 46235, + "raw": "0.4152647361760933", + "start": 46217, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 46235, + "operator": "-", + "start": 46216, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 46242, + "start": 46178, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46245, + "start": 46244, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46177, + "name": "line", + "start": 46173, + "type": "Identifier" + }, + "end": 46246, + "optional": false, + "start": 46173, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46284, + "raw": "0.5169538755575687", + "start": 46266, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 46312, + "raw": "0.9085567867302617", + "start": 46294, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 46312, + "operator": "-", + "start": 46293, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 46319, + "start": 46257, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46322, + "start": 46321, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46256, + "name": "line", + "start": 46252, + "type": "Identifier" + }, + "end": 46323, + "optional": false, + "start": 46252, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 46362, + "raw": "0.6716353749059765", + "start": 46344, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 46362, + "operator": "-", + "start": 46343, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 46390, + "raw": "0.9605576808879026", + "start": 46372, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 46390, + "operator": "-", + "start": 46371, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 46397, + "start": 46334, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46400, + "start": 46399, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46333, + "name": "line", + "start": 46329, + "type": "Identifier" + }, + "end": 46401, + "optional": false, + "start": 46329, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46441, + "raw": "0.010280170930300203", + "start": 46421, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 46470, + "raw": "0.37344123662342166", + "start": 46451, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 46470, + "operator": "-", + "start": 46450, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 46477, + "start": 46412, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46480, + "start": 46479, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46411, + "name": "line", + "start": 46407, + "type": "Identifier" + }, + "end": 46481, + "optional": false, + "start": 46407, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46520, + "raw": "0.10357375682791004", + "start": 46501, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 46549, + "raw": "0.42294321030821425", + "start": 46530, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 46549, + "operator": "-", + "start": 46529, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 46556, + "start": 46492, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46559, + "start": 46558, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46491, + "name": "line", + "start": 46487, + "type": "Identifier" + }, + "end": 46560, + "optional": false, + "start": 46487, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46598, + "raw": "0.4520311575096987", + "start": 46580, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 46627, + "raw": "0.11232675307600548", + "start": 46608, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 46627, + "operator": "-", + "start": 46607, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 46634, + "start": 46571, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46637, + "start": 46636, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46570, + "name": "line", + "start": 46566, + "type": "Identifier" + }, + "end": 46638, + "optional": false, + "start": 46566, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 46677, + "raw": "0.8821185914380845", + "start": 46659, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 46677, + "operator": "-", + "start": 46658, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 46705, + "raw": "0.7155147434939819", + "start": 46687, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 46705, + "operator": "-", + "start": 46686, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 46712, + "start": 46649, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46715, + "start": 46714, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46648, + "name": "line", + "start": 46644, + "type": "Identifier" + }, + "end": 46716, + "optional": false, + "start": 46644, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46746, + "raw": "0.9195487101690416", + "start": 46728, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 46766, + "raw": "0.2691627465297364", + "start": 46748, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 46767, + "start": 46727, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46770, + "start": 46769, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46726, + "name": "line", + "start": 46722, + "type": "Identifier" + }, + "end": 46771, + "optional": false, + "start": 46722, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46809, + "raw": "0.7098978191546745", + "start": 46791, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 46837, + "raw": "0.11710004169385968", + "start": 46818, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 46844, + "start": 46782, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46847, + "start": 46846, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46781, + "name": "line", + "start": 46777, + "type": "Identifier" + }, + "end": 46848, + "optional": false, + "start": 46777, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 46888, + "raw": "0.37876368560819995", + "start": 46869, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 46888, + "operator": "-", + "start": 46868, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 46915, + "raw": "0.7106729314759084", + "start": 46897, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 46922, + "start": 46859, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 46925, + "start": 46924, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46858, + "name": "line", + "start": 46854, + "type": "Identifier" + }, + "end": 46926, + "optional": false, + "start": 46854, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 46966, + "raw": "0.29728126898353335", + "start": 46947, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 46966, + "operator": "-", + "start": 46946, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 46995, + "raw": "0.06649734568328003", + "start": 46976, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 46995, + "operator": "-", + "start": 46975, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47002, + "start": 46937, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47005, + "start": 47004, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 46936, + "name": "line", + "start": 46932, + "type": "Identifier" + }, + "end": 47006, + "optional": false, + "start": 46932, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47045, + "raw": "0.22965781558352072", + "start": 47026, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 47073, + "raw": "0.7601866432836641", + "start": 47055, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 47073, + "operator": "-", + "start": 47054, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47080, + "start": 47017, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47083, + "start": 47082, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47016, + "name": "line", + "start": 47012, + "type": "Identifier" + }, + "end": 47084, + "optional": false, + "start": 47012, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 47123, + "raw": "0.6356501074317229", + "start": 47105, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 47123, + "operator": "-", + "start": 47104, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 47151, + "raw": "0.19458425399338064", + "start": 47132, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 47158, + "start": 47095, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47161, + "start": 47160, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47094, + "name": "line", + "start": 47090, + "type": "Identifier" + }, + "end": 47162, + "optional": false, + "start": 47090, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47192, + "raw": "0.5721251777404546", + "start": 47174, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 47212, + "raw": "0.2888584097921527", + "start": 47194, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 47213, + "start": 47173, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47216, + "start": 47215, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47172, + "name": "line", + "start": 47168, + "type": "Identifier" + }, + "end": 47217, + "optional": false, + "start": 47168, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 47256, + "raw": "0.9580409549552311", + "start": 47238, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 47256, + "operator": "-", + "start": 47237, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 47285, + "raw": "0.02243818192078395", + "start": 47266, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 47285, + "operator": "-", + "start": 47265, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47292, + "start": 47228, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47295, + "start": 47294, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47227, + "name": "line", + "start": 47223, + "type": "Identifier" + }, + "end": 47296, + "optional": false, + "start": 47223, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47334, + "raw": "0.3299184618602866", + "start": 47316, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 47362, + "raw": "0.8353726942369875", + "start": 47344, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 47362, + "operator": "-", + "start": 47343, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47369, + "start": 47307, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47372, + "start": 47371, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47306, + "name": "line", + "start": 47302, + "type": "Identifier" + }, + "end": 47373, + "optional": false, + "start": 47302, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47411, + "raw": "0.7434639386755209", + "start": 47393, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 47439, + "raw": "0.7919648864138378", + "start": 47421, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 47439, + "operator": "-", + "start": 47420, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47446, + "start": 47384, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47449, + "start": 47448, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47383, + "name": "line", + "start": 47379, + "type": "Identifier" + }, + "end": 47450, + "optional": false, + "start": 47379, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47480, + "raw": "0.9935751011164615", + "start": 47462, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 47500, + "raw": "0.9042566468497608", + "start": 47482, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 47501, + "start": 47461, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47504, + "start": 47503, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47460, + "name": "line", + "start": 47456, + "type": "Identifier" + }, + "end": 47505, + "optional": false, + "start": 47456, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 47544, + "raw": "0.5035812884687294", + "start": 47526, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 47544, + "operator": "-", + "start": 47525, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 47571, + "raw": "0.5150967434989442", + "start": 47553, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 47578, + "start": 47516, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47581, + "start": 47580, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47515, + "name": "line", + "start": 47511, + "type": "Identifier" + }, + "end": 47582, + "optional": false, + "start": 47511, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47612, + "raw": "0.5526227215900215", + "start": 47594, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 47632, + "raw": "0.7612604137272441", + "start": 47614, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 47633, + "start": 47593, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47636, + "start": 47635, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47592, + "name": "line", + "start": 47588, + "type": "Identifier" + }, + "end": 47637, + "optional": false, + "start": 47588, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47675, + "raw": "0.8593271349126876", + "start": 47657, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 47703, + "raw": "0.08414894953725849", + "start": 47684, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 47710, + "start": 47648, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47713, + "start": 47712, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47647, + "name": "line", + "start": 47643, + "type": "Identifier" + }, + "end": 47714, + "optional": false, + "start": 47643, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 47753, + "raw": "0.8181049219192864", + "start": 47735, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 47753, + "operator": "-", + "start": 47734, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 47780, + "raw": "0.903548131323352", + "start": 47763, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 47780, + "operator": "-", + "start": 47762, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47787, + "start": 47725, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47790, + "start": 47789, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47724, + "name": "line", + "start": 47720, + "type": "Identifier" + }, + "end": 47791, + "optional": false, + "start": 47720, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 47829, + "raw": "0.3165782044458305", + "start": 47811, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 47858, + "raw": "0.24189274252014914", + "start": 47839, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 47858, + "operator": "-", + "start": 47838, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47865, + "start": 47802, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47868, + "start": 47867, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47801, + "name": "line", + "start": 47797, + "type": "Identifier" + }, + "end": 47869, + "optional": false, + "start": 47797, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 47909, + "raw": "0.44390956414045135", + "start": 47890, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 47909, + "operator": "-", + "start": 47889, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 47938, + "raw": "0.25912591535126905", + "start": 47919, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 47938, + "operator": "-", + "start": 47918, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 47945, + "start": 47880, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 47948, + "start": 47947, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47879, + "name": "line", + "start": 47875, + "type": "Identifier" + }, + "end": 47949, + "optional": false, + "start": 47875, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 47988, + "raw": "0.6605165911891009", + "start": 47970, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 47988, + "operator": "-", + "start": 47969, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 48017, + "raw": "0.40355115288839194", + "start": 47998, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 48017, + "operator": "-", + "start": 47997, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 48024, + "start": 47960, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48027, + "start": 48026, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 47959, + "name": "line", + "start": 47955, + "type": "Identifier" + }, + "end": 48028, + "optional": false, + "start": 47955, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 48067, + "raw": "0.7170489950180006", + "start": 48049, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 48067, + "operator": "-", + "start": 48048, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 48095, + "raw": "0.23454356079651384", + "start": 48076, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 48102, + "start": 48039, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48105, + "start": 48104, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48038, + "name": "line", + "start": 48034, + "type": "Identifier" + }, + "end": 48106, + "optional": false, + "start": 48034, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 48145, + "raw": "0.2568187045379722", + "start": 48127, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 48145, + "operator": "-", + "start": 48126, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 48174, + "raw": "0.45031188717601367", + "start": 48155, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 48174, + "operator": "-", + "start": 48154, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 48181, + "start": 48117, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48184, + "start": 48183, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48116, + "name": "line", + "start": 48112, + "type": "Identifier" + }, + "end": 48185, + "optional": false, + "start": 48112, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 48223, + "raw": "0.6751951211858687", + "start": 48205, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 48251, + "raw": "0.9709424233465593", + "start": 48233, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 48251, + "operator": "-", + "start": 48232, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 48258, + "start": 48196, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48261, + "start": 48260, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48195, + "name": "line", + "start": 48191, + "type": "Identifier" + }, + "end": 48262, + "optional": false, + "start": 48191, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 48301, + "raw": "0.5689619842972184", + "start": 48283, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 48301, + "operator": "-", + "start": 48282, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 48328, + "raw": "0.5918969913790362", + "start": 48310, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 48335, + "start": 48273, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48338, + "start": 48337, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48272, + "name": "line", + "start": 48268, + "type": "Identifier" + }, + "end": 48339, + "optional": false, + "start": 48268, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 48378, + "raw": "0.8328324229085962", + "start": 48360, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 48378, + "operator": "-", + "start": 48359, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 48405, + "raw": "0.4677492878818803", + "start": 48387, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 48412, + "start": 48350, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48415, + "start": 48414, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48349, + "name": "line", + "start": 48345, + "type": "Identifier" + }, + "end": 48416, + "optional": false, + "start": 48345, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 48455, + "raw": "0.8111463382182231", + "start": 48437, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 48455, + "operator": "-", + "start": 48436, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 48484, + "raw": "0.41814807547140576", + "start": 48465, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 48484, + "operator": "-", + "start": 48464, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 48491, + "start": 48427, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48494, + "start": 48493, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48426, + "name": "line", + "start": 48422, + "type": "Identifier" + }, + "end": 48495, + "optional": false, + "start": 48422, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 48534, + "raw": "0.03807684940941125", + "start": 48515, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 48562, + "raw": "0.25664826686353326", + "start": 48543, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 48569, + "start": 48506, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48572, + "start": 48571, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48505, + "name": "line", + "start": 48501, + "type": "Identifier" + }, + "end": 48573, + "optional": false, + "start": 48501, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 48612, + "raw": "0.23950083339596384", + "start": 48593, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 48640, + "raw": "0.43693196301855575", + "start": 48621, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 48647, + "start": 48584, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48650, + "start": 48649, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48583, + "name": "line", + "start": 48579, + "type": "Identifier" + }, + "end": 48651, + "optional": false, + "start": 48579, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 48691, + "raw": "0.16279444820904887", + "start": 48672, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 48691, + "operator": "-", + "start": 48671, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 48718, + "raw": "0.8064475707664818", + "start": 48700, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 48725, + "start": 48662, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48728, + "start": 48727, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48661, + "name": "line", + "start": 48657, + "type": "Identifier" + }, + "end": 48729, + "optional": false, + "start": 48657, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 48769, + "raw": "0.08972872009232558", + "start": 48750, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 48769, + "operator": "-", + "start": 48749, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 48798, + "raw": "0.08887625823751266", + "start": 48779, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 48798, + "operator": "-", + "start": 48778, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 48805, + "start": 48740, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48808, + "start": 48807, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48739, + "name": "line", + "start": 48735, + "type": "Identifier" + }, + "end": 48809, + "optional": false, + "start": 48735, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 48847, + "raw": "0.9203433427102556", + "start": 48829, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 48876, + "raw": "0.17343459369697545", + "start": 48857, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 48876, + "operator": "-", + "start": 48856, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 48883, + "start": 48820, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48886, + "start": 48885, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48819, + "name": "line", + "start": 48815, + "type": "Identifier" + }, + "end": 48887, + "optional": false, + "start": 48815, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 48928, + "raw": "0.0017496234414517975", + "start": 48907, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 48956, + "raw": "0.5178508316168335", + "start": 48938, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 48956, + "operator": "-", + "start": 48937, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 48963, + "start": 48898, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 48966, + "start": 48965, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48897, + "name": "line", + "start": 48893, + "type": "Identifier" + }, + "end": 48967, + "optional": false, + "start": 48893, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49005, + "raw": "0.6206263405732759", + "start": 48987, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 49033, + "raw": "0.8733399468665124", + "start": 49015, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 49033, + "operator": "-", + "start": 49014, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 49040, + "start": 48978, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49043, + "start": 49042, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 48977, + "name": "line", + "start": 48973, + "type": "Identifier" + }, + "end": 49044, + "optional": false, + "start": 48973, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 49083, + "raw": "0.7776386664456383", + "start": 49065, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 49083, + "operator": "-", + "start": 49064, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 49110, + "raw": "0.7602780485384968", + "start": 49092, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 49117, + "start": 49055, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49120, + "start": 49119, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49054, + "name": "line", + "start": 49050, + "type": "Identifier" + }, + "end": 49121, + "optional": false, + "start": 49050, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49151, + "raw": "0.5439379760788592", + "start": 49133, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 49171, + "raw": "0.8449177589350552", + "start": 49153, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 49172, + "start": 49132, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49175, + "start": 49174, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49131, + "name": "line", + "start": 49127, + "type": "Identifier" + }, + "end": 49176, + "optional": false, + "start": 49127, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 49216, + "raw": "0.13036646025917076", + "start": 49197, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 49216, + "operator": "-", + "start": 49196, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 49245, + "raw": "0.012051713627069693", + "start": 49225, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 49252, + "start": 49187, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49255, + "start": 49254, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49186, + "name": "line", + "start": 49182, + "type": "Identifier" + }, + "end": 49256, + "optional": false, + "start": 49182, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 49295, + "raw": "0.1656465612645519", + "start": 49277, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 49295, + "operator": "-", + "start": 49276, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 49324, + "raw": "0.20775229173765486", + "start": 49305, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 49324, + "operator": "-", + "start": 49304, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 49331, + "start": 49267, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49334, + "start": 49333, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49266, + "name": "line", + "start": 49262, + "type": "Identifier" + }, + "end": 49335, + "optional": false, + "start": 49262, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 49374, + "raw": "0.0962723255929061", + "start": 49356, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 49374, + "operator": "-", + "start": 49355, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 49403, + "raw": "0.05417797659066137", + "start": 49384, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 49403, + "operator": "-", + "start": 49383, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 49410, + "start": 49346, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49413, + "start": 49412, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49345, + "name": "line", + "start": 49341, + "type": "Identifier" + }, + "end": 49414, + "optional": false, + "start": 49341, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49443, + "raw": "0.902108945498191", + "start": 49426, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 49463, + "raw": "0.3958978534964961", + "start": 49445, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 49464, + "start": 49425, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49467, + "start": 49466, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49424, + "name": "line", + "start": 49420, + "type": "Identifier" + }, + "end": 49468, + "optional": false, + "start": 49420, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49507, + "raw": "0.27997950083139167", + "start": 49488, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 49536, + "raw": "0.17778188444008958", + "start": 49517, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 49536, + "operator": "-", + "start": 49516, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 49543, + "start": 49479, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49546, + "start": 49545, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49478, + "name": "line", + "start": 49474, + "type": "Identifier" + }, + "end": 49547, + "optional": false, + "start": 49474, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49577, + "raw": "0.5235806061589545", + "start": 49559, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 49596, + "raw": "0.694318985642328", + "start": 49579, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 49597, + "start": 49558, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49600, + "start": 49599, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49557, + "name": "line", + "start": 49553, + "type": "Identifier" + }, + "end": 49601, + "optional": false, + "start": 49553, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49640, + "raw": "0.39140760219992154", + "start": 49621, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 49668, + "raw": "0.7839795272576484", + "start": 49650, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 49668, + "operator": "-", + "start": 49649, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 49675, + "start": 49612, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49678, + "start": 49677, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49611, + "name": "line", + "start": 49607, + "type": "Identifier" + }, + "end": 49679, + "optional": false, + "start": 49607, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49709, + "raw": "0.8414243527073519", + "start": 49691, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 49729, + "raw": "0.5395591528940082", + "start": 49711, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 49730, + "start": 49690, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49733, + "start": 49732, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49689, + "name": "line", + "start": 49685, + "type": "Identifier" + }, + "end": 49734, + "optional": false, + "start": 49685, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49772, + "raw": "0.6137667704875602", + "start": 49754, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 49800, + "raw": "0.22119647516722085", + "start": 49781, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 49807, + "start": 49745, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49810, + "start": 49809, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49744, + "name": "line", + "start": 49740, + "type": "Identifier" + }, + "end": 49811, + "optional": false, + "start": 49740, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 49841, + "raw": "0.8830488380766681", + "start": 49823, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 49861, + "raw": "0.6996724408425232", + "start": 49843, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 49862, + "start": 49822, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49865, + "start": 49864, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49821, + "name": "line", + "start": 49817, + "type": "Identifier" + }, + "end": 49866, + "optional": false, + "start": 49817, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 49905, + "raw": "0.3670208139314082", + "start": 49887, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 49905, + "operator": "-", + "start": 49886, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 49933, + "raw": "0.21201331909674526", + "start": 49914, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 49940, + "start": 49877, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 49943, + "start": 49942, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49876, + "name": "line", + "start": 49872, + "type": "Identifier" + }, + "end": 49944, + "optional": false, + "start": 49872, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 49983, + "raw": "0.4707511307971115", + "start": 49965, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 49983, + "operator": "-", + "start": 49964, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 50010, + "raw": "0.4905279615419764", + "start": 49992, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 50017, + "start": 49955, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50020, + "start": 50019, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49954, + "name": "line", + "start": 49950, + "type": "Identifier" + }, + "end": 50021, + "optional": false, + "start": 49950, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 50060, + "raw": "0.8328324229085962", + "start": 50042, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 50060, + "operator": "-", + "start": 50041, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 50087, + "raw": "0.4677492878818803", + "start": 50069, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 50094, + "start": 50032, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50097, + "start": 50096, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50031, + "name": "line", + "start": 50027, + "type": "Identifier" + }, + "end": 50098, + "optional": false, + "start": 50027, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 50137, + "raw": "0.8111463382182231", + "start": 50119, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 50137, + "operator": "-", + "start": 50118, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 50166, + "raw": "0.41814807547140576", + "start": 50147, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 50166, + "operator": "-", + "start": 50146, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 50173, + "start": 50109, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50176, + "start": 50175, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50108, + "name": "line", + "start": 50104, + "type": "Identifier" + }, + "end": 50177, + "optional": false, + "start": 50104, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 50216, + "raw": "0.03807684940941125", + "start": 50197, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 50244, + "raw": "0.25664826686353326", + "start": 50225, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 50251, + "start": 50188, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50254, + "start": 50253, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50187, + "name": "line", + "start": 50183, + "type": "Identifier" + }, + "end": 50255, + "optional": false, + "start": 50183, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 50294, + "raw": "0.23950083339596384", + "start": 50275, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 50322, + "raw": "0.43693196301855575", + "start": 50303, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 50329, + "start": 50266, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50332, + "start": 50331, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50265, + "name": "line", + "start": 50261, + "type": "Identifier" + }, + "end": 50333, + "optional": false, + "start": 50261, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 50373, + "raw": "0.16279444820904887", + "start": 50354, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 50373, + "operator": "-", + "start": 50353, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 50400, + "raw": "0.8064475707664818", + "start": 50382, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 50407, + "start": 50344, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50410, + "start": 50409, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50343, + "name": "line", + "start": 50339, + "type": "Identifier" + }, + "end": 50411, + "optional": false, + "start": 50339, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 50451, + "raw": "0.08972872009232558", + "start": 50432, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 50451, + "operator": "-", + "start": 50431, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 50480, + "raw": "0.08887625823751266", + "start": 50461, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 50480, + "operator": "-", + "start": 50460, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 50487, + "start": 50422, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50490, + "start": 50489, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50421, + "name": "line", + "start": 50417, + "type": "Identifier" + }, + "end": 50491, + "optional": false, + "start": 50417, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 50529, + "raw": "0.9203433427102556", + "start": 50511, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 50558, + "raw": "0.17343459369697545", + "start": 50539, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 50558, + "operator": "-", + "start": 50538, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 50565, + "start": 50502, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50568, + "start": 50567, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50501, + "name": "line", + "start": 50497, + "type": "Identifier" + }, + "end": 50569, + "optional": false, + "start": 50497, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 50610, + "raw": "0.0017496234414517975", + "start": 50589, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 50638, + "raw": "0.5178508316168335", + "start": 50620, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 50638, + "operator": "-", + "start": 50619, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 50645, + "start": 50580, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50648, + "start": 50647, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50579, + "name": "line", + "start": 50575, + "type": "Identifier" + }, + "end": 50649, + "optional": false, + "start": 50575, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 50687, + "raw": "0.6206263405732759", + "start": 50669, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 50715, + "raw": "0.8733399468665124", + "start": 50697, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 50715, + "operator": "-", + "start": 50696, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 50722, + "start": 50660, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50725, + "start": 50724, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50659, + "name": "line", + "start": 50655, + "type": "Identifier" + }, + "end": 50726, + "optional": false, + "start": 50655, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 50765, + "raw": "0.7776386664456383", + "start": 50747, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 50765, + "operator": "-", + "start": 50746, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 50792, + "raw": "0.7602780485384968", + "start": 50774, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 50799, + "start": 50737, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50802, + "start": 50801, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50736, + "name": "line", + "start": 50732, + "type": "Identifier" + }, + "end": 50803, + "optional": false, + "start": 50732, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 50833, + "raw": "0.5439379760788592", + "start": 50815, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 50853, + "raw": "0.8449177589350552", + "start": 50835, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 50854, + "start": 50814, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50857, + "start": 50856, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50813, + "name": "line", + "start": 50809, + "type": "Identifier" + }, + "end": 50858, + "optional": false, + "start": 50809, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 50898, + "raw": "0.13036646025917076", + "start": 50879, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 50898, + "operator": "-", + "start": 50878, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 50927, + "raw": "0.012051713627069693", + "start": 50907, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 50934, + "start": 50869, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 50937, + "start": 50936, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50868, + "name": "line", + "start": 50864, + "type": "Identifier" + }, + "end": 50938, + "optional": false, + "start": 50864, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 50977, + "raw": "0.1656465612645519", + "start": 50959, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 50977, + "operator": "-", + "start": 50958, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 51006, + "raw": "0.20775229173765486", + "start": 50987, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 51006, + "operator": "-", + "start": 50986, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51013, + "start": 50949, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51016, + "start": 51015, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50948, + "name": "line", + "start": 50944, + "type": "Identifier" + }, + "end": 51017, + "optional": false, + "start": 50944, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 51056, + "raw": "0.0962723255929061", + "start": 51038, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 51056, + "operator": "-", + "start": 51037, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 51085, + "raw": "0.05417797659066137", + "start": 51066, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 51085, + "operator": "-", + "start": 51065, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51092, + "start": 51028, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51095, + "start": 51094, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51027, + "name": "line", + "start": 51023, + "type": "Identifier" + }, + "end": 51096, + "optional": false, + "start": 51023, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51125, + "raw": "0.902108945498191", + "start": 51108, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 51145, + "raw": "0.3958978534964961", + "start": 51127, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 51146, + "start": 51107, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51149, + "start": 51148, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51106, + "name": "line", + "start": 51102, + "type": "Identifier" + }, + "end": 51150, + "optional": false, + "start": 51102, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51189, + "raw": "0.27997950083139167", + "start": 51170, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 51218, + "raw": "0.17778188444008958", + "start": 51199, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 51218, + "operator": "-", + "start": 51198, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51225, + "start": 51161, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51228, + "start": 51227, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51160, + "name": "line", + "start": 51156, + "type": "Identifier" + }, + "end": 51229, + "optional": false, + "start": 51156, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51259, + "raw": "0.5235806061589545", + "start": 51241, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 51278, + "raw": "0.694318985642328", + "start": 51261, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 51279, + "start": 51240, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51282, + "start": 51281, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51239, + "name": "line", + "start": 51235, + "type": "Identifier" + }, + "end": 51283, + "optional": false, + "start": 51235, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51322, + "raw": "0.39140760219992154", + "start": 51303, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 51350, + "raw": "0.7839795272576484", + "start": 51332, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 51350, + "operator": "-", + "start": 51331, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51357, + "start": 51294, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51360, + "start": 51359, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51293, + "name": "line", + "start": 51289, + "type": "Identifier" + }, + "end": 51361, + "optional": false, + "start": 51289, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51391, + "raw": "0.8414243527073519", + "start": 51373, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 51411, + "raw": "0.5395591528940082", + "start": 51393, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 51412, + "start": 51372, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51415, + "start": 51414, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51371, + "name": "line", + "start": 51367, + "type": "Identifier" + }, + "end": 51416, + "optional": false, + "start": 51367, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51454, + "raw": "0.6137667704875602", + "start": 51436, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 51482, + "raw": "0.22119647516722085", + "start": 51463, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 51489, + "start": 51427, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51492, + "start": 51491, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51426, + "name": "line", + "start": 51422, + "type": "Identifier" + }, + "end": 51493, + "optional": false, + "start": 51422, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51523, + "raw": "0.8830488380766681", + "start": 51505, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 51543, + "raw": "0.6996724408425232", + "start": 51525, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 51544, + "start": 51504, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51547, + "start": 51546, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51503, + "name": "line", + "start": 51499, + "type": "Identifier" + }, + "end": 51548, + "optional": false, + "start": 51499, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 51588, + "raw": "0.41290485754343953", + "start": 51569, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 51588, + "operator": "-", + "start": 51568, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 51616, + "raw": "0.4152647361760933", + "start": 51598, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 51616, + "operator": "-", + "start": 51597, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51623, + "start": 51559, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51626, + "start": 51625, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51558, + "name": "line", + "start": 51554, + "type": "Identifier" + }, + "end": 51627, + "optional": false, + "start": 51554, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51665, + "raw": "0.5169538755575687", + "start": 51647, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 51693, + "raw": "0.9085567867302617", + "start": 51675, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 51693, + "operator": "-", + "start": 51674, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51700, + "start": 51638, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51703, + "start": 51702, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51637, + "name": "line", + "start": 51633, + "type": "Identifier" + }, + "end": 51704, + "optional": false, + "start": 51633, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 51743, + "raw": "0.6716353749059765", + "start": 51725, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 51743, + "operator": "-", + "start": 51724, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 51771, + "raw": "0.9605576808879026", + "start": 51753, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 51771, + "operator": "-", + "start": 51752, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51778, + "start": 51715, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51781, + "start": 51780, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51714, + "name": "line", + "start": 51710, + "type": "Identifier" + }, + "end": 51782, + "optional": false, + "start": 51710, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 51822, + "raw": "0.010280170930300203", + "start": 51802, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 51851, + "raw": "0.37344123662342166", + "start": 51832, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 51851, + "operator": "-", + "start": 51831, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 51858, + "start": 51793, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51861, + "start": 51860, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51792, + "name": "line", + "start": 51788, + "type": "Identifier" + }, + "end": 51862, + "optional": false, + "start": 51788, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 51901, + "raw": "0.3670208139314082", + "start": 51883, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 51901, + "operator": "-", + "start": 51882, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 51929, + "raw": "0.21201331909674526", + "start": 51910, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 51936, + "start": 51873, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 51939, + "start": 51938, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51872, + "name": "line", + "start": 51868, + "type": "Identifier" + }, + "end": 51940, + "optional": false, + "start": 51868, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 51979, + "raw": "0.4707511307971115", + "start": 51961, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 51979, + "operator": "-", + "start": 51960, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 52006, + "raw": "0.4905279615419764", + "start": 51988, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 52013, + "start": 51951, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52016, + "start": 52015, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51950, + "name": "line", + "start": 51946, + "type": "Identifier" + }, + "end": 52017, + "optional": false, + "start": 51946, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 52056, + "raw": "0.8328324229085962", + "start": 52038, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 52056, + "operator": "-", + "start": 52037, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 52083, + "raw": "0.4677492878818803", + "start": 52065, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 52090, + "start": 52028, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52093, + "start": 52092, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52027, + "name": "line", + "start": 52023, + "type": "Identifier" + }, + "end": 52094, + "optional": false, + "start": 52023, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 52133, + "raw": "0.8111463382182231", + "start": 52115, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 52133, + "operator": "-", + "start": 52114, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 52162, + "raw": "0.41814807547140576", + "start": 52143, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 52162, + "operator": "-", + "start": 52142, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 52169, + "start": 52105, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52172, + "start": 52171, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52104, + "name": "line", + "start": 52100, + "type": "Identifier" + }, + "end": 52173, + "optional": false, + "start": 52100, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52212, + "raw": "0.03807684940941125", + "start": 52193, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 52240, + "raw": "0.25664826686353326", + "start": 52221, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 52247, + "start": 52184, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52250, + "start": 52249, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52183, + "name": "line", + "start": 52179, + "type": "Identifier" + }, + "end": 52251, + "optional": false, + "start": 52179, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52290, + "raw": "0.23950083339596384", + "start": 52271, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 52318, + "raw": "0.43693196301855575", + "start": 52299, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 52325, + "start": 52262, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52328, + "start": 52327, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52261, + "name": "line", + "start": 52257, + "type": "Identifier" + }, + "end": 52329, + "optional": false, + "start": 52257, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 52369, + "raw": "0.16279444820904887", + "start": 52350, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 52369, + "operator": "-", + "start": 52349, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 52396, + "raw": "0.8064475707664818", + "start": 52378, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 52403, + "start": 52340, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52406, + "start": 52405, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52339, + "name": "line", + "start": 52335, + "type": "Identifier" + }, + "end": 52407, + "optional": false, + "start": 52335, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 52447, + "raw": "0.08972872009232558", + "start": 52428, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 52447, + "operator": "-", + "start": 52427, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 52476, + "raw": "0.08887625823751266", + "start": 52457, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 52476, + "operator": "-", + "start": 52456, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 52483, + "start": 52418, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52486, + "start": 52485, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52417, + "name": "line", + "start": 52413, + "type": "Identifier" + }, + "end": 52487, + "optional": false, + "start": 52413, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52525, + "raw": "0.9203433427102556", + "start": 52507, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 52554, + "raw": "0.17343459369697545", + "start": 52535, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 52554, + "operator": "-", + "start": 52534, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 52561, + "start": 52498, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52564, + "start": 52563, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52497, + "name": "line", + "start": 52493, + "type": "Identifier" + }, + "end": 52565, + "optional": false, + "start": 52493, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52606, + "raw": "0.0017496234414517975", + "start": 52585, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 52634, + "raw": "0.5178508316168335", + "start": 52616, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 52634, + "operator": "-", + "start": 52615, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 52641, + "start": 52576, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52644, + "start": 52643, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52575, + "name": "line", + "start": 52571, + "type": "Identifier" + }, + "end": 52645, + "optional": false, + "start": 52571, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52683, + "raw": "0.6206263405732759", + "start": 52665, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 52711, + "raw": "0.8733399468665124", + "start": 52693, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 52711, + "operator": "-", + "start": 52692, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 52718, + "start": 52656, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52721, + "start": 52720, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52655, + "name": "line", + "start": 52651, + "type": "Identifier" + }, + "end": 52722, + "optional": false, + "start": 52651, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 52761, + "raw": "0.7776386664456383", + "start": 52743, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 52761, + "operator": "-", + "start": 52742, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 52788, + "raw": "0.7602780485384968", + "start": 52770, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 52795, + "start": 52733, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52798, + "start": 52797, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52732, + "name": "line", + "start": 52728, + "type": "Identifier" + }, + "end": 52799, + "optional": false, + "start": 52728, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52829, + "raw": "0.5439379760788592", + "start": 52811, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 52849, + "raw": "0.8449177589350552", + "start": 52831, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 52850, + "start": 52810, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52853, + "start": 52852, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52809, + "name": "line", + "start": 52805, + "type": "Identifier" + }, + "end": 52854, + "optional": false, + "start": 52805, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 52894, + "raw": "0.13036646025917076", + "start": 52875, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 52894, + "operator": "-", + "start": 52874, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 52923, + "raw": "0.012051713627069693", + "start": 52903, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 52930, + "start": 52865, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 52933, + "start": 52932, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52864, + "name": "line", + "start": 52860, + "type": "Identifier" + }, + "end": 52934, + "optional": false, + "start": 52860, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 52973, + "raw": "0.1656465612645519", + "start": 52955, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 52973, + "operator": "-", + "start": 52954, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 53002, + "raw": "0.20775229173765486", + "start": 52983, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 53002, + "operator": "-", + "start": 52982, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53009, + "start": 52945, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53012, + "start": 53011, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 52944, + "name": "line", + "start": 52940, + "type": "Identifier" + }, + "end": 53013, + "optional": false, + "start": 52940, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 53052, + "raw": "0.0962723255929061", + "start": 53034, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 53052, + "operator": "-", + "start": 53033, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 53081, + "raw": "0.05417797659066137", + "start": 53062, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 53081, + "operator": "-", + "start": 53061, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53088, + "start": 53024, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53091, + "start": 53090, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53023, + "name": "line", + "start": 53019, + "type": "Identifier" + }, + "end": 53092, + "optional": false, + "start": 53019, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53121, + "raw": "0.902108945498191", + "start": 53104, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 53141, + "raw": "0.3958978534964961", + "start": 53123, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 53142, + "start": 53103, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53145, + "start": 53144, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53102, + "name": "line", + "start": 53098, + "type": "Identifier" + }, + "end": 53146, + "optional": false, + "start": 53098, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53185, + "raw": "0.27997950083139167", + "start": 53166, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 53214, + "raw": "0.17778188444008958", + "start": 53195, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 53214, + "operator": "-", + "start": 53194, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53221, + "start": 53157, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53224, + "start": 53223, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53156, + "name": "line", + "start": 53152, + "type": "Identifier" + }, + "end": 53225, + "optional": false, + "start": 53152, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53255, + "raw": "0.5235806061589545", + "start": 53237, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 53274, + "raw": "0.694318985642328", + "start": 53257, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 53275, + "start": 53236, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53278, + "start": 53277, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53235, + "name": "line", + "start": 53231, + "type": "Identifier" + }, + "end": 53279, + "optional": false, + "start": 53231, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53318, + "raw": "0.39140760219992154", + "start": 53299, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 53346, + "raw": "0.7839795272576484", + "start": 53328, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 53346, + "operator": "-", + "start": 53327, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53353, + "start": 53290, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53356, + "start": 53355, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53289, + "name": "line", + "start": 53285, + "type": "Identifier" + }, + "end": 53357, + "optional": false, + "start": 53285, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53387, + "raw": "0.8414243527073519", + "start": 53369, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 53407, + "raw": "0.5395591528940082", + "start": 53389, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 53408, + "start": 53368, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53411, + "start": 53410, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53367, + "name": "line", + "start": 53363, + "type": "Identifier" + }, + "end": 53412, + "optional": false, + "start": 53363, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53450, + "raw": "0.6137667704875602", + "start": 53432, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 53478, + "raw": "0.22119647516722085", + "start": 53459, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 53485, + "start": 53423, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53488, + "start": 53487, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53422, + "name": "line", + "start": 53418, + "type": "Identifier" + }, + "end": 53489, + "optional": false, + "start": 53418, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53519, + "raw": "0.8830488380766681", + "start": 53501, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 53539, + "raw": "0.6996724408425232", + "start": 53521, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 53540, + "start": 53500, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53543, + "start": 53542, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53499, + "name": "line", + "start": 53495, + "type": "Identifier" + }, + "end": 53544, + "optional": false, + "start": 53495, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 53584, + "raw": "0.41290485754343953", + "start": 53565, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 53584, + "operator": "-", + "start": 53564, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 53612, + "raw": "0.4152647361760933", + "start": 53594, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 53612, + "operator": "-", + "start": 53593, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53619, + "start": 53555, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53622, + "start": 53621, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53554, + "name": "line", + "start": 53550, + "type": "Identifier" + }, + "end": 53623, + "optional": false, + "start": 53550, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53661, + "raw": "0.5169538755575687", + "start": 53643, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 53689, + "raw": "0.9085567867302617", + "start": 53671, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 53689, + "operator": "-", + "start": 53670, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53696, + "start": 53634, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53699, + "start": 53698, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53633, + "name": "line", + "start": 53629, + "type": "Identifier" + }, + "end": 53700, + "optional": false, + "start": 53629, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 53739, + "raw": "0.6716353749059765", + "start": 53721, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 53739, + "operator": "-", + "start": 53720, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 53767, + "raw": "0.9605576808879026", + "start": 53749, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 53767, + "operator": "-", + "start": 53748, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53774, + "start": 53711, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53777, + "start": 53776, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53710, + "name": "line", + "start": 53706, + "type": "Identifier" + }, + "end": 53778, + "optional": false, + "start": 53706, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53818, + "raw": "0.010280170930300203", + "start": 53798, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 53847, + "raw": "0.37344123662342166", + "start": 53828, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 53847, + "operator": "-", + "start": 53827, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53854, + "start": 53789, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53857, + "start": 53856, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53788, + "name": "line", + "start": 53784, + "type": "Identifier" + }, + "end": 53858, + "optional": false, + "start": 53784, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53897, + "raw": "0.10357375682791004", + "start": 53878, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 53926, + "raw": "0.42294321030821425", + "start": 53907, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 53926, + "operator": "-", + "start": 53906, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 53933, + "start": 53869, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 53936, + "start": 53935, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53868, + "name": "line", + "start": 53864, + "type": "Identifier" + }, + "end": 53937, + "optional": false, + "start": 53864, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53975, + "raw": "0.4520311575096987", + "start": 53957, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 54004, + "raw": "0.11232675307600548", + "start": 53985, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 54004, + "operator": "-", + "start": 53984, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 54011, + "start": 53948, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54014, + "start": 54013, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 53947, + "name": "line", + "start": 53943, + "type": "Identifier" + }, + "end": 54015, + "optional": false, + "start": 53943, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 54054, + "raw": "0.8821185914380845", + "start": 54036, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 54054, + "operator": "-", + "start": 54035, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 54082, + "raw": "0.7155147434939819", + "start": 54064, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 54082, + "operator": "-", + "start": 54063, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 54089, + "start": 54026, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54092, + "start": 54091, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54025, + "name": "line", + "start": 54021, + "type": "Identifier" + }, + "end": 54093, + "optional": false, + "start": 54021, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54123, + "raw": "0.9195487101690416", + "start": 54105, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 54143, + "raw": "0.2691627465297364", + "start": 54125, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 54144, + "start": 54104, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54147, + "start": 54146, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54103, + "name": "line", + "start": 54099, + "type": "Identifier" + }, + "end": 54148, + "optional": false, + "start": 54099, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54186, + "raw": "0.7098978191546745", + "start": 54168, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 54214, + "raw": "0.11710004169385968", + "start": 54195, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 54221, + "start": 54159, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54224, + "start": 54223, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54158, + "name": "line", + "start": 54154, + "type": "Identifier" + }, + "end": 54225, + "optional": false, + "start": 54154, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 54265, + "raw": "0.37876368560819995", + "start": 54246, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 54265, + "operator": "-", + "start": 54245, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 54292, + "raw": "0.7106729314759084", + "start": 54274, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 54299, + "start": 54236, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54302, + "start": 54301, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54235, + "name": "line", + "start": 54231, + "type": "Identifier" + }, + "end": 54303, + "optional": false, + "start": 54231, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 54343, + "raw": "0.29728126898353335", + "start": 54324, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 54343, + "operator": "-", + "start": 54323, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 54372, + "raw": "0.06649734568328003", + "start": 54353, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 54372, + "operator": "-", + "start": 54352, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 54379, + "start": 54314, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54382, + "start": 54381, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54313, + "name": "line", + "start": 54309, + "type": "Identifier" + }, + "end": 54383, + "optional": false, + "start": 54309, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54422, + "raw": "0.22965781558352072", + "start": 54403, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 54450, + "raw": "0.7601866432836641", + "start": 54432, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 54450, + "operator": "-", + "start": 54431, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 54457, + "start": 54394, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54460, + "start": 54459, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54393, + "name": "line", + "start": 54389, + "type": "Identifier" + }, + "end": 54461, + "optional": false, + "start": 54389, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 54500, + "raw": "0.6356501074317229", + "start": 54482, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 54500, + "operator": "-", + "start": 54481, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 54528, + "raw": "0.19458425399338064", + "start": 54509, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 54535, + "start": 54472, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54538, + "start": 54537, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54471, + "name": "line", + "start": 54467, + "type": "Identifier" + }, + "end": 54539, + "optional": false, + "start": 54467, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54569, + "raw": "0.5721251777404546", + "start": 54551, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 54589, + "raw": "0.2888584097921527", + "start": 54571, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 54590, + "start": 54550, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54593, + "start": 54592, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54549, + "name": "line", + "start": 54545, + "type": "Identifier" + }, + "end": 54594, + "optional": false, + "start": 54545, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 54633, + "raw": "0.9580409549552311", + "start": 54615, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 54633, + "operator": "-", + "start": 54614, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 54662, + "raw": "0.02243818192078395", + "start": 54643, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 54662, + "operator": "-", + "start": 54642, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 54669, + "start": 54605, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54672, + "start": 54671, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54604, + "name": "line", + "start": 54600, + "type": "Identifier" + }, + "end": 54673, + "optional": false, + "start": 54600, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54711, + "raw": "0.3299184618602866", + "start": 54693, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 54739, + "raw": "0.8353726942369875", + "start": 54721, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 54739, + "operator": "-", + "start": 54720, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 54746, + "start": 54684, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54749, + "start": 54748, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54683, + "name": "line", + "start": 54679, + "type": "Identifier" + }, + "end": 54750, + "optional": false, + "start": 54679, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54788, + "raw": "0.7434639386755209", + "start": 54770, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 54816, + "raw": "0.7919648864138378", + "start": 54798, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 54816, + "operator": "-", + "start": 54797, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 54823, + "start": 54761, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54826, + "start": 54825, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54760, + "name": "line", + "start": 54756, + "type": "Identifier" + }, + "end": 54827, + "optional": false, + "start": 54756, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54857, + "raw": "0.9935751011164615", + "start": 54839, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 54877, + "raw": "0.9042566468497608", + "start": 54859, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 54878, + "start": 54838, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54881, + "start": 54880, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54837, + "name": "line", + "start": 54833, + "type": "Identifier" + }, + "end": 54882, + "optional": false, + "start": 54833, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 54921, + "raw": "0.5035812884687294", + "start": 54903, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 54921, + "operator": "-", + "start": 54902, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 54948, + "raw": "0.5150967434989442", + "start": 54930, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 54955, + "start": 54893, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54958, + "start": 54957, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54892, + "name": "line", + "start": 54888, + "type": "Identifier" + }, + "end": 54959, + "optional": false, + "start": 54888, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 54989, + "raw": "0.5526227215900215", + "start": 54971, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 55009, + "raw": "0.7612604137272441", + "start": 54991, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 55010, + "start": 54970, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55013, + "start": 55012, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 54969, + "name": "line", + "start": 54965, + "type": "Identifier" + }, + "end": 55014, + "optional": false, + "start": 54965, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 55052, + "raw": "0.8593271349126876", + "start": 55034, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 55080, + "raw": "0.08414894953725849", + "start": 55061, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 55087, + "start": 55025, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55090, + "start": 55089, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55024, + "name": "line", + "start": 55020, + "type": "Identifier" + }, + "end": 55091, + "optional": false, + "start": 55020, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55130, + "raw": "0.8181049219192864", + "start": 55112, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 55130, + "operator": "-", + "start": 55111, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 55157, + "raw": "0.903548131323352", + "start": 55140, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 55157, + "operator": "-", + "start": 55139, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 55164, + "start": 55102, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55167, + "start": 55166, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55101, + "name": "line", + "start": 55097, + "type": "Identifier" + }, + "end": 55168, + "optional": false, + "start": 55097, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 55206, + "raw": "0.3165782044458305", + "start": 55188, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 55235, + "raw": "0.24189274252014914", + "start": 55216, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 55235, + "operator": "-", + "start": 55215, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 55242, + "start": 55179, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55245, + "start": 55244, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55178, + "name": "line", + "start": 55174, + "type": "Identifier" + }, + "end": 55246, + "optional": false, + "start": 55174, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55286, + "raw": "0.44390956414045135", + "start": 55267, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 55286, + "operator": "-", + "start": 55266, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 55315, + "raw": "0.25912591535126905", + "start": 55296, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 55315, + "operator": "-", + "start": 55295, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 55322, + "start": 55257, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55325, + "start": 55324, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55256, + "name": "line", + "start": 55252, + "type": "Identifier" + }, + "end": 55326, + "optional": false, + "start": 55252, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55365, + "raw": "0.6605165911891009", + "start": 55347, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 55365, + "operator": "-", + "start": 55346, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 55394, + "raw": "0.40355115288839194", + "start": 55375, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 55394, + "operator": "-", + "start": 55374, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 55401, + "start": 55337, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55404, + "start": 55403, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55336, + "name": "line", + "start": 55332, + "type": "Identifier" + }, + "end": 55405, + "optional": false, + "start": 55332, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55444, + "raw": "0.7170489950180006", + "start": 55426, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 55444, + "operator": "-", + "start": 55425, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 55472, + "raw": "0.23454356079651384", + "start": 55453, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 55479, + "start": 55416, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55482, + "start": 55481, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55415, + "name": "line", + "start": 55411, + "type": "Identifier" + }, + "end": 55483, + "optional": false, + "start": 55411, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55522, + "raw": "0.2568187045379722", + "start": 55504, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 55522, + "operator": "-", + "start": 55503, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 55551, + "raw": "0.45031188717601367", + "start": 55532, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 55551, + "operator": "-", + "start": 55531, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 55558, + "start": 55494, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55561, + "start": 55560, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55493, + "name": "line", + "start": 55489, + "type": "Identifier" + }, + "end": 55562, + "optional": false, + "start": 55489, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 55600, + "raw": "0.6751951211858687", + "start": 55582, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 55628, + "raw": "0.9709424233465593", + "start": 55610, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 55628, + "operator": "-", + "start": 55609, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 55635, + "start": 55573, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55638, + "start": 55637, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55572, + "name": "line", + "start": 55568, + "type": "Identifier" + }, + "end": 55639, + "optional": false, + "start": 55568, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55678, + "raw": "0.5689619842972184", + "start": 55660, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 55678, + "operator": "-", + "start": 55659, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 55705, + "raw": "0.5918969913790362", + "start": 55687, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 55712, + "start": 55650, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55715, + "start": 55714, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55649, + "name": "line", + "start": 55645, + "type": "Identifier" + }, + "end": 55716, + "optional": false, + "start": 55645, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55755, + "raw": "0.8328324229085962", + "start": 55737, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 55755, + "operator": "-", + "start": 55736, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 55782, + "raw": "0.4677492878818803", + "start": 55764, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 55789, + "start": 55727, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55792, + "start": 55791, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55726, + "name": "line", + "start": 55722, + "type": "Identifier" + }, + "end": 55793, + "optional": false, + "start": 55722, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 55832, + "raw": "0.8111463382182231", + "start": 55814, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 55832, + "operator": "-", + "start": 55813, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 55861, + "raw": "0.41814807547140576", + "start": 55842, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 55861, + "operator": "-", + "start": 55841, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 55868, + "start": 55804, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55871, + "start": 55870, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55803, + "name": "line", + "start": 55799, + "type": "Identifier" + }, + "end": 55872, + "optional": false, + "start": 55799, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 55911, + "raw": "0.03807684940941125", + "start": 55892, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 55939, + "raw": "0.25664826686353326", + "start": 55920, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 55946, + "start": 55883, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 55949, + "start": 55948, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55882, + "name": "line", + "start": 55878, + "type": "Identifier" + }, + "end": 55950, + "optional": false, + "start": 55878, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 55989, + "raw": "0.23950083339596384", + "start": 55970, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 56017, + "raw": "0.43693196301855575", + "start": 55998, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 56024, + "start": 55961, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56027, + "start": 56026, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 55960, + "name": "line", + "start": 55956, + "type": "Identifier" + }, + "end": 56028, + "optional": false, + "start": 55956, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 56068, + "raw": "0.16279444820904887", + "start": 56049, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 56068, + "operator": "-", + "start": 56048, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 56095, + "raw": "0.8064475707664818", + "start": 56077, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 56102, + "start": 56039, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56105, + "start": 56104, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56038, + "name": "line", + "start": 56034, + "type": "Identifier" + }, + "end": 56106, + "optional": false, + "start": 56034, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 56146, + "raw": "0.08972872009232558", + "start": 56127, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 56146, + "operator": "-", + "start": 56126, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 56175, + "raw": "0.08887625823751266", + "start": 56156, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 56175, + "operator": "-", + "start": 56155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 56182, + "start": 56117, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56185, + "start": 56184, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56116, + "name": "line", + "start": 56112, + "type": "Identifier" + }, + "end": 56186, + "optional": false, + "start": 56112, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56224, + "raw": "0.9203433427102556", + "start": 56206, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 56253, + "raw": "0.17343459369697545", + "start": 56234, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 56253, + "operator": "-", + "start": 56233, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 56260, + "start": 56197, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56263, + "start": 56262, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56196, + "name": "line", + "start": 56192, + "type": "Identifier" + }, + "end": 56264, + "optional": false, + "start": 56192, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56305, + "raw": "0.0017496234414517975", + "start": 56284, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 56333, + "raw": "0.5178508316168335", + "start": 56315, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 56333, + "operator": "-", + "start": 56314, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 56340, + "start": 56275, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56343, + "start": 56342, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56274, + "name": "line", + "start": 56270, + "type": "Identifier" + }, + "end": 56344, + "optional": false, + "start": 56270, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56382, + "raw": "0.6206263405732759", + "start": 56364, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 56410, + "raw": "0.8733399468665124", + "start": 56392, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 56410, + "operator": "-", + "start": 56391, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 56417, + "start": 56355, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56420, + "start": 56419, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56354, + "name": "line", + "start": 56350, + "type": "Identifier" + }, + "end": 56421, + "optional": false, + "start": 56350, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 56460, + "raw": "0.7776386664456383", + "start": 56442, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 56460, + "operator": "-", + "start": 56441, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 56487, + "raw": "0.7602780485384968", + "start": 56469, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 56494, + "start": 56432, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56497, + "start": 56496, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56431, + "name": "line", + "start": 56427, + "type": "Identifier" + }, + "end": 56498, + "optional": false, + "start": 56427, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56528, + "raw": "0.5439379760788592", + "start": 56510, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 56548, + "raw": "0.8449177589350552", + "start": 56530, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 56549, + "start": 56509, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56552, + "start": 56551, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56508, + "name": "line", + "start": 56504, + "type": "Identifier" + }, + "end": 56553, + "optional": false, + "start": 56504, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 56593, + "raw": "0.13036646025917076", + "start": 56574, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 56593, + "operator": "-", + "start": 56573, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 56622, + "raw": "0.012051713627069693", + "start": 56602, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 56629, + "start": 56564, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56632, + "start": 56631, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56563, + "name": "line", + "start": 56559, + "type": "Identifier" + }, + "end": 56633, + "optional": false, + "start": 56559, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 56672, + "raw": "0.1656465612645519", + "start": 56654, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 56672, + "operator": "-", + "start": 56653, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 56701, + "raw": "0.20775229173765486", + "start": 56682, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 56701, + "operator": "-", + "start": 56681, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 56708, + "start": 56644, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56711, + "start": 56710, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56643, + "name": "line", + "start": 56639, + "type": "Identifier" + }, + "end": 56712, + "optional": false, + "start": 56639, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 56751, + "raw": "0.0962723255929061", + "start": 56733, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 56751, + "operator": "-", + "start": 56732, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 56780, + "raw": "0.05417797659066137", + "start": 56761, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 56780, + "operator": "-", + "start": 56760, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 56787, + "start": 56723, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56790, + "start": 56789, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56722, + "name": "line", + "start": 56718, + "type": "Identifier" + }, + "end": 56791, + "optional": false, + "start": 56718, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56820, + "raw": "0.902108945498191", + "start": 56803, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 56840, + "raw": "0.3958978534964961", + "start": 56822, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 56841, + "start": 56802, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56844, + "start": 56843, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56801, + "name": "line", + "start": 56797, + "type": "Identifier" + }, + "end": 56845, + "optional": false, + "start": 56797, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56884, + "raw": "0.27997950083139167", + "start": 56865, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 56913, + "raw": "0.17778188444008958", + "start": 56894, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 56913, + "operator": "-", + "start": 56893, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 56920, + "start": 56856, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56923, + "start": 56922, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56855, + "name": "line", + "start": 56851, + "type": "Identifier" + }, + "end": 56924, + "optional": false, + "start": 56851, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56954, + "raw": "0.5235806061589545", + "start": 56936, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 56973, + "raw": "0.694318985642328", + "start": 56956, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 56974, + "start": 56935, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 56977, + "start": 56976, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56934, + "name": "line", + "start": 56930, + "type": "Identifier" + }, + "end": 56978, + "optional": false, + "start": 56930, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57017, + "raw": "0.39140760219992154", + "start": 56998, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 57045, + "raw": "0.7839795272576484", + "start": 57027, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 57045, + "operator": "-", + "start": 57026, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57052, + "start": 56989, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57055, + "start": 57054, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 56988, + "name": "line", + "start": 56984, + "type": "Identifier" + }, + "end": 57056, + "optional": false, + "start": 56984, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57086, + "raw": "0.8414243527073519", + "start": 57068, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 57106, + "raw": "0.5395591528940082", + "start": 57088, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 57107, + "start": 57067, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57110, + "start": 57109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57066, + "name": "line", + "start": 57062, + "type": "Identifier" + }, + "end": 57111, + "optional": false, + "start": 57062, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57149, + "raw": "0.6137667704875602", + "start": 57131, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 57177, + "raw": "0.22119647516722085", + "start": 57158, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 57184, + "start": 57122, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57187, + "start": 57186, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57121, + "name": "line", + "start": 57117, + "type": "Identifier" + }, + "end": 57188, + "optional": false, + "start": 57117, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57218, + "raw": "0.8830488380766681", + "start": 57200, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 57238, + "raw": "0.6996724408425232", + "start": 57220, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 57239, + "start": 57199, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57242, + "start": 57241, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57198, + "name": "line", + "start": 57194, + "type": "Identifier" + }, + "end": 57243, + "optional": false, + "start": 57194, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 57283, + "raw": "0.41290485754343953", + "start": 57264, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 57283, + "operator": "-", + "start": 57263, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 57311, + "raw": "0.4152647361760933", + "start": 57293, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 57311, + "operator": "-", + "start": 57292, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57318, + "start": 57254, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57321, + "start": 57320, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57253, + "name": "line", + "start": 57249, + "type": "Identifier" + }, + "end": 57322, + "optional": false, + "start": 57249, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57360, + "raw": "0.5169538755575687", + "start": 57342, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 57388, + "raw": "0.9085567867302617", + "start": 57370, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 57388, + "operator": "-", + "start": 57369, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57395, + "start": 57333, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57398, + "start": 57397, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57332, + "name": "line", + "start": 57328, + "type": "Identifier" + }, + "end": 57399, + "optional": false, + "start": 57328, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57437, + "raw": "0.6751951211858687", + "start": 57419, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 57465, + "raw": "0.9709424233465593", + "start": 57447, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 57465, + "operator": "-", + "start": 57446, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57472, + "start": 57410, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57475, + "start": 57474, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57409, + "name": "line", + "start": 57405, + "type": "Identifier" + }, + "end": 57476, + "optional": false, + "start": 57405, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 57515, + "raw": "0.5689619842972184", + "start": 57497, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 57515, + "operator": "-", + "start": 57496, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 57542, + "raw": "0.5918969913790362", + "start": 57524, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 57549, + "start": 57487, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57552, + "start": 57551, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57486, + "name": "line", + "start": 57482, + "type": "Identifier" + }, + "end": 57553, + "optional": false, + "start": 57482, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57591, + "raw": "0.9464450621708211", + "start": 57573, + "type": "Literal", + "type": "Literal", + "value": 0.9464450621708211 + }, + { + "argument": { + "end": 57619, + "raw": "0.2684908127803667", + "start": 57601, + "type": "Literal", + "type": "Literal", + "value": 0.2684908127803667 + }, + "end": 57619, + "operator": "-", + "start": 57600, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57626, + "start": 57564, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57629, + "start": 57628, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57563, + "name": "line", + "start": 57559, + "type": "Identifier" + }, + "end": 57630, + "optional": false, + "start": 57559, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57660, + "raw": "0.5241732366617591", + "start": 57642, + "type": "Literal", + "type": "Literal", + "value": 0.5241732366617591 + }, + { + "end": 57680, + "raw": "0.9011437416408563", + "start": 57662, + "type": "Literal", + "type": "Literal", + "value": 0.9011437416408563 + } + ], + "end": 57681, + "start": 57641, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57684, + "start": 57683, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57640, + "name": "line", + "start": 57636, + "type": "Identifier" + }, + "end": 57685, + "optional": false, + "start": 57636, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 57725, + "raw": "0.14255393713960607", + "start": 57706, + "type": "Literal", + "type": "Literal", + "value": 0.14255393713960607 + }, + "end": 57725, + "operator": "-", + "start": 57705, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 57753, + "raw": "0.5194262624564814", + "start": 57735, + "type": "Literal", + "type": "Literal", + "value": 0.5194262624564814 + }, + "end": 57753, + "operator": "-", + "start": 57734, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57760, + "start": 57696, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57763, + "start": 57762, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57695, + "name": "line", + "start": 57691, + "type": "Identifier" + }, + "end": 57764, + "optional": false, + "start": 57691, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 57803, + "raw": "0.4287123231350338", + "start": 57785, + "type": "Literal", + "type": "Literal", + "value": 0.4287123231350338 + }, + "end": 57803, + "operator": "-", + "start": 57784, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 57831, + "raw": "0.4223564528725028", + "start": 57813, + "type": "Literal", + "type": "Literal", + "value": 0.4223564528725028 + }, + "end": 57831, + "operator": "-", + "start": 57812, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57838, + "start": 57775, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57841, + "start": 57840, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57774, + "name": "line", + "start": 57770, + "type": "Identifier" + }, + "end": 57842, + "optional": false, + "start": 57770, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 57882, + "raw": "0.09316367294024519", + "start": 57863, + "type": "Literal", + "type": "Literal", + "value": 0.09316367294024519 + }, + "end": 57882, + "operator": "-", + "start": 57862, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 57910, + "raw": "0.9063127021008246", + "start": 57892, + "type": "Literal", + "type": "Literal", + "value": 0.9063127021008246 + }, + "end": 57910, + "operator": "-", + "start": 57891, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 57917, + "start": 57853, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57920, + "start": 57919, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57852, + "name": "line", + "start": 57848, + "type": "Identifier" + }, + "end": 57921, + "optional": false, + "start": 57848, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 57960, + "raw": "0.2767766535558669", + "start": 57942, + "type": "Literal", + "type": "Literal", + "value": 0.2767766535558669 + }, + "end": 57960, + "operator": "-", + "start": 57941, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 57987, + "raw": "0.6816248114129131", + "start": 57969, + "type": "Literal", + "type": "Literal", + "value": 0.6816248114129131 + } + ], + "end": 57994, + "start": 57932, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 57997, + "start": 57996, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 57931, + "name": "line", + "start": 57927, + "type": "Identifier" + }, + "end": 57998, + "optional": false, + "start": 57927, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58036, + "raw": "0.9796762495562534", + "start": 58018, + "type": "Literal", + "type": "Literal", + "value": 0.9796762495562534 + }, + { + "argument": { + "end": 58064, + "raw": "0.0822145668330625", + "start": 58046, + "type": "Literal", + "type": "Literal", + "value": 0.0822145668330625 + }, + "end": 58064, + "operator": "-", + "start": 58045, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 58071, + "start": 58009, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58074, + "start": 58073, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58008, + "name": "line", + "start": 58004, + "type": "Identifier" + }, + "end": 58075, + "optional": false, + "start": 58004, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 58114, + "raw": "0.8666513070867441", + "start": 58096, + "type": "Literal", + "type": "Literal", + "value": 0.8666513070867441 + }, + "end": 58114, + "operator": "-", + "start": 58095, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 58141, + "raw": "0.301053160242023", + "start": 58124, + "type": "Literal", + "type": "Literal", + "value": 0.301053160242023 + }, + "end": 58141, + "operator": "-", + "start": 58123, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 58148, + "start": 58086, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58151, + "start": 58150, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58085, + "name": "line", + "start": 58081, + "type": "Identifier" + }, + "end": 58152, + "optional": false, + "start": 58081, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58189, + "raw": "0.537415656028112", + "start": 58172, + "type": "Literal", + "type": "Literal", + "value": 0.537415656028112 + }, + { + "end": 58218, + "raw": "0.020272692875002774", + "start": 58198, + "type": "Literal", + "type": "Literal", + "value": 0.020272692875002774 + } + ], + "end": 58225, + "start": 58163, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58228, + "start": 58227, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58162, + "name": "line", + "start": 58158, + "type": "Identifier" + }, + "end": 58229, + "optional": false, + "start": 58158, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58267, + "raw": "0.9332396256457531", + "start": 58249, + "type": "Literal", + "type": "Literal", + "value": 0.9332396256457531 + }, + { + "argument": { + "end": 58295, + "raw": "0.6228175690649898", + "start": 58277, + "type": "Literal", + "type": "Literal", + "value": 0.6228175690649898 + }, + "end": 58295, + "operator": "-", + "start": 58276, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 58302, + "start": 58240, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58305, + "start": 58304, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58239, + "name": "line", + "start": 58235, + "type": "Identifier" + }, + "end": 58306, + "optional": false, + "start": 58235, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58345, + "raw": "0.18052415837320734", + "start": 58326, + "type": "Literal", + "type": "Literal", + "value": 0.18052415837320734 + }, + { + "argument": { + "end": 58374, + "raw": "0.36894384647296197", + "start": 58355, + "type": "Literal", + "type": "Literal", + "value": 0.36894384647296197 + }, + "end": 58374, + "operator": "-", + "start": 58354, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 58381, + "start": 58317, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58384, + "start": 58383, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58316, + "name": "line", + "start": 58312, + "type": "Identifier" + }, + "end": 58385, + "optional": false, + "start": 58312, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58415, + "raw": "0.5384372634075449", + "start": 58397, + "type": "Literal", + "type": "Literal", + "value": 0.5384372634075449 + }, + { + "end": 58435, + "raw": "0.2377565050887107", + "start": 58417, + "type": "Literal", + "type": "Literal", + "value": 0.2377565050887107 + } + ], + "end": 58436, + "start": 58396, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58439, + "start": 58438, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58395, + "name": "line", + "start": 58391, + "type": "Identifier" + }, + "end": 58440, + "optional": false, + "start": 58391, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58479, + "raw": "0.39043436929278874", + "start": 58460, + "type": "Literal", + "type": "Literal", + "value": 0.39043436929278874 + }, + { + "end": 58507, + "raw": "0.14273182483160451", + "start": 58488, + "type": "Literal", + "type": "Literal", + "value": 0.14273182483160451 + } + ], + "end": 58514, + "start": 58451, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58517, + "start": 58516, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58450, + "name": "line", + "start": 58446, + "type": "Identifier" + }, + "end": 58518, + "optional": false, + "start": 58446, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58557, + "raw": "0.09782890412897283", + "start": 58538, + "type": "Literal", + "type": "Literal", + "value": 0.09782890412897283 + }, + { + "end": 58584, + "raw": "0.9907667536909659", + "start": 58566, + "type": "Literal", + "type": "Literal", + "value": 0.9907667536909659 + } + ], + "end": 58591, + "start": 58529, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58594, + "start": 58593, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58528, + "name": "line", + "start": 58524, + "type": "Identifier" + }, + "end": 58595, + "optional": false, + "start": 58524, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58633, + "raw": "0.5286610085921146", + "start": 58615, + "type": "Literal", + "type": "Literal", + "value": 0.5286610085921146 + }, + { + "argument": { + "end": 58661, + "raw": "0.7924508308419256", + "start": 58643, + "type": "Literal", + "type": "Literal", + "value": 0.7924508308419256 + }, + "end": 58661, + "operator": "-", + "start": 58642, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 58668, + "start": 58606, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58671, + "start": 58670, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58605, + "name": "line", + "start": 58601, + "type": "Identifier" + }, + "end": 58672, + "optional": false, + "start": 58601, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58710, + "raw": "0.3789978184503342", + "start": 58692, + "type": "Literal", + "type": "Literal", + "value": 0.3789978184503342 + }, + { + "end": 58738, + "raw": "0.12396120576838676", + "start": 58719, + "type": "Literal", + "type": "Literal", + "value": 0.12396120576838676 + } + ], + "end": 58745, + "start": 58683, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58748, + "start": 58747, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58682, + "name": "line", + "start": 58678, + "type": "Identifier" + }, + "end": 58749, + "optional": false, + "start": 58678, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 58788, + "raw": "0.9484912744890612", + "start": 58770, + "type": "Literal", + "type": "Literal", + "value": 0.9484912744890612 + }, + "end": 58788, + "operator": "-", + "start": 58769, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 58815, + "raw": "0.6729649846476855", + "start": 58797, + "type": "Literal", + "type": "Literal", + "value": 0.6729649846476855 + } + ], + "end": 58822, + "start": 58760, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58825, + "start": 58824, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58759, + "name": "line", + "start": 58755, + "type": "Identifier" + }, + "end": 58826, + "optional": false, + "start": 58755, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58864, + "raw": "0.7451758753425153", + "start": 58846, + "type": "Literal", + "type": "Literal", + "value": 0.7451758753425153 + }, + { + "argument": { + "end": 58893, + "raw": "0.21318737562458967", + "start": 58874, + "type": "Literal", + "type": "Literal", + "value": 0.21318737562458967 + }, + "end": 58893, + "operator": "-", + "start": 58873, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 58900, + "start": 58837, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58903, + "start": 58902, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58836, + "name": "line", + "start": 58832, + "type": "Identifier" + }, + "end": 58904, + "optional": false, + "start": 58832, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 58942, + "raw": "0.1873200727251887", + "start": 58924, + "type": "Literal", + "type": "Literal", + "value": 0.1873200727251887 + }, + { + "argument": { + "end": 58971, + "raw": "0.15961374297992448", + "start": 58952, + "type": "Literal", + "type": "Literal", + "value": 0.15961374297992448 + }, + "end": 58971, + "operator": "-", + "start": 58951, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 58978, + "start": 58915, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 58981, + "start": 58980, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58914, + "name": "line", + "start": 58910, + "type": "Identifier" + }, + "end": 58982, + "optional": false, + "start": 58910, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59022, + "raw": "0.05729464924537564", + "start": 59003, + "type": "Literal", + "type": "Literal", + "value": 0.05729464924537564 + }, + "end": 59022, + "operator": "-", + "start": 59002, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 59050, + "raw": "0.5436345558508746", + "start": 59032, + "type": "Literal", + "type": "Literal", + "value": 0.5436345558508746 + }, + "end": 59050, + "operator": "-", + "start": 59031, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 59057, + "start": 58993, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59060, + "start": 59059, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 58992, + "name": "line", + "start": 58988, + "type": "Identifier" + }, + "end": 59061, + "optional": false, + "start": 58988, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59101, + "raw": "0.09582414374469184", + "start": 59082, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 59101, + "operator": "-", + "start": 59081, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 59129, + "raw": "0.7533839681212353", + "start": 59111, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 59129, + "operator": "-", + "start": 59110, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 59136, + "start": 59072, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59139, + "start": 59138, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59071, + "name": "line", + "start": 59067, + "type": "Identifier" + }, + "end": 59140, + "optional": false, + "start": 59067, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59180, + "raw": "0.17254116580051848", + "start": 59161, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 59180, + "operator": "-", + "start": 59160, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 59208, + "raw": "0.7669113400341137", + "start": 59190, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 59208, + "operator": "-", + "start": 59189, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 59215, + "start": 59151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59218, + "start": 59217, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59150, + "name": "line", + "start": 59146, + "type": "Identifier" + }, + "end": 59219, + "optional": false, + "start": 59146, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 59249, + "raw": "0.8944730032887609", + "start": 59231, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 59269, + "raw": "0.6093318694741408", + "start": 59251, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 59270, + "start": 59230, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59273, + "start": 59272, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59229, + "name": "line", + "start": 59225, + "type": "Identifier" + }, + "end": 59274, + "optional": false, + "start": 59225, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59313, + "raw": "0.3670208139314082", + "start": 59295, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 59313, + "operator": "-", + "start": 59294, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 59341, + "raw": "0.21201331909674526", + "start": 59322, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 59348, + "start": 59285, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59351, + "start": 59350, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59284, + "name": "line", + "start": 59280, + "type": "Identifier" + }, + "end": 59352, + "optional": false, + "start": 59280, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59391, + "raw": "0.4707511307971115", + "start": 59373, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 59391, + "operator": "-", + "start": 59372, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 59418, + "raw": "0.4905279615419764", + "start": 59400, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 59425, + "start": 59363, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59428, + "start": 59427, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59362, + "name": "line", + "start": 59358, + "type": "Identifier" + }, + "end": 59429, + "optional": false, + "start": 59358, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59468, + "raw": "0.8328324229085962", + "start": 59450, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 59468, + "operator": "-", + "start": 59449, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 59495, + "raw": "0.4677492878818803", + "start": 59477, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 59502, + "start": 59440, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59505, + "start": 59504, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59439, + "name": "line", + "start": 59435, + "type": "Identifier" + }, + "end": 59506, + "optional": false, + "start": 59435, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59545, + "raw": "0.8111463382182231", + "start": 59527, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 59545, + "operator": "-", + "start": 59526, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 59574, + "raw": "0.41814807547140576", + "start": 59555, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 59574, + "operator": "-", + "start": 59554, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 59581, + "start": 59517, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59584, + "start": 59583, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59516, + "name": "line", + "start": 59512, + "type": "Identifier" + }, + "end": 59585, + "optional": false, + "start": 59512, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 59624, + "raw": "0.03807684940941125", + "start": 59605, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 59652, + "raw": "0.25664826686353326", + "start": 59633, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 59659, + "start": 59596, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59662, + "start": 59661, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59595, + "name": "line", + "start": 59591, + "type": "Identifier" + }, + "end": 59663, + "optional": false, + "start": 59591, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 59702, + "raw": "0.23950083339596384", + "start": 59683, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 59730, + "raw": "0.43693196301855575", + "start": 59711, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 59737, + "start": 59674, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59740, + "start": 59739, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59673, + "name": "line", + "start": 59669, + "type": "Identifier" + }, + "end": 59741, + "optional": false, + "start": 59669, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59781, + "raw": "0.16279444820904887", + "start": 59762, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 59781, + "operator": "-", + "start": 59761, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 59808, + "raw": "0.8064475707664818", + "start": 59790, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 59815, + "start": 59752, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59818, + "start": 59817, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59751, + "name": "line", + "start": 59747, + "type": "Identifier" + }, + "end": 59819, + "optional": false, + "start": 59747, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 59859, + "raw": "0.08972872009232558", + "start": 59840, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 59859, + "operator": "-", + "start": 59839, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 59888, + "raw": "0.08887625823751266", + "start": 59869, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 59888, + "operator": "-", + "start": 59868, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 59895, + "start": 59830, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59898, + "start": 59897, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59829, + "name": "line", + "start": 59825, + "type": "Identifier" + }, + "end": 59899, + "optional": false, + "start": 59825, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 59937, + "raw": "0.9203433427102556", + "start": 59919, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 59966, + "raw": "0.17343459369697545", + "start": 59947, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 59966, + "operator": "-", + "start": 59946, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 59973, + "start": 59910, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59976, + "start": 59975, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59909, + "name": "line", + "start": 59905, + "type": "Identifier" + }, + "end": 59977, + "optional": false, + "start": 59905, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60018, + "raw": "0.0017496234414517975", + "start": 59997, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 60046, + "raw": "0.5178508316168335", + "start": 60028, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 60046, + "operator": "-", + "start": 60027, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 60053, + "start": 59988, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60056, + "start": 60055, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 59987, + "name": "line", + "start": 59983, + "type": "Identifier" + }, + "end": 60057, + "optional": false, + "start": 59983, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60095, + "raw": "0.6206263405732759", + "start": 60077, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 60123, + "raw": "0.8733399468665124", + "start": 60105, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 60123, + "operator": "-", + "start": 60104, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 60130, + "start": 60068, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60133, + "start": 60132, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60067, + "name": "line", + "start": 60063, + "type": "Identifier" + }, + "end": 60134, + "optional": false, + "start": 60063, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 60173, + "raw": "0.7776386664456383", + "start": 60155, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 60173, + "operator": "-", + "start": 60154, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 60200, + "raw": "0.7602780485384968", + "start": 60182, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 60207, + "start": 60145, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60210, + "start": 60209, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60144, + "name": "line", + "start": 60140, + "type": "Identifier" + }, + "end": 60211, + "optional": false, + "start": 60140, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60241, + "raw": "0.5439379760788592", + "start": 60223, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 60261, + "raw": "0.8449177589350552", + "start": 60243, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 60262, + "start": 60222, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60265, + "start": 60264, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60221, + "name": "line", + "start": 60217, + "type": "Identifier" + }, + "end": 60266, + "optional": false, + "start": 60217, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 60306, + "raw": "0.13036646025917076", + "start": 60287, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 60306, + "operator": "-", + "start": 60286, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 60335, + "raw": "0.012051713627069693", + "start": 60315, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 60342, + "start": 60277, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60345, + "start": 60344, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60276, + "name": "line", + "start": 60272, + "type": "Identifier" + }, + "end": 60346, + "optional": false, + "start": 60272, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 60385, + "raw": "0.1656465612645519", + "start": 60367, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 60385, + "operator": "-", + "start": 60366, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 60414, + "raw": "0.20775229173765486", + "start": 60395, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 60414, + "operator": "-", + "start": 60394, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 60421, + "start": 60357, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60424, + "start": 60423, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60356, + "name": "line", + "start": 60352, + "type": "Identifier" + }, + "end": 60425, + "optional": false, + "start": 60352, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 60464, + "raw": "0.0962723255929061", + "start": 60446, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 60464, + "operator": "-", + "start": 60445, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 60493, + "raw": "0.05417797659066137", + "start": 60474, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 60493, + "operator": "-", + "start": 60473, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 60500, + "start": 60436, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60503, + "start": 60502, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60435, + "name": "line", + "start": 60431, + "type": "Identifier" + }, + "end": 60504, + "optional": false, + "start": 60431, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60533, + "raw": "0.902108945498191", + "start": 60516, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 60553, + "raw": "0.3958978534964961", + "start": 60535, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 60554, + "start": 60515, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60557, + "start": 60556, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60514, + "name": "line", + "start": 60510, + "type": "Identifier" + }, + "end": 60558, + "optional": false, + "start": 60510, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60597, + "raw": "0.27997950083139167", + "start": 60578, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 60626, + "raw": "0.17778188444008958", + "start": 60607, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 60626, + "operator": "-", + "start": 60606, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 60633, + "start": 60569, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60636, + "start": 60635, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60568, + "name": "line", + "start": 60564, + "type": "Identifier" + }, + "end": 60637, + "optional": false, + "start": 60564, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60667, + "raw": "0.5235806061589545", + "start": 60649, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 60686, + "raw": "0.694318985642328", + "start": 60669, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 60687, + "start": 60648, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60690, + "start": 60689, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60647, + "name": "line", + "start": 60643, + "type": "Identifier" + }, + "end": 60691, + "optional": false, + "start": 60643, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60730, + "raw": "0.39140760219992154", + "start": 60711, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 60758, + "raw": "0.7839795272576484", + "start": 60740, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 60758, + "operator": "-", + "start": 60739, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 60765, + "start": 60702, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60768, + "start": 60767, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60701, + "name": "line", + "start": 60697, + "type": "Identifier" + }, + "end": 60769, + "optional": false, + "start": 60697, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60799, + "raw": "0.8414243527073519", + "start": 60781, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 60819, + "raw": "0.5395591528940082", + "start": 60801, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 60820, + "start": 60780, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60823, + "start": 60822, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60779, + "name": "line", + "start": 60775, + "type": "Identifier" + }, + "end": 60824, + "optional": false, + "start": 60775, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60862, + "raw": "0.6137667704875602", + "start": 60844, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 60890, + "raw": "0.22119647516722085", + "start": 60871, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 60897, + "start": 60835, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60900, + "start": 60899, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60834, + "name": "line", + "start": 60830, + "type": "Identifier" + }, + "end": 60901, + "optional": false, + "start": 60830, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 60931, + "raw": "0.8830488380766681", + "start": 60913, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 60951, + "raw": "0.6996724408425232", + "start": 60933, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 60952, + "start": 60912, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60955, + "start": 60954, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60911, + "name": "line", + "start": 60907, + "type": "Identifier" + }, + "end": 60956, + "optional": false, + "start": 60907, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 60996, + "raw": "0.41290485754343953", + "start": 60977, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 60996, + "operator": "-", + "start": 60976, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 61024, + "raw": "0.4152647361760933", + "start": 61006, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 61024, + "operator": "-", + "start": 61005, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61031, + "start": 60967, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61034, + "start": 61033, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 60966, + "name": "line", + "start": 60962, + "type": "Identifier" + }, + "end": 61035, + "optional": false, + "start": 60962, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61073, + "raw": "0.5169538755575687", + "start": 61055, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 61101, + "raw": "0.9085567867302617", + "start": 61083, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 61101, + "operator": "-", + "start": 61082, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61108, + "start": 61046, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61111, + "start": 61110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61045, + "name": "line", + "start": 61041, + "type": "Identifier" + }, + "end": 61112, + "optional": false, + "start": 61041, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 61151, + "raw": "0.6716353749059765", + "start": 61133, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 61151, + "operator": "-", + "start": 61132, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 61179, + "raw": "0.9605576808879026", + "start": 61161, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 61179, + "operator": "-", + "start": 61160, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61186, + "start": 61123, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61189, + "start": 61188, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61122, + "name": "line", + "start": 61118, + "type": "Identifier" + }, + "end": 61190, + "optional": false, + "start": 61118, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61230, + "raw": "0.010280170930300203", + "start": 61210, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 61259, + "raw": "0.37344123662342166", + "start": 61240, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 61259, + "operator": "-", + "start": 61239, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61266, + "start": 61201, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61269, + "start": 61268, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61200, + "name": "line", + "start": 61196, + "type": "Identifier" + }, + "end": 61270, + "optional": false, + "start": 61196, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61309, + "raw": "0.10357375682791004", + "start": 61290, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 61338, + "raw": "0.42294321030821425", + "start": 61319, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 61338, + "operator": "-", + "start": 61318, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61345, + "start": 61281, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61348, + "start": 61347, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61280, + "name": "line", + "start": 61276, + "type": "Identifier" + }, + "end": 61349, + "optional": false, + "start": 61276, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61387, + "raw": "0.4520311575096987", + "start": 61369, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 61416, + "raw": "0.11232675307600548", + "start": 61397, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 61416, + "operator": "-", + "start": 61396, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61423, + "start": 61360, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61426, + "start": 61425, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61359, + "name": "line", + "start": 61355, + "type": "Identifier" + }, + "end": 61427, + "optional": false, + "start": 61355, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 61466, + "raw": "0.8821185914380845", + "start": 61448, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 61466, + "operator": "-", + "start": 61447, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 61494, + "raw": "0.7155147434939819", + "start": 61476, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 61494, + "operator": "-", + "start": 61475, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61501, + "start": 61438, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61504, + "start": 61503, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61437, + "name": "line", + "start": 61433, + "type": "Identifier" + }, + "end": 61505, + "optional": false, + "start": 61433, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61535, + "raw": "0.9195487101690416", + "start": 61517, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 61555, + "raw": "0.2691627465297364", + "start": 61537, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 61556, + "start": 61516, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61559, + "start": 61558, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61515, + "name": "line", + "start": 61511, + "type": "Identifier" + }, + "end": 61560, + "optional": false, + "start": 61511, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61598, + "raw": "0.7098978191546745", + "start": 61580, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 61626, + "raw": "0.11710004169385968", + "start": 61607, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 61633, + "start": 61571, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61636, + "start": 61635, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61570, + "name": "line", + "start": 61566, + "type": "Identifier" + }, + "end": 61637, + "optional": false, + "start": 61566, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 61677, + "raw": "0.37876368560819995", + "start": 61658, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 61677, + "operator": "-", + "start": 61657, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 61704, + "raw": "0.7106729314759084", + "start": 61686, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 61711, + "start": 61648, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61714, + "start": 61713, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61647, + "name": "line", + "start": 61643, + "type": "Identifier" + }, + "end": 61715, + "optional": false, + "start": 61643, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 61755, + "raw": "0.29728126898353335", + "start": 61736, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 61755, + "operator": "-", + "start": 61735, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 61784, + "raw": "0.06649734568328003", + "start": 61765, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 61784, + "operator": "-", + "start": 61764, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61791, + "start": 61726, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61794, + "start": 61793, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61725, + "name": "line", + "start": 61721, + "type": "Identifier" + }, + "end": 61795, + "optional": false, + "start": 61721, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61834, + "raw": "0.22965781558352072", + "start": 61815, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 61862, + "raw": "0.7601866432836641", + "start": 61844, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 61862, + "operator": "-", + "start": 61843, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 61869, + "start": 61806, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61872, + "start": 61871, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61805, + "name": "line", + "start": 61801, + "type": "Identifier" + }, + "end": 61873, + "optional": false, + "start": 61801, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 61912, + "raw": "0.6356501074317229", + "start": 61894, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 61912, + "operator": "-", + "start": 61893, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 61940, + "raw": "0.19458425399338064", + "start": 61921, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 61947, + "start": 61884, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 61950, + "start": 61949, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61883, + "name": "line", + "start": 61879, + "type": "Identifier" + }, + "end": 61951, + "optional": false, + "start": 61879, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 61981, + "raw": "0.5721251777404546", + "start": 61963, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 62001, + "raw": "0.2888584097921527", + "start": 61983, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 62002, + "start": 61962, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62005, + "start": 62004, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 61961, + "name": "line", + "start": 61957, + "type": "Identifier" + }, + "end": 62006, + "optional": false, + "start": 61957, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 62045, + "raw": "0.9580409549552311", + "start": 62027, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 62045, + "operator": "-", + "start": 62026, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 62074, + "raw": "0.02243818192078395", + "start": 62055, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 62074, + "operator": "-", + "start": 62054, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62081, + "start": 62017, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62084, + "start": 62083, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62016, + "name": "line", + "start": 62012, + "type": "Identifier" + }, + "end": 62085, + "optional": false, + "start": 62012, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 62123, + "raw": "0.3299184618602866", + "start": 62105, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 62151, + "raw": "0.8353726942369875", + "start": 62133, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 62151, + "operator": "-", + "start": 62132, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62158, + "start": 62096, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62161, + "start": 62160, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62095, + "name": "line", + "start": 62091, + "type": "Identifier" + }, + "end": 62162, + "optional": false, + "start": 62091, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 62200, + "raw": "0.7434639386755209", + "start": 62182, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 62228, + "raw": "0.7919648864138378", + "start": 62210, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 62228, + "operator": "-", + "start": 62209, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62235, + "start": 62173, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62238, + "start": 62237, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62172, + "name": "line", + "start": 62168, + "type": "Identifier" + }, + "end": 62239, + "optional": false, + "start": 62168, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 62269, + "raw": "0.9935751011164615", + "start": 62251, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 62289, + "raw": "0.9042566468497608", + "start": 62271, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 62290, + "start": 62250, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62293, + "start": 62292, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62249, + "name": "line", + "start": 62245, + "type": "Identifier" + }, + "end": 62294, + "optional": false, + "start": 62245, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 62333, + "raw": "0.5035812884687294", + "start": 62315, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 62333, + "operator": "-", + "start": 62314, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 62360, + "raw": "0.5150967434989442", + "start": 62342, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 62367, + "start": 62305, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62370, + "start": 62369, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62304, + "name": "line", + "start": 62300, + "type": "Identifier" + }, + "end": 62371, + "optional": false, + "start": 62300, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 62401, + "raw": "0.5526227215900215", + "start": 62383, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 62421, + "raw": "0.7612604137272441", + "start": 62403, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 62422, + "start": 62382, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62425, + "start": 62424, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62381, + "name": "line", + "start": 62377, + "type": "Identifier" + }, + "end": 62426, + "optional": false, + "start": 62377, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 62464, + "raw": "0.8593271349126876", + "start": 62446, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 62492, + "raw": "0.08414894953725849", + "start": 62473, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 62499, + "start": 62437, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62502, + "start": 62501, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62436, + "name": "line", + "start": 62432, + "type": "Identifier" + }, + "end": 62503, + "optional": false, + "start": 62432, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 62542, + "raw": "0.8181049219192864", + "start": 62524, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 62542, + "operator": "-", + "start": 62523, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 62569, + "raw": "0.903548131323352", + "start": 62552, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 62569, + "operator": "-", + "start": 62551, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62576, + "start": 62514, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62579, + "start": 62578, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62513, + "name": "line", + "start": 62509, + "type": "Identifier" + }, + "end": 62580, + "optional": false, + "start": 62509, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 62618, + "raw": "0.3165782044458305", + "start": 62600, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 62647, + "raw": "0.24189274252014914", + "start": 62628, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 62647, + "operator": "-", + "start": 62627, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62654, + "start": 62591, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62657, + "start": 62656, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62590, + "name": "line", + "start": 62586, + "type": "Identifier" + }, + "end": 62658, + "optional": false, + "start": 62586, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 62698, + "raw": "0.44390956414045135", + "start": 62679, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 62698, + "operator": "-", + "start": 62678, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 62727, + "raw": "0.25912591535126905", + "start": 62708, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 62727, + "operator": "-", + "start": 62707, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62734, + "start": 62669, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62737, + "start": 62736, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62668, + "name": "line", + "start": 62664, + "type": "Identifier" + }, + "end": 62738, + "optional": false, + "start": 62664, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 62777, + "raw": "0.6605165911891009", + "start": 62759, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 62777, + "operator": "-", + "start": 62758, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 62806, + "raw": "0.40355115288839194", + "start": 62787, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 62806, + "operator": "-", + "start": 62786, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62813, + "start": 62749, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62816, + "start": 62815, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62748, + "name": "line", + "start": 62744, + "type": "Identifier" + }, + "end": 62817, + "optional": false, + "start": 62744, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 62856, + "raw": "0.7170489950180006", + "start": 62838, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 62856, + "operator": "-", + "start": 62837, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 62884, + "raw": "0.23454356079651384", + "start": 62865, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 62891, + "start": 62828, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62894, + "start": 62893, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62827, + "name": "line", + "start": 62823, + "type": "Identifier" + }, + "end": 62895, + "optional": false, + "start": 62823, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 62934, + "raw": "0.2568187045379722", + "start": 62916, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 62934, + "operator": "-", + "start": 62915, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 62963, + "raw": "0.45031188717601367", + "start": 62944, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 62963, + "operator": "-", + "start": 62943, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 62970, + "start": 62906, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 62973, + "start": 62972, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62905, + "name": "line", + "start": 62901, + "type": "Identifier" + }, + "end": 62974, + "optional": false, + "start": 62901, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 63012, + "raw": "0.6751951211858687", + "start": 62994, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 63040, + "raw": "0.9709424233465593", + "start": 63022, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 63040, + "operator": "-", + "start": 63021, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 63047, + "start": 62985, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63050, + "start": 63049, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62984, + "name": "line", + "start": 62980, + "type": "Identifier" + }, + "end": 63051, + "optional": false, + "start": 62980, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 63090, + "raw": "0.5689619842972184", + "start": 63072, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 63090, + "operator": "-", + "start": 63071, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 63117, + "raw": "0.5918969913790362", + "start": 63099, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 63124, + "start": 63062, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63127, + "start": 63126, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63061, + "name": "line", + "start": 63057, + "type": "Identifier" + }, + "end": 63128, + "optional": false, + "start": 63057, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 63167, + "raw": "0.8328324229085962", + "start": 63149, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 63167, + "operator": "-", + "start": 63148, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 63194, + "raw": "0.4677492878818803", + "start": 63176, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 63201, + "start": 63139, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63204, + "start": 63203, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63138, + "name": "line", + "start": 63134, + "type": "Identifier" + }, + "end": 63205, + "optional": false, + "start": 63134, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 63244, + "raw": "0.8111463382182231", + "start": 63226, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 63244, + "operator": "-", + "start": 63225, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 63273, + "raw": "0.41814807547140576", + "start": 63254, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 63273, + "operator": "-", + "start": 63253, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 63280, + "start": 63216, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63283, + "start": 63282, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63215, + "name": "line", + "start": 63211, + "type": "Identifier" + }, + "end": 63284, + "optional": false, + "start": 63211, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 63323, + "raw": "0.03807684940941125", + "start": 63304, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 63351, + "raw": "0.25664826686353326", + "start": 63332, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 63358, + "start": 63295, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63361, + "start": 63360, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63294, + "name": "line", + "start": 63290, + "type": "Identifier" + }, + "end": 63362, + "optional": false, + "start": 63290, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 63401, + "raw": "0.23950083339596384", + "start": 63382, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 63429, + "raw": "0.43693196301855575", + "start": 63410, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 63436, + "start": 63373, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63439, + "start": 63438, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63372, + "name": "line", + "start": 63368, + "type": "Identifier" + }, + "end": 63440, + "optional": false, + "start": 63368, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 63480, + "raw": "0.16279444820904887", + "start": 63461, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 63480, + "operator": "-", + "start": 63460, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 63507, + "raw": "0.8064475707664818", + "start": 63489, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 63514, + "start": 63451, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63517, + "start": 63516, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63450, + "name": "line", + "start": 63446, + "type": "Identifier" + }, + "end": 63518, + "optional": false, + "start": 63446, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 63558, + "raw": "0.08972872009232558", + "start": 63539, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 63558, + "operator": "-", + "start": 63538, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 63587, + "raw": "0.08887625823751266", + "start": 63568, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 63587, + "operator": "-", + "start": 63567, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 63594, + "start": 63529, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63597, + "start": 63596, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63528, + "name": "line", + "start": 63524, + "type": "Identifier" + }, + "end": 63598, + "optional": false, + "start": 63524, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 63636, + "raw": "0.9203433427102556", + "start": 63618, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 63665, + "raw": "0.17343459369697545", + "start": 63646, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 63665, + "operator": "-", + "start": 63645, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 63672, + "start": 63609, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63675, + "start": 63674, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63608, + "name": "line", + "start": 63604, + "type": "Identifier" + }, + "end": 63676, + "optional": false, + "start": 63604, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 63717, + "raw": "0.0017496234414517975", + "start": 63696, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 63745, + "raw": "0.5178508316168335", + "start": 63727, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 63745, + "operator": "-", + "start": 63726, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 63752, + "start": 63687, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63755, + "start": 63754, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63686, + "name": "line", + "start": 63682, + "type": "Identifier" + }, + "end": 63756, + "optional": false, + "start": 63682, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 63794, + "raw": "0.6206263405732759", + "start": 63776, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 63822, + "raw": "0.8733399468665124", + "start": 63804, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 63822, + "operator": "-", + "start": 63803, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 63829, + "start": 63767, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63832, + "start": 63831, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63766, + "name": "line", + "start": 63762, + "type": "Identifier" + }, + "end": 63833, + "optional": false, + "start": 63762, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 63872, + "raw": "0.7776386664456383", + "start": 63854, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 63872, + "operator": "-", + "start": 63853, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 63899, + "raw": "0.7602780485384968", + "start": 63881, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 63906, + "start": 63844, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63909, + "start": 63908, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63843, + "name": "line", + "start": 63839, + "type": "Identifier" + }, + "end": 63910, + "optional": false, + "start": 63839, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 63940, + "raw": "0.5439379760788592", + "start": 63922, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 63960, + "raw": "0.8449177589350552", + "start": 63942, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 63961, + "start": 63921, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 63964, + "start": 63963, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63920, + "name": "line", + "start": 63916, + "type": "Identifier" + }, + "end": 63965, + "optional": false, + "start": 63916, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 64005, + "raw": "0.13036646025917076", + "start": 63986, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 64005, + "operator": "-", + "start": 63985, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 64034, + "raw": "0.012051713627069693", + "start": 64014, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 64041, + "start": 63976, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64044, + "start": 64043, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 63975, + "name": "line", + "start": 63971, + "type": "Identifier" + }, + "end": 64045, + "optional": false, + "start": 63971, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 64084, + "raw": "0.1656465612645519", + "start": 64066, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 64084, + "operator": "-", + "start": 64065, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 64113, + "raw": "0.20775229173765486", + "start": 64094, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 64113, + "operator": "-", + "start": 64093, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 64120, + "start": 64056, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64123, + "start": 64122, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64055, + "name": "line", + "start": 64051, + "type": "Identifier" + }, + "end": 64124, + "optional": false, + "start": 64051, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 64163, + "raw": "0.0962723255929061", + "start": 64145, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 64163, + "operator": "-", + "start": 64144, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 64192, + "raw": "0.05417797659066137", + "start": 64173, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 64192, + "operator": "-", + "start": 64172, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 64199, + "start": 64135, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64202, + "start": 64201, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64134, + "name": "line", + "start": 64130, + "type": "Identifier" + }, + "end": 64203, + "optional": false, + "start": 64130, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 64232, + "raw": "0.902108945498191", + "start": 64215, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 64252, + "raw": "0.3958978534964961", + "start": 64234, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 64253, + "start": 64214, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64256, + "start": 64255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64213, + "name": "line", + "start": 64209, + "type": "Identifier" + }, + "end": 64257, + "optional": false, + "start": 64209, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 64296, + "raw": "0.27997950083139167", + "start": 64277, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 64325, + "raw": "0.17778188444008958", + "start": 64306, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 64325, + "operator": "-", + "start": 64305, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 64332, + "start": 64268, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64335, + "start": 64334, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64267, + "name": "line", + "start": 64263, + "type": "Identifier" + }, + "end": 64336, + "optional": false, + "start": 64263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 64366, + "raw": "0.5235806061589545", + "start": 64348, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 64385, + "raw": "0.694318985642328", + "start": 64368, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 64386, + "start": 64347, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64389, + "start": 64388, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64346, + "name": "line", + "start": 64342, + "type": "Identifier" + }, + "end": 64390, + "optional": false, + "start": 64342, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 64429, + "raw": "0.39140760219992154", + "start": 64410, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 64457, + "raw": "0.7839795272576484", + "start": 64439, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 64457, + "operator": "-", + "start": 64438, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 64464, + "start": 64401, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64467, + "start": 64466, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64400, + "name": "line", + "start": 64396, + "type": "Identifier" + }, + "end": 64468, + "optional": false, + "start": 64396, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 64498, + "raw": "0.8414243527073519", + "start": 64480, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 64518, + "raw": "0.5395591528940082", + "start": 64500, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 64519, + "start": 64479, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64522, + "start": 64521, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64478, + "name": "line", + "start": 64474, + "type": "Identifier" + }, + "end": 64523, + "optional": false, + "start": 64474, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 64561, + "raw": "0.6137667704875602", + "start": 64543, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 64589, + "raw": "0.22119647516722085", + "start": 64570, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 64596, + "start": 64534, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64599, + "start": 64598, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64533, + "name": "line", + "start": 64529, + "type": "Identifier" + }, + "end": 64600, + "optional": false, + "start": 64529, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 64630, + "raw": "0.8830488380766681", + "start": 64612, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 64650, + "raw": "0.6996724408425232", + "start": 64632, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 64651, + "start": 64611, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64654, + "start": 64653, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64610, + "name": "line", + "start": 64606, + "type": "Identifier" + }, + "end": 64655, + "optional": false, + "start": 64606, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 64694, + "raw": "0.3670208139314082", + "start": 64676, + "type": "Literal", + "type": "Literal", + "value": 0.3670208139314082 + }, + "end": 64694, + "operator": "-", + "start": 64675, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 64722, + "raw": "0.21201331909674526", + "start": 64703, + "type": "Literal", + "type": "Literal", + "value": 0.21201331909674526 + } + ], + "end": 64729, + "start": 64666, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64732, + "start": 64731, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64665, + "name": "line", + "start": 64661, + "type": "Identifier" + }, + "end": 64733, + "optional": false, + "start": 64661, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 64772, + "raw": "0.4707511307971115", + "start": 64754, + "type": "Literal", + "type": "Literal", + "value": 0.4707511307971115 + }, + "end": 64772, + "operator": "-", + "start": 64753, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 64799, + "raw": "0.4905279615419764", + "start": 64781, + "type": "Literal", + "type": "Literal", + "value": 0.4905279615419764 + } + ], + "end": 64806, + "start": 64744, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64809, + "start": 64808, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64743, + "name": "line", + "start": 64739, + "type": "Identifier" + }, + "end": 64810, + "optional": false, + "start": 64739, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 64849, + "raw": "0.8328324229085962", + "start": 64831, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 64849, + "operator": "-", + "start": 64830, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 64876, + "raw": "0.4677492878818803", + "start": 64858, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 64883, + "start": 64821, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64886, + "start": 64885, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64820, + "name": "line", + "start": 64816, + "type": "Identifier" + }, + "end": 64887, + "optional": false, + "start": 64816, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 64926, + "raw": "0.8111463382182231", + "start": 64908, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 64926, + "operator": "-", + "start": 64907, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 64955, + "raw": "0.41814807547140576", + "start": 64936, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 64955, + "operator": "-", + "start": 64935, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 64962, + "start": 64898, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 64965, + "start": 64964, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64897, + "name": "line", + "start": 64893, + "type": "Identifier" + }, + "end": 64966, + "optional": false, + "start": 64893, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65005, + "raw": "0.03807684940941125", + "start": 64986, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 65033, + "raw": "0.25664826686353326", + "start": 65014, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 65040, + "start": 64977, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65043, + "start": 65042, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 64976, + "name": "line", + "start": 64972, + "type": "Identifier" + }, + "end": 65044, + "optional": false, + "start": 64972, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65083, + "raw": "0.23950083339596384", + "start": 65064, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 65111, + "raw": "0.43693196301855575", + "start": 65092, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 65118, + "start": 65055, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65121, + "start": 65120, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65054, + "name": "line", + "start": 65050, + "type": "Identifier" + }, + "end": 65122, + "optional": false, + "start": 65050, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 65162, + "raw": "0.16279444820904887", + "start": 65143, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 65162, + "operator": "-", + "start": 65142, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 65189, + "raw": "0.8064475707664818", + "start": 65171, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 65196, + "start": 65133, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65199, + "start": 65198, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65132, + "name": "line", + "start": 65128, + "type": "Identifier" + }, + "end": 65200, + "optional": false, + "start": 65128, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 65240, + "raw": "0.08972872009232558", + "start": 65221, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 65240, + "operator": "-", + "start": 65220, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 65269, + "raw": "0.08887625823751266", + "start": 65250, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 65269, + "operator": "-", + "start": 65249, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 65276, + "start": 65211, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65279, + "start": 65278, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65210, + "name": "line", + "start": 65206, + "type": "Identifier" + }, + "end": 65280, + "optional": false, + "start": 65206, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65318, + "raw": "0.9203433427102556", + "start": 65300, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 65347, + "raw": "0.17343459369697545", + "start": 65328, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 65347, + "operator": "-", + "start": 65327, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 65354, + "start": 65291, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65357, + "start": 65356, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65290, + "name": "line", + "start": 65286, + "type": "Identifier" + }, + "end": 65358, + "optional": false, + "start": 65286, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65399, + "raw": "0.0017496234414517975", + "start": 65378, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 65427, + "raw": "0.5178508316168335", + "start": 65409, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 65427, + "operator": "-", + "start": 65408, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 65434, + "start": 65369, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65437, + "start": 65436, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65368, + "name": "line", + "start": 65364, + "type": "Identifier" + }, + "end": 65438, + "optional": false, + "start": 65364, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65476, + "raw": "0.6206263405732759", + "start": 65458, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 65504, + "raw": "0.8733399468665124", + "start": 65486, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 65504, + "operator": "-", + "start": 65485, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 65511, + "start": 65449, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65514, + "start": 65513, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65448, + "name": "line", + "start": 65444, + "type": "Identifier" + }, + "end": 65515, + "optional": false, + "start": 65444, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 65554, + "raw": "0.7776386664456383", + "start": 65536, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 65554, + "operator": "-", + "start": 65535, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 65581, + "raw": "0.7602780485384968", + "start": 65563, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 65588, + "start": 65526, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65591, + "start": 65590, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65525, + "name": "line", + "start": 65521, + "type": "Identifier" + }, + "end": 65592, + "optional": false, + "start": 65521, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65622, + "raw": "0.5439379760788592", + "start": 65604, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 65642, + "raw": "0.8449177589350552", + "start": 65624, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 65643, + "start": 65603, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65646, + "start": 65645, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65602, + "name": "line", + "start": 65598, + "type": "Identifier" + }, + "end": 65647, + "optional": false, + "start": 65598, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 65687, + "raw": "0.13036646025917076", + "start": 65668, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 65687, + "operator": "-", + "start": 65667, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 65716, + "raw": "0.012051713627069693", + "start": 65696, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 65723, + "start": 65658, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65726, + "start": 65725, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65657, + "name": "line", + "start": 65653, + "type": "Identifier" + }, + "end": 65727, + "optional": false, + "start": 65653, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 65766, + "raw": "0.1656465612645519", + "start": 65748, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 65766, + "operator": "-", + "start": 65747, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 65795, + "raw": "0.20775229173765486", + "start": 65776, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 65795, + "operator": "-", + "start": 65775, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 65802, + "start": 65738, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65805, + "start": 65804, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65737, + "name": "line", + "start": 65733, + "type": "Identifier" + }, + "end": 65806, + "optional": false, + "start": 65733, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 65845, + "raw": "0.0962723255929061", + "start": 65827, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 65845, + "operator": "-", + "start": 65826, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 65874, + "raw": "0.05417797659066137", + "start": 65855, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 65874, + "operator": "-", + "start": 65854, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 65881, + "start": 65817, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65884, + "start": 65883, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65816, + "name": "line", + "start": 65812, + "type": "Identifier" + }, + "end": 65885, + "optional": false, + "start": 65812, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65914, + "raw": "0.902108945498191", + "start": 65897, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 65934, + "raw": "0.3958978534964961", + "start": 65916, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 65935, + "start": 65896, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 65938, + "start": 65937, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65895, + "name": "line", + "start": 65891, + "type": "Identifier" + }, + "end": 65939, + "optional": false, + "start": 65891, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65978, + "raw": "0.27997950083139167", + "start": 65959, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 66007, + "raw": "0.17778188444008958", + "start": 65988, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 66007, + "operator": "-", + "start": 65987, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66014, + "start": 65950, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66017, + "start": 66016, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 65949, + "name": "line", + "start": 65945, + "type": "Identifier" + }, + "end": 66018, + "optional": false, + "start": 65945, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66048, + "raw": "0.5235806061589545", + "start": 66030, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 66067, + "raw": "0.694318985642328", + "start": 66050, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 66068, + "start": 66029, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66071, + "start": 66070, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66028, + "name": "line", + "start": 66024, + "type": "Identifier" + }, + "end": 66072, + "optional": false, + "start": 66024, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66111, + "raw": "0.39140760219992154", + "start": 66092, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 66139, + "raw": "0.7839795272576484", + "start": 66121, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 66139, + "operator": "-", + "start": 66120, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66146, + "start": 66083, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66149, + "start": 66148, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66082, + "name": "line", + "start": 66078, + "type": "Identifier" + }, + "end": 66150, + "optional": false, + "start": 66078, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66180, + "raw": "0.8414243527073519", + "start": 66162, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 66200, + "raw": "0.5395591528940082", + "start": 66182, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 66201, + "start": 66161, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66204, + "start": 66203, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66160, + "name": "line", + "start": 66156, + "type": "Identifier" + }, + "end": 66205, + "optional": false, + "start": 66156, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66243, + "raw": "0.6137667704875602", + "start": 66225, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 66271, + "raw": "0.22119647516722085", + "start": 66252, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 66278, + "start": 66216, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66281, + "start": 66280, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66215, + "name": "line", + "start": 66211, + "type": "Identifier" + }, + "end": 66282, + "optional": false, + "start": 66211, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66312, + "raw": "0.8830488380766681", + "start": 66294, + "type": "Literal", + "type": "Literal", + "value": 0.8830488380766681 + }, + { + "end": 66332, + "raw": "0.6996724408425232", + "start": 66314, + "type": "Literal", + "type": "Literal", + "value": 0.6996724408425232 + } + ], + "end": 66333, + "start": 66293, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66336, + "start": 66335, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66292, + "name": "line", + "start": 66288, + "type": "Identifier" + }, + "end": 66337, + "optional": false, + "start": 66288, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 66377, + "raw": "0.41290485754343953", + "start": 66358, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 66377, + "operator": "-", + "start": 66357, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 66405, + "raw": "0.4152647361760933", + "start": 66387, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 66405, + "operator": "-", + "start": 66386, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66412, + "start": 66348, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66415, + "start": 66414, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66347, + "name": "line", + "start": 66343, + "type": "Identifier" + }, + "end": 66416, + "optional": false, + "start": 66343, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66454, + "raw": "0.5169538755575687", + "start": 66436, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 66482, + "raw": "0.9085567867302617", + "start": 66464, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 66482, + "operator": "-", + "start": 66463, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66489, + "start": 66427, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66492, + "start": 66491, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66426, + "name": "line", + "start": 66422, + "type": "Identifier" + }, + "end": 66493, + "optional": false, + "start": 66422, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 66532, + "raw": "0.6716353749059765", + "start": 66514, + "type": "Literal", + "type": "Literal", + "value": 0.6716353749059765 + }, + "end": 66532, + "operator": "-", + "start": 66513, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 66560, + "raw": "0.9605576808879026", + "start": 66542, + "type": "Literal", + "type": "Literal", + "value": 0.9605576808879026 + }, + "end": 66560, + "operator": "-", + "start": 66541, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66567, + "start": 66504, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66570, + "start": 66569, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66503, + "name": "line", + "start": 66499, + "type": "Identifier" + }, + "end": 66571, + "optional": false, + "start": 66499, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66611, + "raw": "0.010280170930300203", + "start": 66591, + "type": "Literal", + "type": "Literal", + "value": 0.010280170930300203 + }, + { + "argument": { + "end": 66640, + "raw": "0.37344123662342166", + "start": 66621, + "type": "Literal", + "type": "Literal", + "value": 0.37344123662342166 + }, + "end": 66640, + "operator": "-", + "start": 66620, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66647, + "start": 66582, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66650, + "start": 66649, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66581, + "name": "line", + "start": 66577, + "type": "Identifier" + }, + "end": 66651, + "optional": false, + "start": 66577, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66690, + "raw": "0.10357375682791004", + "start": 66671, + "type": "Literal", + "type": "Literal", + "value": 0.10357375682791004 + }, + { + "argument": { + "end": 66719, + "raw": "0.42294321030821425", + "start": 66700, + "type": "Literal", + "type": "Literal", + "value": 0.42294321030821425 + }, + "end": 66719, + "operator": "-", + "start": 66699, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66726, + "start": 66662, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66729, + "start": 66728, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66661, + "name": "line", + "start": 66657, + "type": "Identifier" + }, + "end": 66730, + "optional": false, + "start": 66657, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66768, + "raw": "0.4520311575096987", + "start": 66750, + "type": "Literal", + "type": "Literal", + "value": 0.4520311575096987 + }, + { + "argument": { + "end": 66797, + "raw": "0.11232675307600548", + "start": 66778, + "type": "Literal", + "type": "Literal", + "value": 0.11232675307600548 + }, + "end": 66797, + "operator": "-", + "start": 66777, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66804, + "start": 66741, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66807, + "start": 66806, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66740, + "name": "line", + "start": 66736, + "type": "Identifier" + }, + "end": 66808, + "optional": false, + "start": 66736, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 66847, + "raw": "0.8821185914380845", + "start": 66829, + "type": "Literal", + "type": "Literal", + "value": 0.8821185914380845 + }, + "end": 66847, + "operator": "-", + "start": 66828, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 66875, + "raw": "0.7155147434939819", + "start": 66857, + "type": "Literal", + "type": "Literal", + "value": 0.7155147434939819 + }, + "end": 66875, + "operator": "-", + "start": 66856, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 66882, + "start": 66819, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66885, + "start": 66884, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66818, + "name": "line", + "start": 66814, + "type": "Identifier" + }, + "end": 66886, + "optional": false, + "start": 66814, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66916, + "raw": "0.9195487101690416", + "start": 66898, + "type": "Literal", + "type": "Literal", + "value": 0.9195487101690416 + }, + { + "end": 66936, + "raw": "0.2691627465297364", + "start": 66918, + "type": "Literal", + "type": "Literal", + "value": 0.2691627465297364 + } + ], + "end": 66937, + "start": 66897, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 66940, + "start": 66939, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66896, + "name": "line", + "start": 66892, + "type": "Identifier" + }, + "end": 66941, + "optional": false, + "start": 66892, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 66979, + "raw": "0.7098978191546745", + "start": 66961, + "type": "Literal", + "type": "Literal", + "value": 0.7098978191546745 + }, + { + "end": 67007, + "raw": "0.11710004169385968", + "start": 66988, + "type": "Literal", + "type": "Literal", + "value": 0.11710004169385968 + } + ], + "end": 67014, + "start": 66952, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67017, + "start": 67016, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 66951, + "name": "line", + "start": 66947, + "type": "Identifier" + }, + "end": 67018, + "optional": false, + "start": 66947, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 67058, + "raw": "0.37876368560819995", + "start": 67039, + "type": "Literal", + "type": "Literal", + "value": 0.37876368560819995 + }, + "end": 67058, + "operator": "-", + "start": 67038, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 67085, + "raw": "0.7106729314759084", + "start": 67067, + "type": "Literal", + "type": "Literal", + "value": 0.7106729314759084 + } + ], + "end": 67092, + "start": 67029, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67095, + "start": 67094, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67028, + "name": "line", + "start": 67024, + "type": "Identifier" + }, + "end": 67096, + "optional": false, + "start": 67024, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 67136, + "raw": "0.29728126898353335", + "start": 67117, + "type": "Literal", + "type": "Literal", + "value": 0.29728126898353335 + }, + "end": 67136, + "operator": "-", + "start": 67116, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 67165, + "raw": "0.06649734568328003", + "start": 67146, + "type": "Literal", + "type": "Literal", + "value": 0.06649734568328003 + }, + "end": 67165, + "operator": "-", + "start": 67145, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 67172, + "start": 67107, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67175, + "start": 67174, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67106, + "name": "line", + "start": 67102, + "type": "Identifier" + }, + "end": 67176, + "optional": false, + "start": 67102, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67215, + "raw": "0.22965781558352072", + "start": 67196, + "type": "Literal", + "type": "Literal", + "value": 0.22965781558352072 + }, + { + "argument": { + "end": 67243, + "raw": "0.7601866432836641", + "start": 67225, + "type": "Literal", + "type": "Literal", + "value": 0.7601866432836641 + }, + "end": 67243, + "operator": "-", + "start": 67224, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 67250, + "start": 67187, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67253, + "start": 67252, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67186, + "name": "line", + "start": 67182, + "type": "Identifier" + }, + "end": 67254, + "optional": false, + "start": 67182, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 67293, + "raw": "0.6356501074317229", + "start": 67275, + "type": "Literal", + "type": "Literal", + "value": 0.6356501074317229 + }, + "end": 67293, + "operator": "-", + "start": 67274, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 67321, + "raw": "0.19458425399338064", + "start": 67302, + "type": "Literal", + "type": "Literal", + "value": 0.19458425399338064 + } + ], + "end": 67328, + "start": 67265, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67331, + "start": 67330, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67264, + "name": "line", + "start": 67260, + "type": "Identifier" + }, + "end": 67332, + "optional": false, + "start": 67260, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67362, + "raw": "0.5721251777404546", + "start": 67344, + "type": "Literal", + "type": "Literal", + "value": 0.5721251777404546 + }, + { + "end": 67382, + "raw": "0.2888584097921527", + "start": 67364, + "type": "Literal", + "type": "Literal", + "value": 0.2888584097921527 + } + ], + "end": 67383, + "start": 67343, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67386, + "start": 67385, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67342, + "name": "line", + "start": 67338, + "type": "Identifier" + }, + "end": 67387, + "optional": false, + "start": 67338, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 67426, + "raw": "0.9580409549552311", + "start": 67408, + "type": "Literal", + "type": "Literal", + "value": 0.9580409549552311 + }, + "end": 67426, + "operator": "-", + "start": 67407, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 67455, + "raw": "0.02243818192078395", + "start": 67436, + "type": "Literal", + "type": "Literal", + "value": 0.02243818192078395 + }, + "end": 67455, + "operator": "-", + "start": 67435, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 67462, + "start": 67398, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67465, + "start": 67464, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67397, + "name": "line", + "start": 67393, + "type": "Identifier" + }, + "end": 67466, + "optional": false, + "start": 67393, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67504, + "raw": "0.3299184618602866", + "start": 67486, + "type": "Literal", + "type": "Literal", + "value": 0.3299184618602866 + }, + { + "argument": { + "end": 67532, + "raw": "0.8353726942369875", + "start": 67514, + "type": "Literal", + "type": "Literal", + "value": 0.8353726942369875 + }, + "end": 67532, + "operator": "-", + "start": 67513, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 67539, + "start": 67477, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67542, + "start": 67541, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67476, + "name": "line", + "start": 67472, + "type": "Identifier" + }, + "end": 67543, + "optional": false, + "start": 67472, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67581, + "raw": "0.7434639386755209", + "start": 67563, + "type": "Literal", + "type": "Literal", + "value": 0.7434639386755209 + }, + { + "argument": { + "end": 67609, + "raw": "0.7919648864138378", + "start": 67591, + "type": "Literal", + "type": "Literal", + "value": 0.7919648864138378 + }, + "end": 67609, + "operator": "-", + "start": 67590, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 67616, + "start": 67554, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67619, + "start": 67618, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67553, + "name": "line", + "start": 67549, + "type": "Identifier" + }, + "end": 67620, + "optional": false, + "start": 67549, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67650, + "raw": "0.9935751011164615", + "start": 67632, + "type": "Literal", + "type": "Literal", + "value": 0.9935751011164615 + }, + { + "end": 67670, + "raw": "0.9042566468497608", + "start": 67652, + "type": "Literal", + "type": "Literal", + "value": 0.9042566468497608 + } + ], + "end": 67671, + "start": 67631, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67674, + "start": 67673, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67630, + "name": "line", + "start": 67626, + "type": "Identifier" + }, + "end": 67675, + "optional": false, + "start": 67626, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 67714, + "raw": "0.5035812884687294", + "start": 67696, + "type": "Literal", + "type": "Literal", + "value": 0.5035812884687294 + }, + "end": 67714, + "operator": "-", + "start": 67695, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 67741, + "raw": "0.5150967434989442", + "start": 67723, + "type": "Literal", + "type": "Literal", + "value": 0.5150967434989442 + } + ], + "end": 67748, + "start": 67686, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67751, + "start": 67750, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67685, + "name": "line", + "start": 67681, + "type": "Identifier" + }, + "end": 67752, + "optional": false, + "start": 67681, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67782, + "raw": "0.5526227215900215", + "start": 67764, + "type": "Literal", + "type": "Literal", + "value": 0.5526227215900215 + }, + { + "end": 67802, + "raw": "0.7612604137272441", + "start": 67784, + "type": "Literal", + "type": "Literal", + "value": 0.7612604137272441 + } + ], + "end": 67803, + "start": 67763, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67806, + "start": 67805, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67762, + "name": "line", + "start": 67758, + "type": "Identifier" + }, + "end": 67807, + "optional": false, + "start": 67758, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67845, + "raw": "0.8593271349126876", + "start": 67827, + "type": "Literal", + "type": "Literal", + "value": 0.8593271349126876 + }, + { + "end": 67873, + "raw": "0.08414894953725849", + "start": 67854, + "type": "Literal", + "type": "Literal", + "value": 0.08414894953725849 + } + ], + "end": 67880, + "start": 67818, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67883, + "start": 67882, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67817, + "name": "line", + "start": 67813, + "type": "Identifier" + }, + "end": 67884, + "optional": false, + "start": 67813, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 67923, + "raw": "0.8181049219192864", + "start": 67905, + "type": "Literal", + "type": "Literal", + "value": 0.8181049219192864 + }, + "end": 67923, + "operator": "-", + "start": 67904, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 67950, + "raw": "0.903548131323352", + "start": 67933, + "type": "Literal", + "type": "Literal", + "value": 0.903548131323352 + }, + "end": 67950, + "operator": "-", + "start": 67932, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 67957, + "start": 67895, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67960, + "start": 67959, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67894, + "name": "line", + "start": 67890, + "type": "Identifier" + }, + "end": 67961, + "optional": false, + "start": 67890, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 67999, + "raw": "0.3165782044458305", + "start": 67981, + "type": "Literal", + "type": "Literal", + "value": 0.3165782044458305 + }, + { + "argument": { + "end": 68028, + "raw": "0.24189274252014914", + "start": 68009, + "type": "Literal", + "type": "Literal", + "value": 0.24189274252014914 + }, + "end": 68028, + "operator": "-", + "start": 68008, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 68035, + "start": 67972, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68038, + "start": 68037, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 67971, + "name": "line", + "start": 67967, + "type": "Identifier" + }, + "end": 68039, + "optional": false, + "start": 67967, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68079, + "raw": "0.44390956414045135", + "start": 68060, + "type": "Literal", + "type": "Literal", + "value": 0.44390956414045135 + }, + "end": 68079, + "operator": "-", + "start": 68059, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 68108, + "raw": "0.25912591535126905", + "start": 68089, + "type": "Literal", + "type": "Literal", + "value": 0.25912591535126905 + }, + "end": 68108, + "operator": "-", + "start": 68088, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 68115, + "start": 68050, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68118, + "start": 68117, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68049, + "name": "line", + "start": 68045, + "type": "Identifier" + }, + "end": 68119, + "optional": false, + "start": 68045, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68158, + "raw": "0.6605165911891009", + "start": 68140, + "type": "Literal", + "type": "Literal", + "value": 0.6605165911891009 + }, + "end": 68158, + "operator": "-", + "start": 68139, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 68187, + "raw": "0.40355115288839194", + "start": 68168, + "type": "Literal", + "type": "Literal", + "value": 0.40355115288839194 + }, + "end": 68187, + "operator": "-", + "start": 68167, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 68194, + "start": 68130, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68197, + "start": 68196, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68129, + "name": "line", + "start": 68125, + "type": "Identifier" + }, + "end": 68198, + "optional": false, + "start": 68125, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68237, + "raw": "0.7170489950180006", + "start": 68219, + "type": "Literal", + "type": "Literal", + "value": 0.7170489950180006 + }, + "end": 68237, + "operator": "-", + "start": 68218, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 68265, + "raw": "0.23454356079651384", + "start": 68246, + "type": "Literal", + "type": "Literal", + "value": 0.23454356079651384 + } + ], + "end": 68272, + "start": 68209, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68275, + "start": 68274, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68208, + "name": "line", + "start": 68204, + "type": "Identifier" + }, + "end": 68276, + "optional": false, + "start": 68204, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68315, + "raw": "0.2568187045379722", + "start": 68297, + "type": "Literal", + "type": "Literal", + "value": 0.2568187045379722 + }, + "end": 68315, + "operator": "-", + "start": 68296, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 68344, + "raw": "0.45031188717601367", + "start": 68325, + "type": "Literal", + "type": "Literal", + "value": 0.45031188717601367 + }, + "end": 68344, + "operator": "-", + "start": 68324, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 68351, + "start": 68287, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68354, + "start": 68353, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68286, + "name": "line", + "start": 68282, + "type": "Identifier" + }, + "end": 68355, + "optional": false, + "start": 68282, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 68393, + "raw": "0.6751951211858687", + "start": 68375, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 68421, + "raw": "0.9709424233465593", + "start": 68403, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 68421, + "operator": "-", + "start": 68402, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 68428, + "start": 68366, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68431, + "start": 68430, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68365, + "name": "line", + "start": 68361, + "type": "Identifier" + }, + "end": 68432, + "optional": false, + "start": 68361, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68471, + "raw": "0.5689619842972184", + "start": 68453, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 68471, + "operator": "-", + "start": 68452, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 68498, + "raw": "0.5918969913790362", + "start": 68480, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 68505, + "start": 68443, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68508, + "start": 68507, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68442, + "name": "line", + "start": 68438, + "type": "Identifier" + }, + "end": 68509, + "optional": false, + "start": 68438, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68548, + "raw": "0.8328324229085962", + "start": 68530, + "type": "Literal", + "type": "Literal", + "value": 0.8328324229085962 + }, + "end": 68548, + "operator": "-", + "start": 68529, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 68575, + "raw": "0.4677492878818803", + "start": 68557, + "type": "Literal", + "type": "Literal", + "value": 0.4677492878818803 + } + ], + "end": 68582, + "start": 68520, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68585, + "start": 68584, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68519, + "name": "line", + "start": 68515, + "type": "Identifier" + }, + "end": 68586, + "optional": false, + "start": 68515, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68625, + "raw": "0.8111463382182231", + "start": 68607, + "type": "Literal", + "type": "Literal", + "value": 0.8111463382182231 + }, + "end": 68625, + "operator": "-", + "start": 68606, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 68654, + "raw": "0.41814807547140576", + "start": 68635, + "type": "Literal", + "type": "Literal", + "value": 0.41814807547140576 + }, + "end": 68654, + "operator": "-", + "start": 68634, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 68661, + "start": 68597, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68664, + "start": 68663, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68596, + "name": "line", + "start": 68592, + "type": "Identifier" + }, + "end": 68665, + "optional": false, + "start": 68592, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 68704, + "raw": "0.03807684940941125", + "start": 68685, + "type": "Literal", + "type": "Literal", + "value": 0.03807684940941125 + }, + { + "end": 68732, + "raw": "0.25664826686353326", + "start": 68713, + "type": "Literal", + "type": "Literal", + "value": 0.25664826686353326 + } + ], + "end": 68739, + "start": 68676, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68742, + "start": 68741, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68675, + "name": "line", + "start": 68671, + "type": "Identifier" + }, + "end": 68743, + "optional": false, + "start": 68671, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 68782, + "raw": "0.23950083339596384", + "start": 68763, + "type": "Literal", + "type": "Literal", + "value": 0.23950083339596384 + }, + { + "end": 68810, + "raw": "0.43693196301855575", + "start": 68791, + "type": "Literal", + "type": "Literal", + "value": 0.43693196301855575 + } + ], + "end": 68817, + "start": 68754, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68820, + "start": 68819, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68753, + "name": "line", + "start": 68749, + "type": "Identifier" + }, + "end": 68821, + "optional": false, + "start": 68749, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68861, + "raw": "0.16279444820904887", + "start": 68842, + "type": "Literal", + "type": "Literal", + "value": 0.16279444820904887 + }, + "end": 68861, + "operator": "-", + "start": 68841, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 68888, + "raw": "0.8064475707664818", + "start": 68870, + "type": "Literal", + "type": "Literal", + "value": 0.8064475707664818 + } + ], + "end": 68895, + "start": 68832, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68898, + "start": 68897, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68831, + "name": "line", + "start": 68827, + "type": "Identifier" + }, + "end": 68899, + "optional": false, + "start": 68827, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 68939, + "raw": "0.08972872009232558", + "start": 68920, + "type": "Literal", + "type": "Literal", + "value": 0.08972872009232558 + }, + "end": 68939, + "operator": "-", + "start": 68919, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 68968, + "raw": "0.08887625823751266", + "start": 68949, + "type": "Literal", + "type": "Literal", + "value": 0.08887625823751266 + }, + "end": 68968, + "operator": "-", + "start": 68948, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 68975, + "start": 68910, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68978, + "start": 68977, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68909, + "name": "line", + "start": 68905, + "type": "Identifier" + }, + "end": 68979, + "optional": false, + "start": 68905, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69017, + "raw": "0.9203433427102556", + "start": 68999, + "type": "Literal", + "type": "Literal", + "value": 0.9203433427102556 + }, + { + "argument": { + "end": 69046, + "raw": "0.17343459369697545", + "start": 69027, + "type": "Literal", + "type": "Literal", + "value": 0.17343459369697545 + }, + "end": 69046, + "operator": "-", + "start": 69026, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 69053, + "start": 68990, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69056, + "start": 69055, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 68989, + "name": "line", + "start": 68985, + "type": "Identifier" + }, + "end": 69057, + "optional": false, + "start": 68985, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69098, + "raw": "0.0017496234414517975", + "start": 69077, + "type": "Literal", + "type": "Literal", + "value": 0.0017496234414517975 + }, + { + "argument": { + "end": 69126, + "raw": "0.5178508316168335", + "start": 69108, + "type": "Literal", + "type": "Literal", + "value": 0.5178508316168335 + }, + "end": 69126, + "operator": "-", + "start": 69107, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 69133, + "start": 69068, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69136, + "start": 69135, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69067, + "name": "line", + "start": 69063, + "type": "Identifier" + }, + "end": 69137, + "optional": false, + "start": 69063, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69175, + "raw": "0.6206263405732759", + "start": 69157, + "type": "Literal", + "type": "Literal", + "value": 0.6206263405732759 + }, + { + "argument": { + "end": 69203, + "raw": "0.8733399468665124", + "start": 69185, + "type": "Literal", + "type": "Literal", + "value": 0.8733399468665124 + }, + "end": 69203, + "operator": "-", + "start": 69184, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 69210, + "start": 69148, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69213, + "start": 69212, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69147, + "name": "line", + "start": 69143, + "type": "Identifier" + }, + "end": 69214, + "optional": false, + "start": 69143, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 69253, + "raw": "0.7776386664456383", + "start": 69235, + "type": "Literal", + "type": "Literal", + "value": 0.7776386664456383 + }, + "end": 69253, + "operator": "-", + "start": 69234, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 69280, + "raw": "0.7602780485384968", + "start": 69262, + "type": "Literal", + "type": "Literal", + "value": 0.7602780485384968 + } + ], + "end": 69287, + "start": 69225, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69290, + "start": 69289, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69224, + "name": "line", + "start": 69220, + "type": "Identifier" + }, + "end": 69291, + "optional": false, + "start": 69220, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69321, + "raw": "0.5439379760788592", + "start": 69303, + "type": "Literal", + "type": "Literal", + "value": 0.5439379760788592 + }, + { + "end": 69341, + "raw": "0.8449177589350552", + "start": 69323, + "type": "Literal", + "type": "Literal", + "value": 0.8449177589350552 + } + ], + "end": 69342, + "start": 69302, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69345, + "start": 69344, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69301, + "name": "line", + "start": 69297, + "type": "Identifier" + }, + "end": 69346, + "optional": false, + "start": 69297, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 69386, + "raw": "0.13036646025917076", + "start": 69367, + "type": "Literal", + "type": "Literal", + "value": 0.13036646025917076 + }, + "end": 69386, + "operator": "-", + "start": 69366, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 69415, + "raw": "0.012051713627069693", + "start": 69395, + "type": "Literal", + "type": "Literal", + "value": 0.012051713627069693 + } + ], + "end": 69422, + "start": 69357, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69425, + "start": 69424, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69356, + "name": "line", + "start": 69352, + "type": "Identifier" + }, + "end": 69426, + "optional": false, + "start": 69352, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 69465, + "raw": "0.1656465612645519", + "start": 69447, + "type": "Literal", + "type": "Literal", + "value": 0.1656465612645519 + }, + "end": 69465, + "operator": "-", + "start": 69446, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 69494, + "raw": "0.20775229173765486", + "start": 69475, + "type": "Literal", + "type": "Literal", + "value": 0.20775229173765486 + }, + "end": 69494, + "operator": "-", + "start": 69474, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 69501, + "start": 69437, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69504, + "start": 69503, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69436, + "name": "line", + "start": 69432, + "type": "Identifier" + }, + "end": 69505, + "optional": false, + "start": 69432, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 69544, + "raw": "0.0962723255929061", + "start": 69526, + "type": "Literal", + "type": "Literal", + "value": 0.0962723255929061 + }, + "end": 69544, + "operator": "-", + "start": 69525, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 69573, + "raw": "0.05417797659066137", + "start": 69554, + "type": "Literal", + "type": "Literal", + "value": 0.05417797659066137 + }, + "end": 69573, + "operator": "-", + "start": 69553, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 69580, + "start": 69516, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69583, + "start": 69582, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69515, + "name": "line", + "start": 69511, + "type": "Identifier" + }, + "end": 69584, + "optional": false, + "start": 69511, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69613, + "raw": "0.902108945498191", + "start": 69596, + "type": "Literal", + "type": "Literal", + "value": 0.902108945498191 + }, + { + "end": 69633, + "raw": "0.3958978534964961", + "start": 69615, + "type": "Literal", + "type": "Literal", + "value": 0.3958978534964961 + } + ], + "end": 69634, + "start": 69595, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69637, + "start": 69636, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69594, + "name": "line", + "start": 69590, + "type": "Identifier" + }, + "end": 69638, + "optional": false, + "start": 69590, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69677, + "raw": "0.27997950083139167", + "start": 69658, + "type": "Literal", + "type": "Literal", + "value": 0.27997950083139167 + }, + { + "argument": { + "end": 69706, + "raw": "0.17778188444008958", + "start": 69687, + "type": "Literal", + "type": "Literal", + "value": 0.17778188444008958 + }, + "end": 69706, + "operator": "-", + "start": 69686, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 69713, + "start": 69649, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69716, + "start": 69715, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69648, + "name": "line", + "start": 69644, + "type": "Identifier" + }, + "end": 69717, + "optional": false, + "start": 69644, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69747, + "raw": "0.5235806061589545", + "start": 69729, + "type": "Literal", + "type": "Literal", + "value": 0.5235806061589545 + }, + { + "end": 69766, + "raw": "0.694318985642328", + "start": 69749, + "type": "Literal", + "type": "Literal", + "value": 0.694318985642328 + } + ], + "end": 69767, + "start": 69728, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69770, + "start": 69769, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69727, + "name": "line", + "start": 69723, + "type": "Identifier" + }, + "end": 69771, + "optional": false, + "start": 69723, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69810, + "raw": "0.39140760219992154", + "start": 69791, + "type": "Literal", + "type": "Literal", + "value": 0.39140760219992154 + }, + { + "argument": { + "end": 69838, + "raw": "0.7839795272576484", + "start": 69820, + "type": "Literal", + "type": "Literal", + "value": 0.7839795272576484 + }, + "end": 69838, + "operator": "-", + "start": 69819, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 69845, + "start": 69782, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69848, + "start": 69847, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69781, + "name": "line", + "start": 69777, + "type": "Identifier" + }, + "end": 69849, + "optional": false, + "start": 69777, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69879, + "raw": "0.8414243527073519", + "start": 69861, + "type": "Literal", + "type": "Literal", + "value": 0.8414243527073519 + }, + { + "end": 69899, + "raw": "0.5395591528940082", + "start": 69881, + "type": "Literal", + "type": "Literal", + "value": 0.5395591528940082 + } + ], + "end": 69900, + "start": 69860, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69903, + "start": 69902, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69859, + "name": "line", + "start": 69855, + "type": "Identifier" + }, + "end": 69904, + "optional": false, + "start": 69855, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 69942, + "raw": "0.6137667704875602", + "start": 69924, + "type": "Literal", + "type": "Literal", + "value": 0.6137667704875602 + }, + { + "end": 69970, + "raw": "0.22119647516722085", + "start": 69951, + "type": "Literal", + "type": "Literal", + "value": 0.22119647516722085 + } + ], + "end": 69977, + "start": 69915, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 69980, + "start": 69979, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69914, + "name": "line", + "start": 69910, + "type": "Identifier" + }, + "end": 69981, + "optional": false, + "start": 69910, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70021, + "raw": "0.09582414374469184", + "start": 70002, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 70021, + "operator": "-", + "start": 70001, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 70049, + "raw": "0.7533839681212353", + "start": 70031, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 70049, + "operator": "-", + "start": 70030, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70056, + "start": 69992, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70059, + "start": 70058, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69991, + "name": "line", + "start": 69987, + "type": "Identifier" + }, + "end": 70060, + "optional": false, + "start": 69987, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70100, + "raw": "0.17254116580051848", + "start": 70081, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 70100, + "operator": "-", + "start": 70080, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 70128, + "raw": "0.7669113400341137", + "start": 70110, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 70128, + "operator": "-", + "start": 70109, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70135, + "start": 70071, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70138, + "start": 70137, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70070, + "name": "line", + "start": 70066, + "type": "Identifier" + }, + "end": 70139, + "optional": false, + "start": 70066, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 70169, + "raw": "0.8944730032887609", + "start": 70151, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 70189, + "raw": "0.6093318694741408", + "start": 70171, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 70190, + "start": 70150, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70193, + "start": 70192, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70149, + "name": "line", + "start": 70145, + "type": "Identifier" + }, + "end": 70194, + "optional": false, + "start": 70145, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70234, + "raw": "0.41290485754343953", + "start": 70215, + "type": "Literal", + "type": "Literal", + "value": 0.41290485754343953 + }, + "end": 70234, + "operator": "-", + "start": 70214, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 70262, + "raw": "0.4152647361760933", + "start": 70244, + "type": "Literal", + "type": "Literal", + "value": 0.4152647361760933 + }, + "end": 70262, + "operator": "-", + "start": 70243, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70269, + "start": 70205, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70272, + "start": 70271, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70204, + "name": "line", + "start": 70200, + "type": "Identifier" + }, + "end": 70273, + "optional": false, + "start": 70200, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 70311, + "raw": "0.5169538755575687", + "start": 70293, + "type": "Literal", + "type": "Literal", + "value": 0.5169538755575687 + }, + { + "argument": { + "end": 70339, + "raw": "0.9085567867302617", + "start": 70321, + "type": "Literal", + "type": "Literal", + "value": 0.9085567867302617 + }, + "end": 70339, + "operator": "-", + "start": 70320, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70346, + "start": 70284, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70349, + "start": 70348, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70283, + "name": "line", + "start": 70279, + "type": "Identifier" + }, + "end": 70350, + "optional": false, + "start": 70279, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 70388, + "raw": "0.6751951211858687", + "start": 70370, + "type": "Literal", + "type": "Literal", + "value": 0.6751951211858687 + }, + { + "argument": { + "end": 70416, + "raw": "0.9709424233465593", + "start": 70398, + "type": "Literal", + "type": "Literal", + "value": 0.9709424233465593 + }, + "end": 70416, + "operator": "-", + "start": 70397, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70423, + "start": 70361, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70426, + "start": 70425, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70360, + "name": "line", + "start": 70356, + "type": "Identifier" + }, + "end": 70427, + "optional": false, + "start": 70356, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70466, + "raw": "0.5689619842972184", + "start": 70448, + "type": "Literal", + "type": "Literal", + "value": 0.5689619842972184 + }, + "end": 70466, + "operator": "-", + "start": 70447, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 70493, + "raw": "0.5918969913790362", + "start": 70475, + "type": "Literal", + "type": "Literal", + "value": 0.5918969913790362 + } + ], + "end": 70500, + "start": 70438, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70503, + "start": 70502, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70437, + "name": "line", + "start": 70433, + "type": "Identifier" + }, + "end": 70504, + "optional": false, + "start": 70433, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 70542, + "raw": "0.9464450621708211", + "start": 70524, + "type": "Literal", + "type": "Literal", + "value": 0.9464450621708211 + }, + { + "argument": { + "end": 70570, + "raw": "0.2684908127803667", + "start": 70552, + "type": "Literal", + "type": "Literal", + "value": 0.2684908127803667 + }, + "end": 70570, + "operator": "-", + "start": 70551, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70577, + "start": 70515, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70580, + "start": 70579, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70514, + "name": "line", + "start": 70510, + "type": "Identifier" + }, + "end": 70581, + "optional": false, + "start": 70510, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 70611, + "raw": "0.5241732366617591", + "start": 70593, + "type": "Literal", + "type": "Literal", + "value": 0.5241732366617591 + }, + { + "end": 70631, + "raw": "0.9011437416408563", + "start": 70613, + "type": "Literal", + "type": "Literal", + "value": 0.9011437416408563 + } + ], + "end": 70632, + "start": 70592, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70635, + "start": 70634, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70591, + "name": "line", + "start": 70587, + "type": "Identifier" + }, + "end": 70636, + "optional": false, + "start": 70587, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70676, + "raw": "0.14255393713960607", + "start": 70657, + "type": "Literal", + "type": "Literal", + "value": 0.14255393713960607 + }, + "end": 70676, + "operator": "-", + "start": 70656, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 70704, + "raw": "0.5194262624564814", + "start": 70686, + "type": "Literal", + "type": "Literal", + "value": 0.5194262624564814 + }, + "end": 70704, + "operator": "-", + "start": 70685, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70711, + "start": 70647, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70714, + "start": 70713, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70646, + "name": "line", + "start": 70642, + "type": "Identifier" + }, + "end": 70715, + "optional": false, + "start": 70642, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70754, + "raw": "0.4287123231350338", + "start": 70736, + "type": "Literal", + "type": "Literal", + "value": 0.4287123231350338 + }, + "end": 70754, + "operator": "-", + "start": 70735, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 70782, + "raw": "0.4223564528725028", + "start": 70764, + "type": "Literal", + "type": "Literal", + "value": 0.4223564528725028 + }, + "end": 70782, + "operator": "-", + "start": 70763, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70789, + "start": 70726, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70792, + "start": 70791, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70725, + "name": "line", + "start": 70721, + "type": "Identifier" + }, + "end": 70793, + "optional": false, + "start": 70721, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70833, + "raw": "0.09316367294024519", + "start": 70814, + "type": "Literal", + "type": "Literal", + "value": 0.09316367294024519 + }, + "end": 70833, + "operator": "-", + "start": 70813, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 70861, + "raw": "0.9063127021008246", + "start": 70843, + "type": "Literal", + "type": "Literal", + "value": 0.9063127021008246 + }, + "end": 70861, + "operator": "-", + "start": 70842, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 70868, + "start": 70804, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70871, + "start": 70870, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70803, + "name": "line", + "start": 70799, + "type": "Identifier" + }, + "end": 70872, + "optional": false, + "start": 70799, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 70911, + "raw": "0.2767766535558669", + "start": 70893, + "type": "Literal", + "type": "Literal", + "value": 0.2767766535558669 + }, + "end": 70911, + "operator": "-", + "start": 70892, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 70938, + "raw": "0.6816248114129131", + "start": 70920, + "type": "Literal", + "type": "Literal", + "value": 0.6816248114129131 + } + ], + "end": 70945, + "start": 70883, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 70948, + "start": 70947, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70882, + "name": "line", + "start": 70878, + "type": "Identifier" + }, + "end": 70949, + "optional": false, + "start": 70878, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 70987, + "raw": "0.9796762495562534", + "start": 70969, + "type": "Literal", + "type": "Literal", + "value": 0.9796762495562534 + }, + { + "argument": { + "end": 71015, + "raw": "0.0822145668330625", + "start": 70997, + "type": "Literal", + "type": "Literal", + "value": 0.0822145668330625 + }, + "end": 71015, + "operator": "-", + "start": 70996, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 71022, + "start": 70960, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71025, + "start": 71024, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70959, + "name": "line", + "start": 70955, + "type": "Identifier" + }, + "end": 71026, + "optional": false, + "start": 70955, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 71065, + "raw": "0.8666513070867441", + "start": 71047, + "type": "Literal", + "type": "Literal", + "value": 0.8666513070867441 + }, + "end": 71065, + "operator": "-", + "start": 71046, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 71092, + "raw": "0.301053160242023", + "start": 71075, + "type": "Literal", + "type": "Literal", + "value": 0.301053160242023 + }, + "end": 71092, + "operator": "-", + "start": 71074, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 71099, + "start": 71037, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71102, + "start": 71101, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71036, + "name": "line", + "start": 71032, + "type": "Identifier" + }, + "end": 71103, + "optional": false, + "start": 71032, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71140, + "raw": "0.537415656028112", + "start": 71123, + "type": "Literal", + "type": "Literal", + "value": 0.537415656028112 + }, + { + "end": 71169, + "raw": "0.020272692875002774", + "start": 71149, + "type": "Literal", + "type": "Literal", + "value": 0.020272692875002774 + } + ], + "end": 71176, + "start": 71114, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71179, + "start": 71178, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71113, + "name": "line", + "start": 71109, + "type": "Identifier" + }, + "end": 71180, + "optional": false, + "start": 71109, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71218, + "raw": "0.9332396256457531", + "start": 71200, + "type": "Literal", + "type": "Literal", + "value": 0.9332396256457531 + }, + { + "argument": { + "end": 71246, + "raw": "0.6228175690649898", + "start": 71228, + "type": "Literal", + "type": "Literal", + "value": 0.6228175690649898 + }, + "end": 71246, + "operator": "-", + "start": 71227, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 71253, + "start": 71191, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71256, + "start": 71255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71190, + "name": "line", + "start": 71186, + "type": "Identifier" + }, + "end": 71257, + "optional": false, + "start": 71186, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71296, + "raw": "0.18052415837320734", + "start": 71277, + "type": "Literal", + "type": "Literal", + "value": 0.18052415837320734 + }, + { + "argument": { + "end": 71325, + "raw": "0.36894384647296197", + "start": 71306, + "type": "Literal", + "type": "Literal", + "value": 0.36894384647296197 + }, + "end": 71325, + "operator": "-", + "start": 71305, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 71332, + "start": 71268, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71335, + "start": 71334, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71267, + "name": "line", + "start": 71263, + "type": "Identifier" + }, + "end": 71336, + "optional": false, + "start": 71263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71366, + "raw": "0.5384372634075449", + "start": 71348, + "type": "Literal", + "type": "Literal", + "value": 0.5384372634075449 + }, + { + "end": 71386, + "raw": "0.2377565050887107", + "start": 71368, + "type": "Literal", + "type": "Literal", + "value": 0.2377565050887107 + } + ], + "end": 71387, + "start": 71347, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71390, + "start": 71389, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71346, + "name": "line", + "start": 71342, + "type": "Identifier" + }, + "end": 71391, + "optional": false, + "start": 71342, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71430, + "raw": "0.39043436929278874", + "start": 71411, + "type": "Literal", + "type": "Literal", + "value": 0.39043436929278874 + }, + { + "end": 71458, + "raw": "0.14273182483160451", + "start": 71439, + "type": "Literal", + "type": "Literal", + "value": 0.14273182483160451 + } + ], + "end": 71465, + "start": 71402, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71468, + "start": 71467, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71401, + "name": "line", + "start": 71397, + "type": "Identifier" + }, + "end": 71469, + "optional": false, + "start": 71397, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71508, + "raw": "0.09782890412897283", + "start": 71489, + "type": "Literal", + "type": "Literal", + "value": 0.09782890412897283 + }, + { + "end": 71535, + "raw": "0.9907667536909659", + "start": 71517, + "type": "Literal", + "type": "Literal", + "value": 0.9907667536909659 + } + ], + "end": 71542, + "start": 71480, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71545, + "start": 71544, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71479, + "name": "line", + "start": 71475, + "type": "Identifier" + }, + "end": 71546, + "optional": false, + "start": 71475, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71584, + "raw": "0.5286610085921146", + "start": 71566, + "type": "Literal", + "type": "Literal", + "value": 0.5286610085921146 + }, + { + "argument": { + "end": 71612, + "raw": "0.7924508308419256", + "start": 71594, + "type": "Literal", + "type": "Literal", + "value": 0.7924508308419256 + }, + "end": 71612, + "operator": "-", + "start": 71593, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 71619, + "start": 71557, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71622, + "start": 71621, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71556, + "name": "line", + "start": 71552, + "type": "Identifier" + }, + "end": 71623, + "optional": false, + "start": 71552, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71661, + "raw": "0.3789978184503342", + "start": 71643, + "type": "Literal", + "type": "Literal", + "value": 0.3789978184503342 + }, + { + "end": 71689, + "raw": "0.12396120576838676", + "start": 71670, + "type": "Literal", + "type": "Literal", + "value": 0.12396120576838676 + } + ], + "end": 71696, + "start": 71634, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71699, + "start": 71698, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71633, + "name": "line", + "start": 71629, + "type": "Identifier" + }, + "end": 71700, + "optional": false, + "start": 71629, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 71739, + "raw": "0.9484912744890612", + "start": 71721, + "type": "Literal", + "type": "Literal", + "value": 0.9484912744890612 + }, + "end": 71739, + "operator": "-", + "start": 71720, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 71766, + "raw": "0.6729649846476855", + "start": 71748, + "type": "Literal", + "type": "Literal", + "value": 0.6729649846476855 + } + ], + "end": 71773, + "start": 71711, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71776, + "start": 71775, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71710, + "name": "line", + "start": 71706, + "type": "Identifier" + }, + "end": 71777, + "optional": false, + "start": 71706, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71815, + "raw": "0.7451758753425153", + "start": 71797, + "type": "Literal", + "type": "Literal", + "value": 0.7451758753425153 + }, + { + "argument": { + "end": 71844, + "raw": "0.21318737562458967", + "start": 71825, + "type": "Literal", + "type": "Literal", + "value": 0.21318737562458967 + }, + "end": 71844, + "operator": "-", + "start": 71824, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 71851, + "start": 71788, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71854, + "start": 71853, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71787, + "name": "line", + "start": 71783, + "type": "Identifier" + }, + "end": 71855, + "optional": false, + "start": 71783, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 71893, + "raw": "0.1873200727251887", + "start": 71875, + "type": "Literal", + "type": "Literal", + "value": 0.1873200727251887 + }, + { + "argument": { + "end": 71922, + "raw": "0.15961374297992448", + "start": 71903, + "type": "Literal", + "type": "Literal", + "value": 0.15961374297992448 + }, + "end": 71922, + "operator": "-", + "start": 71902, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 71929, + "start": 71866, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 71932, + "start": 71931, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71865, + "name": "line", + "start": 71861, + "type": "Identifier" + }, + "end": 71933, + "optional": false, + "start": 71861, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 71973, + "raw": "0.05729464924537564", + "start": 71954, + "type": "Literal", + "type": "Literal", + "value": 0.05729464924537564 + }, + "end": 71973, + "operator": "-", + "start": 71953, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 72001, + "raw": "0.5436345558508746", + "start": 71983, + "type": "Literal", + "type": "Literal", + "value": 0.5436345558508746 + }, + "end": 72001, + "operator": "-", + "start": 71982, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72008, + "start": 71944, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72011, + "start": 72010, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 71943, + "name": "line", + "start": 71939, + "type": "Identifier" + }, + "end": 72012, + "optional": false, + "start": 71939, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72052, + "raw": "0.09582414374469184", + "start": 72033, + "type": "Literal", + "type": "Literal", + "value": 0.09582414374469184 + }, + "end": 72052, + "operator": "-", + "start": 72032, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 72080, + "raw": "0.7533839681212353", + "start": 72062, + "type": "Literal", + "type": "Literal", + "value": 0.7533839681212353 + }, + "end": 72080, + "operator": "-", + "start": 72061, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72087, + "start": 72023, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72090, + "start": 72089, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72022, + "name": "line", + "start": 72018, + "type": "Identifier" + }, + "end": 72091, + "optional": false, + "start": 72018, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72131, + "raw": "0.17254116580051848", + "start": 72112, + "type": "Literal", + "type": "Literal", + "value": 0.17254116580051848 + }, + "end": 72131, + "operator": "-", + "start": 72111, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 72159, + "raw": "0.7669113400341137", + "start": 72141, + "type": "Literal", + "type": "Literal", + "value": 0.7669113400341137 + }, + "end": 72159, + "operator": "-", + "start": 72140, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72166, + "start": 72102, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72169, + "start": 72168, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72101, + "name": "line", + "start": 72097, + "type": "Identifier" + }, + "end": 72170, + "optional": false, + "start": 72097, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 72200, + "raw": "0.8944730032887609", + "start": 72182, + "type": "Literal", + "type": "Literal", + "value": 0.8944730032887609 + }, + { + "end": 72220, + "raw": "0.6093318694741408", + "start": 72202, + "type": "Literal", + "type": "Literal", + "value": 0.6093318694741408 + } + ], + "end": 72221, + "start": 72181, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72224, + "start": 72223, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72180, + "name": "line", + "start": 72176, + "type": "Identifier" + }, + "end": 72225, + "optional": false, + "start": 72176, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72264, + "raw": "0.6238548626325471", + "start": 72246, + "type": "Literal", + "type": "Literal", + "value": 0.6238548626325471 + }, + "end": 72264, + "operator": "-", + "start": 72245, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 72291, + "raw": "0.4053626746020169", + "start": 72273, + "type": "Literal", + "type": "Literal", + "value": 0.4053626746020169 + } + ], + "end": 72298, + "start": 72236, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72301, + "start": 72300, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72235, + "name": "line", + "start": 72231, + "type": "Identifier" + }, + "end": 72302, + "optional": false, + "start": 72231, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 72340, + "raw": "0.1379445992766417", + "start": 72322, + "type": "Literal", + "type": "Literal", + "value": 0.1379445992766417 + }, + { + "argument": { + "end": 72369, + "raw": "0.47871087958516045", + "start": 72350, + "type": "Literal", + "type": "Literal", + "value": 0.47871087958516045 + }, + "end": 72369, + "operator": "-", + "start": 72349, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72376, + "start": 72313, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72379, + "start": 72378, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72312, + "name": "line", + "start": 72308, + "type": "Identifier" + }, + "end": 72380, + "optional": false, + "start": 72308, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72419, + "raw": "0.9516767113283946", + "start": 72401, + "type": "Literal", + "type": "Literal", + "value": 0.9516767113283946 + }, + "end": 72419, + "operator": "-", + "start": 72400, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 72446, + "raw": "0.8619900618578948", + "start": 72428, + "type": "Literal", + "type": "Literal", + "value": 0.8619900618578948 + } + ], + "end": 72453, + "start": 72391, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72456, + "start": 72455, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72390, + "name": "line", + "start": 72386, + "type": "Identifier" + }, + "end": 72457, + "optional": false, + "start": 72386, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 72487, + "raw": "0.9398732950992088", + "start": 72469, + "type": "Literal", + "type": "Literal", + "value": 0.9398732950992088 + }, + { + "end": 72507, + "raw": "0.6326239915683629", + "start": 72489, + "type": "Literal", + "type": "Literal", + "value": 0.6326239915683629 + } + ], + "end": 72508, + "start": 72468, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72511, + "start": 72510, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72467, + "name": "line", + "start": 72463, + "type": "Identifier" + }, + "end": 72512, + "optional": false, + "start": 72463, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72551, + "raw": "0.8631974445502164", + "start": 72533, + "type": "Literal", + "type": "Literal", + "value": 0.8631974445502164 + }, + "end": 72551, + "operator": "-", + "start": 72532, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 72580, + "raw": "0.016153555523963137", + "start": 72560, + "type": "Literal", + "type": "Literal", + "value": 0.016153555523963137 + } + ], + "end": 72587, + "start": 72523, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72590, + "start": 72589, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72522, + "name": "line", + "start": 72518, + "type": "Identifier" + }, + "end": 72591, + "optional": false, + "start": 72518, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 72630, + "raw": "0.19167797120152907", + "start": 72611, + "type": "Literal", + "type": "Literal", + "value": 0.19167797120152907 + }, + { + "argument": { + "end": 72658, + "raw": "0.4916414381703984", + "start": 72640, + "type": "Literal", + "type": "Literal", + "value": 0.4916414381703984 + }, + "end": 72658, + "operator": "-", + "start": 72639, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72665, + "start": 72602, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72668, + "start": 72667, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72601, + "name": "line", + "start": 72597, + "type": "Identifier" + }, + "end": 72669, + "optional": false, + "start": 72597, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72708, + "raw": "0.8644261221501586", + "start": 72690, + "type": "Literal", + "type": "Literal", + "value": 0.8644261221501586 + }, + "end": 72708, + "operator": "-", + "start": 72689, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 72737, + "raw": "0.11434763886359756", + "start": 72718, + "type": "Literal", + "type": "Literal", + "value": 0.11434763886359756 + }, + "end": 72737, + "operator": "-", + "start": 72717, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72744, + "start": 72680, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72747, + "start": 72746, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72679, + "name": "line", + "start": 72675, + "type": "Identifier" + }, + "end": 72748, + "optional": false, + "start": 72675, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72789, + "raw": "0.029081958413378572", + "start": 72769, + "type": "Literal", + "type": "Literal", + "value": 0.029081958413378572 + }, + "end": 72789, + "operator": "-", + "start": 72768, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 72817, + "raw": "0.5214138808318329", + "start": 72799, + "type": "Literal", + "type": "Literal", + "value": 0.5214138808318329 + }, + "end": 72817, + "operator": "-", + "start": 72798, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72824, + "start": 72759, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72827, + "start": 72826, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72758, + "name": "line", + "start": 72754, + "type": "Identifier" + }, + "end": 72828, + "optional": false, + "start": 72754, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72867, + "raw": "0.8713091851579695", + "start": 72849, + "type": "Literal", + "type": "Literal", + "value": 0.8713091851579695 + }, + "end": 72867, + "operator": "-", + "start": 72848, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 72894, + "raw": "0.7866284950967315", + "start": 72876, + "type": "Literal", + "type": "Literal", + "value": 0.7866284950967315 + } + ], + "end": 72901, + "start": 72839, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72904, + "start": 72903, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72838, + "name": "line", + "start": 72834, + "type": "Identifier" + }, + "end": 72905, + "optional": false, + "start": 72834, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 72934, + "raw": "0.884342023093545", + "start": 72917, + "type": "Literal", + "type": "Literal", + "value": 0.884342023093545 + }, + { + "argument": { + "end": 72955, + "raw": "0.1825407002568431", + "start": 72937, + "type": "Literal", + "type": "Literal", + "value": 0.1825407002568431 + }, + "end": 72955, + "operator": "-", + "start": 72936, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 72956, + "start": 72916, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72959, + "start": 72958, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72915, + "name": "line", + "start": 72911, + "type": "Identifier" + }, + "end": 72960, + "optional": false, + "start": 72911, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 72999, + "raw": "0.6978385295364686", + "start": 72981, + "type": "Literal", + "type": "Literal", + "value": 0.6978385295364686 + }, + "end": 72999, + "operator": "-", + "start": 72980, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 73026, + "raw": "0.0440574328736949", + "start": 73008, + "type": "Literal", + "type": "Literal", + "value": 0.0440574328736949 + } + ], + "end": 73033, + "start": 72971, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73036, + "start": 73035, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72970, + "name": "line", + "start": 72966, + "type": "Identifier" + }, + "end": 73037, + "optional": false, + "start": 72966, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 73077, + "raw": "0.48055049324331556", + "start": 73058, + "type": "Literal", + "type": "Literal", + "value": 0.48055049324331556 + }, + "end": 73077, + "operator": "-", + "start": 73057, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 73107, + "raw": "0.028546347149214002", + "start": 73087, + "type": "Literal", + "type": "Literal", + "value": 0.028546347149214002 + }, + "end": 73107, + "operator": "-", + "start": 73086, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73114, + "start": 73048, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73117, + "start": 73116, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73047, + "name": "line", + "start": 73043, + "type": "Identifier" + }, + "end": 73118, + "optional": false, + "start": 73043, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73157, + "raw": "0.41283517382864776", + "start": 73138, + "type": "Literal", + "type": "Literal", + "value": 0.41283517382864776 + }, + { + "argument": { + "end": 73186, + "raw": "0.44938038251347323", + "start": 73167, + "type": "Literal", + "type": "Literal", + "value": 0.44938038251347323 + }, + "end": 73186, + "operator": "-", + "start": 73166, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73193, + "start": 73129, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73196, + "start": 73195, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73128, + "name": "line", + "start": 73124, + "type": "Identifier" + }, + "end": 73197, + "optional": false, + "start": 73124, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73227, + "raw": "0.7911399832501751", + "start": 73209, + "type": "Literal", + "type": "Literal", + "value": 0.7911399832501751 + }, + { + "end": 73246, + "raw": "0.893446368526005", + "start": 73229, + "type": "Literal", + "type": "Literal", + "value": 0.893446368526005 + } + ], + "end": 73247, + "start": 73208, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73250, + "start": 73249, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73207, + "name": "line", + "start": 73203, + "type": "Identifier" + }, + "end": 73251, + "optional": false, + "start": 73203, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73289, + "raw": "0.6507434699009087", + "start": 73271, + "type": "Literal", + "type": "Literal", + "value": 0.6507434699009087 + }, + { + "argument": { + "end": 73317, + "raw": "0.6890023920962012", + "start": 73299, + "type": "Literal", + "type": "Literal", + "value": 0.6890023920962012 + }, + "end": 73317, + "operator": "-", + "start": 73298, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73324, + "start": 73262, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73327, + "start": 73326, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73261, + "name": "line", + "start": 73257, + "type": "Identifier" + }, + "end": 73328, + "optional": false, + "start": 73257, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73367, + "raw": "0.10489019777253028", + "start": 73348, + "type": "Literal", + "type": "Literal", + "value": 0.10489019777253028 + }, + { + "argument": { + "end": 73395, + "raw": "0.5467450997193952", + "start": 73377, + "type": "Literal", + "type": "Literal", + "value": 0.5467450997193952 + }, + "end": 73395, + "operator": "-", + "start": 73376, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73402, + "start": 73339, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73405, + "start": 73404, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73338, + "name": "line", + "start": 73334, + "type": "Identifier" + }, + "end": 73406, + "optional": false, + "start": 73334, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 73445, + "raw": "0.5760905289992633", + "start": 73427, + "type": "Literal", + "type": "Literal", + "value": 0.5760905289992633 + }, + "end": 73445, + "operator": "-", + "start": 73426, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 73473, + "raw": "0.2639900702114173", + "start": 73455, + "type": "Literal", + "type": "Literal", + "value": 0.2639900702114173 + }, + "end": 73473, + "operator": "-", + "start": 73454, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73480, + "start": 73417, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73483, + "start": 73482, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73416, + "name": "line", + "start": 73412, + "type": "Identifier" + }, + "end": 73484, + "optional": false, + "start": 73412, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73523, + "raw": "0.39828861790105297", + "start": 73504, + "type": "Literal", + "type": "Literal", + "value": 0.39828861790105297 + }, + { + "end": 73550, + "raw": "0.8036624129416385", + "start": 73532, + "type": "Literal", + "type": "Literal", + "value": 0.8036624129416385 + } + ], + "end": 73557, + "start": 73495, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73560, + "start": 73559, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73494, + "name": "line", + "start": 73490, + "type": "Identifier" + }, + "end": 73561, + "optional": false, + "start": 73490, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 73591, + "raw": "0.673848991328553", + "start": 73574, + "type": "Literal", + "type": "Literal", + "value": 0.673848991328553 + }, + "end": 73591, + "operator": "-", + "start": 73573, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 73611, + "raw": "0.918443329270668", + "start": 73594, + "type": "Literal", + "type": "Literal", + "value": 0.918443329270668 + }, + "end": 73611, + "operator": "-", + "start": 73593, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73612, + "start": 73572, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73615, + "start": 73614, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73571, + "name": "line", + "start": 73567, + "type": "Identifier" + }, + "end": 73616, + "optional": false, + "start": 73567, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 73655, + "raw": "0.8599152936179257", + "start": 73637, + "type": "Literal", + "type": "Literal", + "value": 0.8599152936179257 + }, + "end": 73655, + "operator": "-", + "start": 73636, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 73683, + "raw": "0.9499371022680787", + "start": 73665, + "type": "Literal", + "type": "Literal", + "value": 0.9499371022680787 + }, + "end": 73683, + "operator": "-", + "start": 73664, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73690, + "start": 73627, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73693, + "start": 73692, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73626, + "name": "line", + "start": 73622, + "type": "Identifier" + }, + "end": 73694, + "optional": false, + "start": 73622, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73732, + "raw": "0.6285243831393765", + "start": 73714, + "type": "Literal", + "type": "Literal", + "value": 0.6285243831393765 + }, + { + "argument": { + "end": 73760, + "raw": "0.5186557636566307", + "start": 73742, + "type": "Literal", + "type": "Literal", + "value": 0.5186557636566307 + }, + "end": 73760, + "operator": "-", + "start": 73741, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73767, + "start": 73705, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73770, + "start": 73769, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73704, + "name": "line", + "start": 73700, + "type": "Identifier" + }, + "end": 73771, + "optional": false, + "start": 73700, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73809, + "raw": "0.3222412784832269", + "start": 73791, + "type": "Literal", + "type": "Literal", + "value": 0.3222412784832269 + }, + { + "end": 73837, + "raw": "0.24621192679727177", + "start": 73818, + "type": "Literal", + "type": "Literal", + "value": 0.24621192679727177 + } + ], + "end": 73844, + "start": 73782, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73847, + "start": 73846, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73781, + "name": "line", + "start": 73777, + "type": "Identifier" + }, + "end": 73848, + "optional": false, + "start": 73777, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 73887, + "raw": "0.19754357911311016", + "start": 73868, + "type": "Literal", + "type": "Literal", + "value": 0.19754357911311016 + }, + { + "argument": { + "end": 73915, + "raw": "0.7529246632397206", + "start": 73897, + "type": "Literal", + "type": "Literal", + "value": 0.7529246632397206 + }, + "end": 73915, + "operator": "-", + "start": 73896, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 73922, + "start": 73859, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 73925, + "start": 73924, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73858, + "name": "line", + "start": 73854, + "type": "Identifier" + }, + "end": 73926, + "optional": false, + "start": 73854, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 73966, + "raw": "0.43181570545865555", + "start": 73947, + "type": "Literal", + "type": "Literal", + "value": 0.43181570545865555 + }, + "end": 73966, + "operator": "-", + "start": 73946, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 73994, + "raw": "0.18945437402201537", + "start": 73975, + "type": "Literal", + "type": "Literal", + "value": 0.18945437402201537 + } + ], + "end": 74001, + "start": 73937, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 74004, + "start": 74003, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73936, + "name": "line", + "start": 73932, + "type": "Identifier" + }, + "end": 74005, + "optional": false, + "start": 73932, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 74043, + "raw": "0.8714511090241797", + "start": 74025, + "type": "Literal", + "type": "Literal", + "value": 0.8714511090241797 + }, + { + "argument": { + "end": 74071, + "raw": "0.7215844196844685", + "start": 74053, + "type": "Literal", + "type": "Literal", + "value": 0.7215844196844685 + }, + "end": 74071, + "operator": "-", + "start": 74052, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 74078, + "start": 74016, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 74081, + "start": 74080, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 74015, + "name": "line", + "start": 74011, + "type": "Identifier" + }, + "end": 74082, + "optional": false, + "start": 74011, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 74095, + "start": 74094, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 74093, + "name": "close", + "start": 74088, + "type": "Identifier" + }, + "end": 74096, + "optional": false, + "start": 74088, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 74111, + "raw": "5", + "start": 74110, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + { + "end": 74114, + "start": 74113, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 74109, + "name": "extrude", + "start": 74102, + "type": "Identifier" + }, + "end": 74115, + "optional": false, + "start": 74102, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 74115, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 74115, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 74116, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/input.kcl b/src/wasm-lib/kcl/tests/mike_stress_test/input.kcl new file mode 100644 index 000000000..de39d6ed9 --- /dev/null +++ b/src/wasm-lib/kcl/tests/mike_stress_test/input.kcl @@ -0,0 +1,3476 @@ +part001 = startSketchOn('XY') + |> startProfileAt([0.0, 0.0], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + 0.9464450621708211, + -0.2684908127803667 + ], %) + |> line([0.5241732366617591, 0.9011437416408563], %) + |> line([ + -0.14255393713960607, + -0.5194262624564814 + ], %) + |> line([ + -0.4287123231350338, + -0.4223564528725028 + ], %) + |> line([ + -0.09316367294024519, + -0.9063127021008246 + ], %) + |> line([ + -0.2767766535558669, + 0.6816248114129131 + ], %) + |> line([ + 0.9796762495562534, + -0.0822145668330625 + ], %) + |> line([ + -0.8666513070867441, + -0.301053160242023 + ], %) + |> line([ + 0.537415656028112, + 0.020272692875002774 + ], %) + |> line([ + 0.9332396256457531, + -0.6228175690649898 + ], %) + |> line([ + 0.18052415837320734, + -0.36894384647296197 + ], %) + |> line([0.5384372634075449, 0.2377565050887107], %) + |> line([ + 0.39043436929278874, + 0.14273182483160451 + ], %) + |> line([ + 0.09782890412897283, + 0.9907667536909659 + ], %) + |> line([ + 0.5286610085921146, + -0.7924508308419256 + ], %) + |> line([ + 0.3789978184503342, + 0.12396120576838676 + ], %) + |> line([ + -0.9484912744890612, + 0.6729649846476855 + ], %) + |> line([ + 0.7451758753425153, + -0.21318737562458967 + ], %) + |> line([ + 0.1873200727251887, + -0.15961374297992448 + ], %) + |> line([ + -0.05729464924537564, + -0.5436345558508746 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + 0.9464450621708211, + -0.2684908127803667 + ], %) + |> line([0.5241732366617591, 0.9011437416408563], %) + |> line([ + -0.14255393713960607, + -0.5194262624564814 + ], %) + |> line([ + -0.4287123231350338, + -0.4223564528725028 + ], %) + |> line([ + -0.09316367294024519, + -0.9063127021008246 + ], %) + |> line([ + -0.2767766535558669, + 0.6816248114129131 + ], %) + |> line([ + 0.9796762495562534, + -0.0822145668330625 + ], %) + |> line([ + -0.8666513070867441, + -0.301053160242023 + ], %) + |> line([ + 0.537415656028112, + 0.020272692875002774 + ], %) + |> line([ + 0.9332396256457531, + -0.6228175690649898 + ], %) + |> line([ + 0.18052415837320734, + -0.36894384647296197 + ], %) + |> line([0.5384372634075449, 0.2377565050887107], %) + |> line([ + 0.39043436929278874, + 0.14273182483160451 + ], %) + |> line([ + 0.09782890412897283, + 0.9907667536909659 + ], %) + |> line([ + 0.5286610085921146, + -0.7924508308419256 + ], %) + |> line([ + 0.3789978184503342, + 0.12396120576838676 + ], %) + |> line([ + -0.9484912744890612, + 0.6729649846476855 + ], %) + |> line([ + 0.7451758753425153, + -0.21318737562458967 + ], %) + |> line([ + 0.1873200727251887, + -0.15961374297992448 + ], %) + |> line([ + -0.05729464924537564, + -0.5436345558508746 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + 0.9464450621708211, + -0.2684908127803667 + ], %) + |> line([0.5241732366617591, 0.9011437416408563], %) + |> line([ + -0.14255393713960607, + -0.5194262624564814 + ], %) + |> line([ + -0.4287123231350338, + -0.4223564528725028 + ], %) + |> line([ + -0.09316367294024519, + -0.9063127021008246 + ], %) + |> line([ + -0.2767766535558669, + 0.6816248114129131 + ], %) + |> line([ + 0.9796762495562534, + -0.0822145668330625 + ], %) + |> line([ + -0.8666513070867441, + -0.301053160242023 + ], %) + |> line([ + 0.537415656028112, + 0.020272692875002774 + ], %) + |> line([ + 0.9332396256457531, + -0.6228175690649898 + ], %) + |> line([ + 0.18052415837320734, + -0.36894384647296197 + ], %) + |> line([0.5384372634075449, 0.2377565050887107], %) + |> line([ + 0.39043436929278874, + 0.14273182483160451 + ], %) + |> line([ + 0.09782890412897283, + 0.9907667536909659 + ], %) + |> line([ + 0.5286610085921146, + -0.7924508308419256 + ], %) + |> line([ + 0.3789978184503342, + 0.12396120576838676 + ], %) + |> line([ + -0.9484912744890612, + 0.6729649846476855 + ], %) + |> line([ + 0.7451758753425153, + -0.21318737562458967 + ], %) + |> line([ + 0.1873200727251887, + -0.15961374297992448 + ], %) + |> line([ + -0.05729464924537564, + -0.5436345558508746 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.6238548626325471, + 0.4053626746020169 + ], %) + |> line([ + 0.1379445992766417, + -0.47871087958516045 + ], %) + |> line([ + -0.9516767113283946, + 0.8619900618578948 + ], %) + |> line([0.9398732950992088, 0.6326239915683629], %) + |> line([ + -0.8631974445502164, + 0.016153555523963137 + ], %) + |> line([ + 0.19167797120152907, + -0.4916414381703984 + ], %) + |> line([ + -0.8644261221501586, + -0.11434763886359756 + ], %) + |> line([ + -0.029081958413378572, + -0.5214138808318329 + ], %) + |> line([ + -0.8713091851579695, + 0.7866284950967315 + ], %) + |> line([0.884342023093545, -0.1825407002568431], %) + |> line([ + -0.6978385295364686, + 0.0440574328736949 + ], %) + |> line([ + -0.48055049324331556, + -0.028546347149214002 + ], %) + |> line([ + 0.41283517382864776, + -0.44938038251347323 + ], %) + |> line([0.7911399832501751, 0.893446368526005], %) + |> line([ + 0.6507434699009087, + -0.6890023920962012 + ], %) + |> line([ + 0.10489019777253028, + -0.5467450997193952 + ], %) + |> line([ + -0.5760905289992633, + -0.2639900702114173 + ], %) + |> line([ + 0.39828861790105297, + 0.8036624129416385 + ], %) + |> line([-0.673848991328553, -0.918443329270668], %) + |> line([ + -0.8599152936179257, + -0.9499371022680787 + ], %) + |> line([ + 0.6285243831393765, + -0.5186557636566307 + ], %) + |> line([ + 0.3222412784832269, + 0.24621192679727177 + ], %) + |> line([ + 0.19754357911311016, + -0.7529246632397206 + ], %) + |> line([ + -0.43181570545865555, + 0.18945437402201537 + ], %) + |> line([ + 0.8714511090241797, + -0.7215844196844685 + ], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + 0.9464450621708211, + -0.2684908127803667 + ], %) + |> line([0.5241732366617591, 0.9011437416408563], %) + |> line([ + -0.14255393713960607, + -0.5194262624564814 + ], %) + |> line([ + -0.4287123231350338, + -0.4223564528725028 + ], %) + |> line([ + -0.09316367294024519, + -0.9063127021008246 + ], %) + |> line([ + -0.2767766535558669, + 0.6816248114129131 + ], %) + |> line([ + 0.9796762495562534, + -0.0822145668330625 + ], %) + |> line([ + -0.8666513070867441, + -0.301053160242023 + ], %) + |> line([ + 0.537415656028112, + 0.020272692875002774 + ], %) + |> line([ + 0.9332396256457531, + -0.6228175690649898 + ], %) + |> line([ + 0.18052415837320734, + -0.36894384647296197 + ], %) + |> line([0.5384372634075449, 0.2377565050887107], %) + |> line([ + 0.39043436929278874, + 0.14273182483160451 + ], %) + |> line([ + 0.09782890412897283, + 0.9907667536909659 + ], %) + |> line([ + 0.5286610085921146, + -0.7924508308419256 + ], %) + |> line([ + 0.3789978184503342, + 0.12396120576838676 + ], %) + |> line([ + -0.9484912744890612, + 0.6729649846476855 + ], %) + |> line([ + 0.7451758753425153, + -0.21318737562458967 + ], %) + |> line([ + 0.1873200727251887, + -0.15961374297992448 + ], %) + |> line([ + -0.05729464924537564, + -0.5436345558508746 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + 0.9464450621708211, + -0.2684908127803667 + ], %) + |> line([0.5241732366617591, 0.9011437416408563], %) + |> line([ + -0.14255393713960607, + -0.5194262624564814 + ], %) + |> line([ + -0.4287123231350338, + -0.4223564528725028 + ], %) + |> line([ + -0.09316367294024519, + -0.9063127021008246 + ], %) + |> line([ + -0.2767766535558669, + 0.6816248114129131 + ], %) + |> line([ + 0.9796762495562534, + -0.0822145668330625 + ], %) + |> line([ + -0.8666513070867441, + -0.301053160242023 + ], %) + |> line([ + 0.537415656028112, + 0.020272692875002774 + ], %) + |> line([ + 0.9332396256457531, + -0.6228175690649898 + ], %) + |> line([ + 0.18052415837320734, + -0.36894384647296197 + ], %) + |> line([0.5384372634075449, 0.2377565050887107], %) + |> line([ + 0.39043436929278874, + 0.14273182483160451 + ], %) + |> line([ + 0.09782890412897283, + 0.9907667536909659 + ], %) + |> line([ + 0.5286610085921146, + -0.7924508308419256 + ], %) + |> line([ + 0.3789978184503342, + 0.12396120576838676 + ], %) + |> line([ + -0.9484912744890612, + 0.6729649846476855 + ], %) + |> line([ + 0.7451758753425153, + -0.21318737562458967 + ], %) + |> line([ + 0.1873200727251887, + -0.15961374297992448 + ], %) + |> line([ + -0.05729464924537564, + -0.5436345558508746 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.3670208139314082, + 0.21201331909674526 + ], %) + |> line([ + -0.4707511307971115, + 0.4905279615419764 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([0.8830488380766681, 0.6996724408425232], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + -0.6716353749059765, + -0.9605576808879026 + ], %) + |> line([ + 0.010280170930300203, + -0.37344123662342166 + ], %) + |> line([ + 0.10357375682791004, + -0.42294321030821425 + ], %) + |> line([ + 0.4520311575096987, + -0.11232675307600548 + ], %) + |> line([ + -0.8821185914380845, + -0.7155147434939819 + ], %) + |> line([0.9195487101690416, 0.2691627465297364], %) + |> line([ + 0.7098978191546745, + 0.11710004169385968 + ], %) + |> line([ + -0.37876368560819995, + 0.7106729314759084 + ], %) + |> line([ + -0.29728126898353335, + -0.06649734568328003 + ], %) + |> line([ + 0.22965781558352072, + -0.7601866432836641 + ], %) + |> line([ + -0.6356501074317229, + 0.19458425399338064 + ], %) + |> line([0.5721251777404546, 0.2888584097921527], %) + |> line([ + -0.9580409549552311, + -0.02243818192078395 + ], %) + |> line([ + 0.3299184618602866, + -0.8353726942369875 + ], %) + |> line([ + 0.7434639386755209, + -0.7919648864138378 + ], %) + |> line([0.9935751011164615, 0.9042566468497608], %) + |> line([ + -0.5035812884687294, + 0.5150967434989442 + ], %) + |> line([0.5526227215900215, 0.7612604137272441], %) + |> line([ + 0.8593271349126876, + 0.08414894953725849 + ], %) + |> line([ + -0.8181049219192864, + -0.903548131323352 + ], %) + |> line([ + 0.3165782044458305, + -0.24189274252014914 + ], %) + |> line([ + -0.44390956414045135, + -0.25912591535126905 + ], %) + |> line([ + -0.6605165911891009, + -0.40355115288839194 + ], %) + |> line([ + -0.7170489950180006, + 0.23454356079651384 + ], %) + |> line([ + -0.2568187045379722, + -0.45031188717601367 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + -0.8328324229085962, + 0.4677492878818803 + ], %) + |> line([ + -0.8111463382182231, + -0.41814807547140576 + ], %) + |> line([ + 0.03807684940941125, + 0.25664826686353326 + ], %) + |> line([ + 0.23950083339596384, + 0.43693196301855575 + ], %) + |> line([ + -0.16279444820904887, + 0.8064475707664818 + ], %) + |> line([ + -0.08972872009232558, + -0.08887625823751266 + ], %) + |> line([ + 0.9203433427102556, + -0.17343459369697545 + ], %) + |> line([ + 0.0017496234414517975, + -0.5178508316168335 + ], %) + |> line([ + 0.6206263405732759, + -0.8733399468665124 + ], %) + |> line([ + -0.7776386664456383, + 0.7602780485384968 + ], %) + |> line([0.5439379760788592, 0.8449177589350552], %) + |> line([ + -0.13036646025917076, + 0.012051713627069693 + ], %) + |> line([ + -0.1656465612645519, + -0.20775229173765486 + ], %) + |> line([ + -0.0962723255929061, + -0.05417797659066137 + ], %) + |> line([0.902108945498191, 0.3958978534964961], %) + |> line([ + 0.27997950083139167, + -0.17778188444008958 + ], %) + |> line([0.5235806061589545, 0.694318985642328], %) + |> line([ + 0.39140760219992154, + -0.7839795272576484 + ], %) + |> line([0.8414243527073519, 0.5395591528940082], %) + |> line([ + 0.6137667704875602, + 0.22119647516722085 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.41290485754343953, + -0.4152647361760933 + ], %) + |> line([ + 0.5169538755575687, + -0.9085567867302617 + ], %) + |> line([ + 0.6751951211858687, + -0.9709424233465593 + ], %) + |> line([ + -0.5689619842972184, + 0.5918969913790362 + ], %) + |> line([ + 0.9464450621708211, + -0.2684908127803667 + ], %) + |> line([0.5241732366617591, 0.9011437416408563], %) + |> line([ + -0.14255393713960607, + -0.5194262624564814 + ], %) + |> line([ + -0.4287123231350338, + -0.4223564528725028 + ], %) + |> line([ + -0.09316367294024519, + -0.9063127021008246 + ], %) + |> line([ + -0.2767766535558669, + 0.6816248114129131 + ], %) + |> line([ + 0.9796762495562534, + -0.0822145668330625 + ], %) + |> line([ + -0.8666513070867441, + -0.301053160242023 + ], %) + |> line([ + 0.537415656028112, + 0.020272692875002774 + ], %) + |> line([ + 0.9332396256457531, + -0.6228175690649898 + ], %) + |> line([ + 0.18052415837320734, + -0.36894384647296197 + ], %) + |> line([0.5384372634075449, 0.2377565050887107], %) + |> line([ + 0.39043436929278874, + 0.14273182483160451 + ], %) + |> line([ + 0.09782890412897283, + 0.9907667536909659 + ], %) + |> line([ + 0.5286610085921146, + -0.7924508308419256 + ], %) + |> line([ + 0.3789978184503342, + 0.12396120576838676 + ], %) + |> line([ + -0.9484912744890612, + 0.6729649846476855 + ], %) + |> line([ + 0.7451758753425153, + -0.21318737562458967 + ], %) + |> line([ + 0.1873200727251887, + -0.15961374297992448 + ], %) + |> line([ + -0.05729464924537564, + -0.5436345558508746 + ], %) + |> line([ + -0.09582414374469184, + -0.7533839681212353 + ], %) + |> line([ + -0.17254116580051848, + -0.7669113400341137 + ], %) + |> line([0.8944730032887609, 0.6093318694741408], %) + |> line([ + -0.6238548626325471, + 0.4053626746020169 + ], %) + |> line([ + 0.1379445992766417, + -0.47871087958516045 + ], %) + |> line([ + -0.9516767113283946, + 0.8619900618578948 + ], %) + |> line([0.9398732950992088, 0.6326239915683629], %) + |> line([ + -0.8631974445502164, + 0.016153555523963137 + ], %) + |> line([ + 0.19167797120152907, + -0.4916414381703984 + ], %) + |> line([ + -0.8644261221501586, + -0.11434763886359756 + ], %) + |> line([ + -0.029081958413378572, + -0.5214138808318329 + ], %) + |> line([ + -0.8713091851579695, + 0.7866284950967315 + ], %) + |> line([0.884342023093545, -0.1825407002568431], %) + |> line([ + -0.6978385295364686, + 0.0440574328736949 + ], %) + |> line([ + -0.48055049324331556, + -0.028546347149214002 + ], %) + |> line([ + 0.41283517382864776, + -0.44938038251347323 + ], %) + |> line([0.7911399832501751, 0.893446368526005], %) + |> line([ + 0.6507434699009087, + -0.6890023920962012 + ], %) + |> line([ + 0.10489019777253028, + -0.5467450997193952 + ], %) + |> line([ + -0.5760905289992633, + -0.2639900702114173 + ], %) + |> line([ + 0.39828861790105297, + 0.8036624129416385 + ], %) + |> line([-0.673848991328553, -0.918443329270668], %) + |> line([ + -0.8599152936179257, + -0.9499371022680787 + ], %) + |> line([ + 0.6285243831393765, + -0.5186557636566307 + ], %) + |> line([ + 0.3222412784832269, + 0.24621192679727177 + ], %) + |> line([ + 0.19754357911311016, + -0.7529246632397206 + ], %) + |> line([ + -0.43181570545865555, + 0.18945437402201537 + ], %) + |> line([ + 0.8714511090241797, + -0.7215844196844685 + ], %) + |> close(%) + |> extrude(5, %) 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 new file mode 100644 index 000000000..b3f22ceb5 --- /dev/null +++ b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap @@ -0,0 +1,31146 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing mike_stress_test.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70, + 142, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 148, + 219, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 225, + 296, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 302, + 375, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 381, + 453, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 459, + 531, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 537, + 609, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 615, + 689, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 695, + 767, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 773, + 847, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 853, + 924, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 930, + 1001, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1007, + 1056, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1062, + 1136, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1142, + 1215, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1221, + 1294, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1300, + 1348, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1354, + 1427, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1433, + 1481, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1487, + 1559, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1565, + 1614, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1620, + 1691, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1697, + 1746, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1752, + 1825, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1831, + 1902, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1908, + 1980, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1986, + 2060, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2066, + 2139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2145, + 2217, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2223, + 2295, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2301, + 2350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2356, + 2427, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2433, + 2505, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2511, + 2585, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2591, + 2663, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2669, + 2741, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2747, + 2796, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2802, + 2875, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2881, + 2952, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2958, + 3029, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3035, + 3084, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3090, + 3161, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3167, + 3216, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3222, + 3293, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3299, + 3370, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3376, + 3448, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3454, + 3528, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3534, + 3607, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3613, + 3685, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3691, + 3764, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3770, + 3841, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3847, + 3918, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3924, + 3995, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4001, + 4074, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4080, + 4152, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4158, + 4230, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4236, + 4308, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4314, + 4388, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4394, + 4466, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4472, + 4546, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4552, + 4623, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4629, + 4700, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4706, + 4755, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4761, + 4835, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4841, + 4914, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4920, + 4993, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4999, + 5047, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5053, + 5126, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5132, + 5180, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5186, + 5258, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5264, + 5313, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5319, + 5390, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5396, + 5445, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5451, + 5524, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5530, + 5601, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5607, + 5678, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5684, + 5755, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5761, + 5832, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5838, + 5887, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5893, + 5966, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5972, + 6044, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6050, + 6123, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6129, + 6200, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6206, + 6277, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6283, + 6354, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6360, + 6431, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6437, + 6508, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6514, + 6587, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6593, + 6642, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6648, + 6720, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6726, + 6797, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6803, + 6874, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6880, + 6951, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6957, + 7028, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7034, + 7106, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7112, + 7184, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7190, + 7263, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7269, + 7342, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7348, + 7421, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7427, + 7476, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7482, + 7554, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7560, + 7631, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7637, + 7708, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7714, + 7787, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7793, + 7865, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7871, + 7943, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7949, + 8021, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8027, + 8101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8107, + 8179, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8185, + 8259, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8265, + 8336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8342, + 8413, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8419, + 8468, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8474, + 8548, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8554, + 8627, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8633, + 8706, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8712, + 8760, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8766, + 8839, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8845, + 8893, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8899, + 8971, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8977, + 9026, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9032, + 9103, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9109, + 9158, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9164, + 9237, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9243, + 9314, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9320, + 9392, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9398, + 9472, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9478, + 9551, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9557, + 9629, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9635, + 9707, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9713, + 9762, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9768, + 9839, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9845, + 9917, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9923, + 9997, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10003, + 10075, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10081, + 10153, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10159, + 10208, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10214, + 10287, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10293, + 10364, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10370, + 10441, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10447, + 10496, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10502, + 10573, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10579, + 10628, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10634, + 10705, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10711, + 10782, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10788, + 10860, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10866, + 10940, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10946, + 11019, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11025, + 11097, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11103, + 11176, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11182, + 11253, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11259, + 11330, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11336, + 11407, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11413, + 11486, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11492, + 11564, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11570, + 11642, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11648, + 11720, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11726, + 11800, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11806, + 11878, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11884, + 11958, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11964, + 12035, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12041, + 12112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12118, + 12167, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12173, + 12247, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12253, + 12326, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12332, + 12405, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12411, + 12459, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12465, + 12538, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12544, + 12592, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12598, + 12670, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12676, + 12725, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12731, + 12802, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12808, + 12857, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12863, + 12935, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12941, + 13012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13018, + 13089, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13095, + 13168, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13174, + 13246, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13252, + 13324, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13330, + 13402, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13408, + 13482, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13488, + 13560, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13566, + 13640, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13646, + 13717, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13723, + 13794, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13800, + 13849, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13855, + 13929, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13935, + 14008, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14014, + 14087, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14093, + 14141, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14147, + 14220, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14226, + 14274, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14280, + 14352, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14358, + 14407, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14413, + 14484, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14490, + 14539, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14545, + 14618, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14624, + 14695, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14701, + 14773, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14779, + 14853, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14859, + 14931, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14937, + 15008, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15014, + 15085, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15091, + 15164, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15170, + 15242, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15248, + 15320, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15326, + 15398, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15404, + 15478, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15484, + 15556, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15562, + 15636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15642, + 15713, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15719, + 15790, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15796, + 15845, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15851, + 15925, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15931, + 16004, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16010, + 16083, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16089, + 16137, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16143, + 16216, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16222, + 16270, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16276, + 16348, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16354, + 16403, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16409, + 16480, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16486, + 16535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16541, + 16614, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16620, + 16691, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16697, + 16769, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16775, + 16849, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16855, + 16928, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16934, + 17006, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17012, + 17084, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17090, + 17139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17145, + 17216, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17222, + 17294, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17300, + 17374, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17380, + 17452, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17458, + 17530, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17536, + 17585, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17591, + 17664, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17670, + 17741, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17747, + 17818, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17824, + 17873, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17879, + 17950, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17956, + 18005, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18011, + 18082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18088, + 18159, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18165, + 18237, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18243, + 18317, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18323, + 18396, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18402, + 18474, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18480, + 18553, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18559, + 18630, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18636, + 18707, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18713, + 18784, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18790, + 18863, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18869, + 18941, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18947, + 19019, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19025, + 19097, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19103, + 19177, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19183, + 19255, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19261, + 19335, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19341, + 19412, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19418, + 19489, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19495, + 19544, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19550, + 19624, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19630, + 19703, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19709, + 19782, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19788, + 19836, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19842, + 19915, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19921, + 19969, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19975, + 20047, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20053, + 20102, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20108, + 20179, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20185, + 20234, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20240, + 20313, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20319, + 20390, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20396, + 20467, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20473, + 20544, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20550, + 20621, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20627, + 20676, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20682, + 20755, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20761, + 20833, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20839, + 20912, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20918, + 20989, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20995, + 21066, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21072, + 21143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21149, + 21220, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21226, + 21297, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21303, + 21376, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21382, + 21431, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21437, + 21509, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21515, + 21586, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21592, + 21663, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21669, + 21740, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21746, + 21817, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21823, + 21895, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21901, + 21973, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21979, + 22052, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22058, + 22131, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22137, + 22210, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22216, + 22265, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22271, + 22343, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22349, + 22420, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22426, + 22497, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22503, + 22576, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22582, + 22654, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22660, + 22732, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22738, + 22810, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22816, + 22890, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22896, + 22968, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22974, + 23048, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23054, + 23125, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23131, + 23202, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23208, + 23257, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23263, + 23337, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23343, + 23416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23422, + 23495, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23501, + 23549, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23555, + 23628, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23634, + 23682, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23688, + 23760, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23766, + 23815, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23821, + 23892, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23898, + 23947, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23953, + 24026, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24032, + 24103, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24109, + 24181, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24187, + 24261, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24267, + 24340, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24346, + 24418, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24424, + 24496, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24502, + 24551, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24557, + 24628, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24634, + 24706, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24712, + 24786, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24792, + 24864, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24870, + 24942, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24948, + 24997, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25003, + 25076, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25082, + 25153, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25159, + 25230, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25236, + 25285, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25291, + 25362, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25368, + 25417, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25423, + 25494, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25500, + 25571, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25577, + 25649, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25655, + 25729, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25735, + 25808, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25814, + 25886, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25892, + 25965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25971, + 26042, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26048, + 26119, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26125, + 26196, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26202, + 26275, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26281, + 26353, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26359, + 26431, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26437, + 26509, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26515, + 26589, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26595, + 26667, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26673, + 26747, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26753, + 26824, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26830, + 26901, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26907, + 26956, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26962, + 27036, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27042, + 27115, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27121, + 27194, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27200, + 27248, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27254, + 27327, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27333, + 27381, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27387, + 27459, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27465, + 27514, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27520, + 27591, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27597, + 27646, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27652, + 27724, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27730, + 27801, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27807, + 27878, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27884, + 27957, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27963, + 28035, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28041, + 28113, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28119, + 28191, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28197, + 28271, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28277, + 28349, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28355, + 28429, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28435, + 28506, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28512, + 28583, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28589, + 28638, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28644, + 28718, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28724, + 28797, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28803, + 28876, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28882, + 28930, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28936, + 29009, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29015, + 29063, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29069, + 29141, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29147, + 29196, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29202, + 29273, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29279, + 29328, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29334, + 29407, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29413, + 29484, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29490, + 29562, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29568, + 29642, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29648, + 29721, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29727, + 29799, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29805, + 29877, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29883, + 29932, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29938, + 30009, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30015, + 30087, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30093, + 30167, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30173, + 30245, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30251, + 30323, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30329, + 30378, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30384, + 30457, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30463, + 30534, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30540, + 30611, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30617, + 30666, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30672, + 30743, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30749, + 30798, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30804, + 30875, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30881, + 30952, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30958, + 31030, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31036, + 31110, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31116, + 31189, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31195, + 31267, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31273, + 31346, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31352, + 31423, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31429, + 31500, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31506, + 31577, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31583, + 31656, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31662, + 31734, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31740, + 31812, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31818, + 31890, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31896, + 31970, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31976, + 32048, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32054, + 32128, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32134, + 32205, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32211, + 32282, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32288, + 32337, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32343, + 32417, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32423, + 32496, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32502, + 32575, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32581, + 32629, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32635, + 32708, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32714, + 32762, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32768, + 32840, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32846, + 32895, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32901, + 32972, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32978, + 33051, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33057, + 33130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33136, + 33185, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33191, + 33264, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33270, + 33341, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33347, + 33418, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33424, + 33495, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33501, + 33572, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33578, + 33627, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33633, + 33706, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33712, + 33784, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33790, + 33863, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33869, + 33940, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33946, + 34017, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34023, + 34094, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34100, + 34171, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34177, + 34248, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34254, + 34327, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34333, + 34382, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34388, + 34460, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34466, + 34537, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34543, + 34614, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34620, + 34691, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34697, + 34768, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34774, + 34846, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34852, + 34924, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34930, + 35003, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35009, + 35082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35088, + 35161, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35167, + 35216, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35222, + 35293, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35299, + 35371, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35377, + 35448, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35454, + 35503, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35509, + 35582, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35588, + 35660, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35666, + 35739, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35745, + 35819, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35825, + 35896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35902, + 35951, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35957, + 36028, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36034, + 36109, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36115, + 36188, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36194, + 36242, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36248, + 36319, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36325, + 36397, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36403, + 36475, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36481, + 36552, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36558, + 36607, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36613, + 36685, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36691, + 36762, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36768, + 36839, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36845, + 36917, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36923, + 36996, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37002, + 37073, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37079, + 37151, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37157, + 37228, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37234, + 37305, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37311, + 37384, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37390, + 37462, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37468, + 37540, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37546, + 37618, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37624, + 37698, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37704, + 37776, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37782, + 37856, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37862, + 37933, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37939, + 38010, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38016, + 38065, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38071, + 38145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38151, + 38224, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38230, + 38303, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38309, + 38357, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38363, + 38436, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38442, + 38490, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38496, + 38568, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38574, + 38623, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38629, + 38700, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38706, + 38755, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38761, + 38834, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38840, + 38911, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38917, + 38989, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38995, + 39069, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39075, + 39148, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39154, + 39226, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39232, + 39304, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39310, + 39359, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39365, + 39436, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39442, + 39514, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39520, + 39594, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39600, + 39672, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39678, + 39750, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39756, + 39805, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39811, + 39884, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39890, + 39961, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39967, + 40038, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40044, + 40093, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40099, + 40170, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40176, + 40225, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40231, + 40302, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40308, + 40379, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40385, + 40457, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40463, + 40537, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40543, + 40616, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40622, + 40694, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40700, + 40773, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40779, + 40850, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40856, + 40927, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40933, + 41004, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41010, + 41083, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41089, + 41161, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41167, + 41239, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41245, + 41317, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41323, + 41397, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41403, + 41475, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41481, + 41555, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41561, + 41632, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41638, + 41709, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41715, + 41764, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41770, + 41844, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41850, + 41923, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41929, + 42002, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42008, + 42056, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42062, + 42135, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42141, + 42189, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42195, + 42267, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42273, + 42322, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42328, + 42399, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42405, + 42454, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42460, + 42533, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42539, + 42610, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42616, + 42687, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42693, + 42764, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42770, + 42841, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42847, + 42896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42902, + 42975, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42981, + 43053, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43059, + 43132, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43138, + 43209, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43215, + 43286, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43292, + 43363, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43369, + 43440, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43446, + 43517, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43523, + 43596, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43602, + 43651, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43657, + 43729, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43735, + 43806, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43812, + 43883, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43889, + 43960, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43966, + 44037, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44043, + 44115, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44121, + 44193, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44199, + 44272, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44278, + 44351, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44357, + 44430, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44436, + 44485, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44491, + 44563, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44569, + 44640, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44646, + 44717, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44723, + 44796, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44802, + 44874, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44880, + 44952, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44958, + 45030, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45036, + 45110, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45116, + 45188, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45194, + 45268, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45274, + 45345, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45351, + 45422, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45428, + 45477, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45483, + 45557, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45563, + 45636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45642, + 45715, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45721, + 45769, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45775, + 45848, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45854, + 45902, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45908, + 45980, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45986, + 46035, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46041, + 46112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46118, + 46167, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46173, + 46246, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46252, + 46323, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46329, + 46401, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46407, + 46481, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46487, + 46560, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46566, + 46638, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46644, + 46716, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46722, + 46771, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46777, + 46848, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46854, + 46926, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46932, + 47006, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47012, + 47084, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47090, + 47162, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47168, + 47217, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47223, + 47296, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47302, + 47373, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47379, + 47450, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47456, + 47505, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47511, + 47582, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47588, + 47637, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47643, + 47714, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47720, + 47791, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47797, + 47869, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47875, + 47949, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47955, + 48028, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48034, + 48106, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48112, + 48185, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48191, + 48262, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48268, + 48339, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48345, + 48416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48422, + 48495, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48501, + 48573, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48579, + 48651, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48657, + 48729, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48735, + 48809, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48815, + 48887, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48893, + 48967, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48973, + 49044, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49050, + 49121, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49127, + 49176, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49182, + 49256, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49262, + 49335, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49341, + 49414, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49420, + 49468, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49474, + 49547, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49553, + 49601, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49607, + 49679, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49685, + 49734, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49740, + 49811, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49817, + 49866, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49872, + 49944, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49950, + 50021, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50027, + 50098, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50104, + 50177, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50183, + 50255, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50261, + 50333, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50339, + 50411, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50417, + 50491, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50497, + 50569, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50575, + 50649, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50655, + 50726, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50732, + 50803, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50809, + 50858, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50864, + 50938, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50944, + 51017, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51023, + 51096, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51102, + 51150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51156, + 51229, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51235, + 51283, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51289, + 51361, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51367, + 51416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51422, + 51493, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51499, + 51548, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51554, + 51627, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51633, + 51704, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51710, + 51782, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51788, + 51862, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51868, + 51940, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51946, + 52017, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52023, + 52094, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52100, + 52173, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52179, + 52251, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52257, + 52329, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52335, + 52407, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52413, + 52487, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52493, + 52565, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52571, + 52645, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52651, + 52722, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52728, + 52799, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52805, + 52854, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52860, + 52934, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52940, + 53013, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53019, + 53092, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53098, + 53146, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53152, + 53225, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53231, + 53279, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53285, + 53357, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53363, + 53412, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53418, + 53489, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53495, + 53544, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53550, + 53623, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53629, + 53700, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53706, + 53778, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53784, + 53858, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53864, + 53937, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53943, + 54015, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54021, + 54093, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54099, + 54148, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54154, + 54225, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54231, + 54303, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54309, + 54383, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54389, + 54461, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54467, + 54539, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54545, + 54594, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54600, + 54673, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54679, + 54750, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54756, + 54827, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54833, + 54882, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54888, + 54959, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54965, + 55014, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55020, + 55091, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55097, + 55168, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55174, + 55246, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55252, + 55326, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55332, + 55405, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55411, + 55483, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55489, + 55562, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55568, + 55639, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55645, + 55716, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55722, + 55793, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55799, + 55872, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55878, + 55950, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55956, + 56028, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56034, + 56106, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56112, + 56186, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56192, + 56264, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56270, + 56344, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56350, + 56421, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56427, + 56498, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56504, + 56553, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56559, + 56633, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56639, + 56712, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56718, + 56791, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56797, + 56845, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56851, + 56924, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56930, + 56978, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56984, + 57056, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57062, + 57111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57117, + 57188, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57194, + 57243, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57249, + 57322, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57328, + 57399, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57405, + 57476, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57482, + 57553, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57559, + 57630, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57636, + 57685, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57691, + 57764, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57770, + 57842, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57848, + 57921, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57927, + 57998, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58004, + 58075, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58081, + 58152, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58158, + 58229, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58235, + 58306, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58312, + 58385, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58391, + 58440, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58446, + 58518, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58524, + 58595, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58601, + 58672, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58678, + 58749, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58755, + 58826, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58832, + 58904, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58910, + 58982, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58988, + 59061, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59067, + 59140, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59146, + 59219, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59225, + 59274, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59280, + 59352, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59358, + 59429, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59435, + 59506, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59512, + 59585, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59591, + 59663, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59669, + 59741, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59747, + 59819, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59825, + 59899, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59905, + 59977, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59983, + 60057, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60063, + 60134, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60140, + 60211, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60217, + 60266, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60272, + 60346, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60352, + 60425, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60431, + 60504, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60510, + 60558, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60564, + 60637, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60643, + 60691, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60697, + 60769, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60775, + 60824, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60830, + 60901, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60907, + 60956, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60962, + 61035, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61041, + 61112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61118, + 61190, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61196, + 61270, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61276, + 61349, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61355, + 61427, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61433, + 61505, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61511, + 61560, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61566, + 61637, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61643, + 61715, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61721, + 61795, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61801, + 61873, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61879, + 61951, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61957, + 62006, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62012, + 62085, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62091, + 62162, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62168, + 62239, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62245, + 62294, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62300, + 62371, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62377, + 62426, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62432, + 62503, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62509, + 62580, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62586, + 62658, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62664, + 62738, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62744, + 62817, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62823, + 62895, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62901, + 62974, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62980, + 63051, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63057, + 63128, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63134, + 63205, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63211, + 63284, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63290, + 63362, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63368, + 63440, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63446, + 63518, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63524, + 63598, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63604, + 63676, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63682, + 63756, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63762, + 63833, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63839, + 63910, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63916, + 63965, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63971, + 64045, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64051, + 64124, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64130, + 64203, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64209, + 64257, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64263, + 64336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64342, + 64390, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64396, + 64468, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64474, + 64523, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64529, + 64600, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64606, + 64655, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64661, + 64733, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64739, + 64810, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64816, + 64887, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64893, + 64966, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64972, + 65044, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65050, + 65122, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65128, + 65200, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65206, + 65280, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65286, + 65358, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65364, + 65438, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65444, + 65515, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65521, + 65592, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65598, + 65647, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65653, + 65727, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65733, + 65806, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65812, + 65885, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65891, + 65939, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65945, + 66018, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66024, + 66072, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66078, + 66150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66156, + 66205, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66211, + 66282, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66288, + 66337, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66343, + 66416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66422, + 66493, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66499, + 66571, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66577, + 66651, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66657, + 66730, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66736, + 66808, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66814, + 66886, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66892, + 66941, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66947, + 67018, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67024, + 67096, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67102, + 67176, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67182, + 67254, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67260, + 67332, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67338, + 67387, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67393, + 67466, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67472, + 67543, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67549, + 67620, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67626, + 67675, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67681, + 67752, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67758, + 67807, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67813, + 67884, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67890, + 67961, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67967, + 68039, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68045, + 68119, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68125, + 68198, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68204, + 68276, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68282, + 68355, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68361, + 68432, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68438, + 68509, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68515, + 68586, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68592, + 68665, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68671, + 68743, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68749, + 68821, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68827, + 68899, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68905, + 68979, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68985, + 69057, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69063, + 69137, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69143, + 69214, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69220, + 69291, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69297, + 69346, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69352, + 69426, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69432, + 69505, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69511, + 69584, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69590, + 69638, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69644, + 69717, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69723, + 69771, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69777, + 69849, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69855, + 69904, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69910, + 69981, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69987, + 70060, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70066, + 70139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70145, + 70194, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70200, + 70273, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70279, + 70350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70356, + 70427, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70433, + 70504, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70510, + 70581, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70587, + 70636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70642, + 70715, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70721, + 70793, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70799, + 70872, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70878, + 70949, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70955, + 71026, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71032, + 71103, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71109, + 71180, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71186, + 71257, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71263, + 71336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71342, + 71391, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71397, + 71469, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71475, + 71546, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71552, + 71623, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71629, + 71700, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71706, + 71777, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71783, + 71855, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71861, + 71933, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71939, + 72012, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72018, + 72091, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72097, + 72170, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72176, + 72225, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72231, + 72302, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72308, + 72380, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72386, + 72457, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72463, + 72512, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72518, + 72591, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72597, + 72669, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72675, + 72748, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72754, + 72828, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72834, + 72905, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72911, + 72960, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72966, + 73037, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73043, + 73118, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73124, + 73197, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73203, + 73251, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73257, + 73328, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73334, + 73406, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73412, + 73484, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73490, + 73561, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73567, + 73616, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73622, + 73694, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73700, + 73771, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73777, + 73848, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73854, + 73926, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73932, + 74005, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74011, + 74082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74088, + 74096, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70, + 142, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + -0.367, + 0.212 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 148, + 219, + 0 + ] + }, + "from": [ + -0.367, + 0.212 + ], + "tag": null, + "to": [ + -0.8378, + 0.7025 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 225, + 296, + 0 + ] + }, + "from": [ + -0.8378, + 0.7025 + ], + "tag": null, + "to": [ + -1.6706, + 1.1703 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 302, + 375, + 0 + ] + }, + "from": [ + -1.6706, + 1.1703 + ], + "tag": null, + "to": [ + -2.4818, + 0.7521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 381, + 453, + 0 + ] + }, + "from": [ + -2.4818, + 0.7521 + ], + "tag": null, + "to": [ + -2.4437, + 1.0088 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 459, + 531, + 0 + ] + }, + "from": [ + -2.4437, + 1.0088 + ], + "tag": null, + "to": [ + -2.2042, + 1.4457 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 537, + 609, + 0 + ] + }, + "from": [ + -2.2042, + 1.4457 + ], + "tag": null, + "to": [ + -2.367, + 2.2522 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 615, + 689, + 0 + ] + }, + "from": [ + -2.367, + 2.2522 + ], + "tag": null, + "to": [ + -2.4567, + 2.1633 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 695, + 767, + 0 + ] + }, + "from": [ + -2.4567, + 2.1633 + ], + "tag": null, + "to": [ + -1.5364, + 1.9899 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 773, + 847, + 0 + ] + }, + "from": [ + -1.5364, + 1.9899 + ], + "tag": null, + "to": [ + -1.5346, + 1.472 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 853, + 924, + 0 + ] + }, + "from": [ + -1.5346, + 1.472 + ], + "tag": null, + "to": [ + -0.914, + 0.5987 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 930, + 1001, + 0 + ] + }, + "from": [ + -0.914, + 0.5987 + ], + "tag": null, + "to": [ + -1.6916, + 1.3589 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1007, + 1056, + 0 + ] + }, + "from": [ + -1.6916, + 1.3589 + ], + "tag": null, + "to": [ + -1.1477, + 2.2039 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1062, + 1136, + 0 + ] + }, + "from": [ + -1.1477, + 2.2039 + ], + "tag": null, + "to": [ + -1.278, + 2.2159 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1142, + 1215, + 0 + ] + }, + "from": [ + -1.278, + 2.2159 + ], + "tag": null, + "to": [ + -1.4437, + 2.0082 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1221, + 1294, + 0 + ] + }, + "from": [ + -1.4437, + 2.0082 + ], + "tag": null, + "to": [ + -1.54, + 1.954 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1300, + 1348, + 0 + ] + }, + "from": [ + -1.54, + 1.954 + ], + "tag": null, + "to": [ + -0.6379, + 2.3499 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1354, + 1427, + 0 + ] + }, + "from": [ + -0.6379, + 2.3499 + ], + "tag": null, + "to": [ + -0.3579, + 2.1721 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1433, + 1481, + 0 + ] + }, + "from": [ + -0.3579, + 2.1721 + ], + "tag": null, + "to": [ + 0.1657, + 2.8664 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1487, + 1559, + 0 + ] + }, + "from": [ + 0.1657, + 2.8664 + ], + "tag": null, + "to": [ + 0.5571, + 2.0824 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1565, + 1614, + 0 + ] + }, + "from": [ + 0.5571, + 2.0824 + ], + "tag": null, + "to": [ + 1.3985, + 2.622 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1620, + 1691, + 0 + ] + }, + "from": [ + 1.3985, + 2.622 + ], + "tag": null, + "to": [ + 2.0123, + 2.8432 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1697, + 1746, + 0 + ] + }, + "from": [ + 2.0123, + 2.8432 + ], + "tag": null, + "to": [ + 2.8954, + 3.5429 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1752, + 1825, + 0 + ] + }, + "from": [ + 2.8954, + 3.5429 + ], + "tag": null, + "to": [ + 2.4824, + 3.1276 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1831, + 1902, + 0 + ] + }, + "from": [ + 2.4824, + 3.1276 + ], + "tag": null, + "to": [ + 2.9994, + 2.219 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1908, + 1980, + 0 + ] + }, + "from": [ + 2.9994, + 2.219 + ], + "tag": null, + "to": [ + 2.3278, + 1.2585 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1986, + 2060, + 0 + ] + }, + "from": [ + 2.3278, + 1.2585 + ], + "tag": null, + "to": [ + 2.338, + 0.885 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2066, + 2139, + 0 + ] + }, + "from": [ + 2.338, + 0.885 + ], + "tag": null, + "to": [ + 2.4416, + 0.4621 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2145, + 2217, + 0 + ] + }, + "from": [ + 2.4416, + 0.4621 + ], + "tag": null, + "to": [ + 2.8937, + 0.3498 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2223, + 2295, + 0 + ] + }, + "from": [ + 2.8937, + 0.3498 + ], + "tag": null, + "to": [ + 2.0115, + -0.3657 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2301, + 2350, + 0 + ] + }, + "from": [ + 2.0115, + -0.3657 + ], + "tag": null, + "to": [ + 2.9311, + -0.0966 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2356, + 2427, + 0 + ] + }, + "from": [ + 2.9311, + -0.0966 + ], + "tag": null, + "to": [ + 3.641, + 0.0205 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2433, + 2505, + 0 + ] + }, + "from": [ + 3.641, + 0.0205 + ], + "tag": null, + "to": [ + 3.2622, + 0.7312 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2511, + 2585, + 0 + ] + }, + "from": [ + 3.2622, + 0.7312 + ], + "tag": null, + "to": [ + 2.9649, + 0.6647 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2591, + 2663, + 0 + ] + }, + "from": [ + 2.9649, + 0.6647 + ], + "tag": null, + "to": [ + 3.1946, + -0.0955 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2669, + 2741, + 0 + ] + }, + "from": [ + 3.1946, + -0.0955 + ], + "tag": null, + "to": [ + 2.5589, + 0.0991 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2747, + 2796, + 0 + ] + }, + "from": [ + 2.5589, + 0.0991 + ], + "tag": null, + "to": [ + 3.1311, + 0.388 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2802, + 2875, + 0 + ] + }, + "from": [ + 3.1311, + 0.388 + ], + "tag": null, + "to": [ + 2.173, + 0.3655 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2881, + 2952, + 0 + ] + }, + "from": [ + 2.173, + 0.3655 + ], + "tag": null, + "to": [ + 2.5029, + -0.4699 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2958, + 3029, + 0 + ] + }, + "from": [ + 2.5029, + -0.4699 + ], + "tag": null, + "to": [ + 3.2464, + -1.2618 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3035, + 3084, + 0 + ] + }, + "from": [ + 3.2464, + -1.2618 + ], + "tag": null, + "to": [ + 4.24, + -0.3576 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3090, + 3161, + 0 + ] + }, + "from": [ + 4.24, + -0.3576 + ], + "tag": null, + "to": [ + 3.7364, + 0.1575 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3167, + 3216, + 0 + ] + }, + "from": [ + 3.7364, + 0.1575 + ], + "tag": null, + "to": [ + 4.289, + 0.9188 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3222, + 3293, + 0 + ] + }, + "from": [ + 4.289, + 0.9188 + ], + "tag": null, + "to": [ + 5.1484, + 1.0029 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3299, + 3370, + 0 + ] + }, + "from": [ + 5.1484, + 1.0029 + ], + "tag": null, + "to": [ + 4.3302, + 0.0994 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3376, + 3448, + 0 + ] + }, + "from": [ + 4.3302, + 0.0994 + ], + "tag": null, + "to": [ + 4.6468, + -0.1425 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3454, + 3528, + 0 + ] + }, + "from": [ + 4.6468, + -0.1425 + ], + "tag": null, + "to": [ + 4.2029, + -0.4016 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3534, + 3607, + 0 + ] + }, + "from": [ + 4.2029, + -0.4016 + ], + "tag": null, + "to": [ + 3.5424, + -0.8052 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3613, + 3685, + 0 + ] + }, + "from": [ + 3.5424, + -0.8052 + ], + "tag": null, + "to": [ + 2.8254, + -0.5706 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3691, + 3764, + 0 + ] + }, + "from": [ + 2.8254, + -0.5706 + ], + "tag": null, + "to": [ + 2.5685, + -1.0209 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3770, + 3841, + 0 + ] + }, + "from": [ + 2.5685, + -1.0209 + ], + "tag": null, + "to": [ + 3.2437, + -1.9919 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3847, + 3918, + 0 + ] + }, + "from": [ + 3.2437, + -1.9919 + ], + "tag": null, + "to": [ + 2.6748, + -1.4 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3924, + 3995, + 0 + ] + }, + "from": [ + 2.6748, + -1.4 + ], + "tag": null, + "to": [ + 1.8419, + -0.9322 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4001, + 4074, + 0 + ] + }, + "from": [ + 1.8419, + -0.9322 + ], + "tag": null, + "to": [ + 1.0308, + -1.3504 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4080, + 4152, + 0 + ] + }, + "from": [ + 1.0308, + -1.3504 + ], + "tag": null, + "to": [ + 1.0689, + -1.0937 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4158, + 4230, + 0 + ] + }, + "from": [ + 1.0689, + -1.0937 + ], + "tag": null, + "to": [ + 1.3084, + -0.6568 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4236, + 4308, + 0 + ] + }, + "from": [ + 1.3084, + -0.6568 + ], + "tag": null, + "to": [ + 1.1456, + 0.1496 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4314, + 4388, + 0 + ] + }, + "from": [ + 1.1456, + 0.1496 + ], + "tag": null, + "to": [ + 1.0558, + 0.0608 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4394, + 4466, + 0 + ] + }, + "from": [ + 1.0558, + 0.0608 + ], + "tag": null, + "to": [ + 1.9762, + -0.1127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4472, + 4546, + 0 + ] + }, + "from": [ + 1.9762, + -0.1127 + ], + "tag": null, + "to": [ + 1.9779, + -0.6305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4552, + 4623, + 0 + ] + }, + "from": [ + 1.9779, + -0.6305 + ], + "tag": null, + "to": [ + 2.5986, + -1.5039 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4629, + 4700, + 0 + ] + }, + "from": [ + 2.5986, + -1.5039 + ], + "tag": null, + "to": [ + 1.8209, + -0.7436 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4706, + 4755, + 0 + ] + }, + "from": [ + 1.8209, + -0.7436 + ], + "tag": null, + "to": [ + 2.3649, + 0.1013 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4761, + 4835, + 0 + ] + }, + "from": [ + 2.3649, + 0.1013 + ], + "tag": null, + "to": [ + 2.2345, + 0.1134 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4841, + 4914, + 0 + ] + }, + "from": [ + 2.2345, + 0.1134 + ], + "tag": null, + "to": [ + 2.0688, + -0.0944 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4920, + 4993, + 0 + ] + }, + "from": [ + 2.0688, + -0.0944 + ], + "tag": null, + "to": [ + 1.9726, + -0.1485 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4999, + 5047, + 0 + ] + }, + "from": [ + 1.9726, + -0.1485 + ], + "tag": null, + "to": [ + 2.8747, + 0.2474 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5053, + 5126, + 0 + ] + }, + "from": [ + 2.8747, + 0.2474 + ], + "tag": null, + "to": [ + 3.1547, + 0.0696 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5132, + 5180, + 0 + ] + }, + "from": [ + 3.1547, + 0.0696 + ], + "tag": null, + "to": [ + 3.6782, + 0.7639 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5186, + 5258, + 0 + ] + }, + "from": [ + 3.6782, + 0.7639 + ], + "tag": null, + "to": [ + 4.0697, + -0.0201 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5264, + 5313, + 0 + ] + }, + "from": [ + 4.0697, + -0.0201 + ], + "tag": null, + "to": [ + 4.9111, + 0.5195 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5319, + 5390, + 0 + ] + }, + "from": [ + 4.9111, + 0.5195 + ], + "tag": null, + "to": [ + 5.5248, + 0.7407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5396, + 5445, + 0 + ] + }, + "from": [ + 5.5248, + 0.7407 + ], + "tag": null, + "to": [ + 6.4079, + 1.4403 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5451, + 5524, + 0 + ] + }, + "from": [ + 6.4079, + 1.4403 + ], + "tag": null, + "to": [ + 5.995, + 1.0251 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5530, + 5601, + 0 + ] + }, + "from": [ + 5.995, + 1.0251 + ], + "tag": null, + "to": [ + 6.5119, + 0.1165 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5607, + 5678, + 0 + ] + }, + "from": [ + 6.5119, + 0.1165 + ], + "tag": null, + "to": [ + 7.1871, + -0.8544 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5684, + 5755, + 0 + ] + }, + "from": [ + 7.1871, + -0.8544 + ], + "tag": null, + "to": [ + 6.6182, + -0.2625 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5761, + 5832, + 0 + ] + }, + "from": [ + 6.6182, + -0.2625 + ], + "tag": null, + "to": [ + 7.5646, + -0.531 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5838, + 5887, + 0 + ] + }, + "from": [ + 7.5646, + -0.531 + ], + "tag": null, + "to": [ + 8.0888, + 0.3701 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5893, + 5966, + 0 + ] + }, + "from": [ + 8.0888, + 0.3701 + ], + "tag": null, + "to": [ + 7.9462, + -0.1493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5972, + 6044, + 0 + ] + }, + "from": [ + 7.9462, + -0.1493 + ], + "tag": null, + "to": [ + 7.5175, + -0.5717 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6050, + 6123, + 0 + ] + }, + "from": [ + 7.5175, + -0.5717 + ], + "tag": null, + "to": [ + 7.4244, + -1.478 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6129, + 6200, + 0 + ] + }, + "from": [ + 7.4244, + -1.478 + ], + "tag": null, + "to": [ + 7.1476, + -0.7963 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6206, + 6277, + 0 + ] + }, + "from": [ + 7.1476, + -0.7963 + ], + "tag": null, + "to": [ + 8.1273, + -0.8786 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6283, + 6354, + 0 + ] + }, + "from": [ + 8.1273, + -0.8786 + ], + "tag": null, + "to": [ + 7.2606, + -1.1796 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6360, + 6431, + 0 + ] + }, + "from": [ + 7.2606, + -1.1796 + ], + "tag": null, + "to": [ + 7.798, + -1.1593 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6437, + 6508, + 0 + ] + }, + "from": [ + 7.798, + -1.1593 + ], + "tag": null, + "to": [ + 8.7313, + -1.7822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6514, + 6587, + 0 + ] + }, + "from": [ + 8.7313, + -1.7822 + ], + "tag": null, + "to": [ + 8.9118, + -2.1511 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6593, + 6642, + 0 + ] + }, + "from": [ + 8.9118, + -2.1511 + ], + "tag": null, + "to": [ + 9.4502, + -1.9133 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6648, + 6720, + 0 + ] + }, + "from": [ + 9.4502, + -1.9133 + ], + "tag": null, + "to": [ + 9.8407, + -1.7706 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6726, + 6797, + 0 + ] + }, + "from": [ + 9.8407, + -1.7706 + ], + "tag": null, + "to": [ + 9.9385, + -0.7798 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6803, + 6874, + 0 + ] + }, + "from": [ + 9.9385, + -0.7798 + ], + "tag": null, + "to": [ + 10.4672, + -1.5723 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6880, + 6951, + 0 + ] + }, + "from": [ + 10.4672, + -1.5723 + ], + "tag": null, + "to": [ + 10.8461, + -1.4483 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6957, + 7028, + 0 + ] + }, + "from": [ + 10.8461, + -1.4483 + ], + "tag": null, + "to": [ + 9.8977, + -0.7754 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7034, + 7106, + 0 + ] + }, + "from": [ + 9.8977, + -0.7754 + ], + "tag": null, + "to": [ + 10.6428, + -0.9886 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7112, + 7184, + 0 + ] + }, + "from": [ + 10.6428, + -0.9886 + ], + "tag": null, + "to": [ + 10.8302, + -1.1482 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7190, + 7263, + 0 + ] + }, + "from": [ + 10.8302, + -1.1482 + ], + "tag": null, + "to": [ + 10.7729, + -1.6918 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7269, + 7342, + 0 + ] + }, + "from": [ + 10.7729, + -1.6918 + ], + "tag": null, + "to": [ + 10.677, + -2.4452 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7348, + 7421, + 0 + ] + }, + "from": [ + 10.677, + -2.4452 + ], + "tag": null, + "to": [ + 10.5045, + -3.2121 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7427, + 7476, + 0 + ] + }, + "from": [ + 10.5045, + -3.2121 + ], + "tag": null, + "to": [ + 11.399, + -2.6028 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7482, + 7554, + 0 + ] + }, + "from": [ + 11.399, + -2.6028 + ], + "tag": null, + "to": [ + 11.0319, + -2.3908 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7560, + 7631, + 0 + ] + }, + "from": [ + 11.0319, + -2.3908 + ], + "tag": null, + "to": [ + 10.5612, + -1.9002 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7637, + 7708, + 0 + ] + }, + "from": [ + 10.5612, + -1.9002 + ], + "tag": null, + "to": [ + 9.7284, + -1.4325 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7714, + 7787, + 0 + ] + }, + "from": [ + 9.7284, + -1.4325 + ], + "tag": null, + "to": [ + 8.9172, + -1.8506 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7793, + 7865, + 0 + ] + }, + "from": [ + 8.9172, + -1.8506 + ], + "tag": null, + "to": [ + 8.9553, + -1.594 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7871, + 7943, + 0 + ] + }, + "from": [ + 8.9553, + -1.594 + ], + "tag": null, + "to": [ + 9.1948, + -1.157 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7949, + 8021, + 0 + ] + }, + "from": [ + 9.1948, + -1.157 + ], + "tag": null, + "to": [ + 9.032, + -0.3506 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8027, + 8101, + 0 + ] + }, + "from": [ + 9.032, + -0.3506 + ], + "tag": null, + "to": [ + 8.9423, + -0.4395 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8107, + 8179, + 0 + ] + }, + "from": [ + 8.9423, + -0.4395 + ], + "tag": null, + "to": [ + 9.8626, + -0.6129 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8185, + 8259, + 0 + ] + }, + "from": [ + 9.8626, + -0.6129 + ], + "tag": null, + "to": [ + 9.8644, + -1.1308 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8265, + 8336, + 0 + ] + }, + "from": [ + 9.8644, + -1.1308 + ], + "tag": null, + "to": [ + 10.485, + -2.0041 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8342, + 8413, + 0 + ] + }, + "from": [ + 10.485, + -2.0041 + ], + "tag": null, + "to": [ + 9.7074, + -1.2438 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8419, + 8468, + 0 + ] + }, + "from": [ + 9.7074, + -1.2438 + ], + "tag": null, + "to": [ + 10.2513, + -0.3989 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8474, + 8548, + 0 + ] + }, + "from": [ + 10.2513, + -0.3989 + ], + "tag": null, + "to": [ + 10.1209, + -0.3869 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8554, + 8627, + 0 + ] + }, + "from": [ + 10.1209, + -0.3869 + ], + "tag": null, + "to": [ + 9.9553, + -0.5946 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8633, + 8706, + 0 + ] + }, + "from": [ + 9.9553, + -0.5946 + ], + "tag": null, + "to": [ + 9.859, + -0.6488 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8712, + 8760, + 0 + ] + }, + "from": [ + 9.859, + -0.6488 + ], + "tag": null, + "to": [ + 10.7611, + -0.2529 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8766, + 8839, + 0 + ] + }, + "from": [ + 10.7611, + -0.2529 + ], + "tag": null, + "to": [ + 11.0411, + -0.4307 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8845, + 8893, + 0 + ] + }, + "from": [ + 11.0411, + -0.4307 + ], + "tag": null, + "to": [ + 11.5647, + 0.2637 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8899, + 8971, + 0 + ] + }, + "from": [ + 11.5647, + 0.2637 + ], + "tag": null, + "to": [ + 11.9561, + -0.5203 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8977, + 9026, + 0 + ] + }, + "from": [ + 11.9561, + -0.5203 + ], + "tag": null, + "to": [ + 12.7975, + 0.0192 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9032, + 9103, + 0 + ] + }, + "from": [ + 12.7975, + 0.0192 + ], + "tag": null, + "to": [ + 13.4113, + 0.2404 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9109, + 9158, + 0 + ] + }, + "from": [ + 13.4113, + 0.2404 + ], + "tag": null, + "to": [ + 14.2943, + 0.9401 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9164, + 9237, + 0 + ] + }, + "from": [ + 14.2943, + 0.9401 + ], + "tag": null, + "to": [ + 13.8814, + 0.5248 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9243, + 9314, + 0 + ] + }, + "from": [ + 13.8814, + 0.5248 + ], + "tag": null, + "to": [ + 14.3984, + -0.3837 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9320, + 9392, + 0 + ] + }, + "from": [ + 14.3984, + -0.3837 + ], + "tag": null, + "to": [ + 13.7267, + -1.3443 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9398, + 9472, + 0 + ] + }, + "from": [ + 13.7267, + -1.3443 + ], + "tag": null, + "to": [ + 13.737, + -1.7177 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9478, + 9551, + 0 + ] + }, + "from": [ + 13.737, + -1.7177 + ], + "tag": null, + "to": [ + 13.8406, + -2.1407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9557, + 9629, + 0 + ] + }, + "from": [ + 13.8406, + -2.1407 + ], + "tag": null, + "to": [ + 14.2926, + -2.253 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9635, + 9707, + 0 + ] + }, + "from": [ + 14.2926, + -2.253 + ], + "tag": null, + "to": [ + 13.4105, + -2.9685 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9713, + 9762, + 0 + ] + }, + "from": [ + 13.4105, + -2.9685 + ], + "tag": null, + "to": [ + 14.33, + -2.6993 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9768, + 9839, + 0 + ] + }, + "from": [ + 14.33, + -2.6993 + ], + "tag": null, + "to": [ + 15.0399, + -2.5822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9845, + 9917, + 0 + ] + }, + "from": [ + 15.0399, + -2.5822 + ], + "tag": null, + "to": [ + 14.6612, + -1.8716 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9923, + 9997, + 0 + ] + }, + "from": [ + 14.6612, + -1.8716 + ], + "tag": null, + "to": [ + 14.3639, + -1.9381 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10003, + 10075, + 0 + ] + }, + "from": [ + 14.3639, + -1.9381 + ], + "tag": null, + "to": [ + 14.5936, + -2.6983 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10081, + 10153, + 0 + ] + }, + "from": [ + 14.5936, + -2.6983 + ], + "tag": null, + "to": [ + 13.9579, + -2.5037 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10159, + 10208, + 0 + ] + }, + "from": [ + 13.9579, + -2.5037 + ], + "tag": null, + "to": [ + 14.53, + -2.2148 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10214, + 10287, + 0 + ] + }, + "from": [ + 14.53, + -2.2148 + ], + "tag": null, + "to": [ + 13.572, + -2.2372 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10293, + 10364, + 0 + ] + }, + "from": [ + 13.572, + -2.2372 + ], + "tag": null, + "to": [ + 13.9019, + -3.0726 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10370, + 10441, + 0 + ] + }, + "from": [ + 13.9019, + -3.0726 + ], + "tag": null, + "to": [ + 14.6454, + -3.8646 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10447, + 10496, + 0 + ] + }, + "from": [ + 14.6454, + -3.8646 + ], + "tag": null, + "to": [ + 15.639, + -2.9603 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10502, + 10573, + 0 + ] + }, + "from": [ + 15.639, + -2.9603 + ], + "tag": null, + "to": [ + 15.1354, + -2.4452 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10579, + 10628, + 0 + ] + }, + "from": [ + 15.1354, + -2.4452 + ], + "tag": null, + "to": [ + 15.688, + -1.684 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10634, + 10705, + 0 + ] + }, + "from": [ + 15.688, + -1.684 + ], + "tag": null, + "to": [ + 16.5473, + -1.5998 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10711, + 10782, + 0 + ] + }, + "from": [ + 16.5473, + -1.5998 + ], + "tag": null, + "to": [ + 15.7292, + -2.5034 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10788, + 10860, + 0 + ] + }, + "from": [ + 15.7292, + -2.5034 + ], + "tag": null, + "to": [ + 16.0458, + -2.7453 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10866, + 10940, + 0 + ] + }, + "from": [ + 16.0458, + -2.7453 + ], + "tag": null, + "to": [ + 15.6019, + -3.0044 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10946, + 11019, + 0 + ] + }, + "from": [ + 15.6019, + -3.0044 + ], + "tag": null, + "to": [ + 14.9414, + -3.4079 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11025, + 11097, + 0 + ] + }, + "from": [ + 14.9414, + -3.4079 + ], + "tag": null, + "to": [ + 14.2243, + -3.1734 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11103, + 11176, + 0 + ] + }, + "from": [ + 14.2243, + -3.1734 + ], + "tag": null, + "to": [ + 13.9675, + -3.6237 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11182, + 11253, + 0 + ] + }, + "from": [ + 13.9675, + -3.6237 + ], + "tag": null, + "to": [ + 14.6427, + -4.5947 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11259, + 11330, + 0 + ] + }, + "from": [ + 14.6427, + -4.5947 + ], + "tag": null, + "to": [ + 14.0737, + -4.0028 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11336, + 11407, + 0 + ] + }, + "from": [ + 14.0737, + -4.0028 + ], + "tag": null, + "to": [ + 13.2409, + -3.535 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11413, + 11486, + 0 + ] + }, + "from": [ + 13.2409, + -3.535 + ], + "tag": null, + "to": [ + 12.4298, + -3.9532 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11492, + 11564, + 0 + ] + }, + "from": [ + 12.4298, + -3.9532 + ], + "tag": null, + "to": [ + 12.4678, + -3.6965 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11570, + 11642, + 0 + ] + }, + "from": [ + 12.4678, + -3.6965 + ], + "tag": null, + "to": [ + 12.7073, + -3.2596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11648, + 11720, + 0 + ] + }, + "from": [ + 12.7073, + -3.2596 + ], + "tag": null, + "to": [ + 12.5445, + -2.4531 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11726, + 11800, + 0 + ] + }, + "from": [ + 12.5445, + -2.4531 + ], + "tag": null, + "to": [ + 12.4548, + -2.542 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11806, + 11878, + 0 + ] + }, + "from": [ + 12.4548, + -2.542 + ], + "tag": null, + "to": [ + 13.3752, + -2.7154 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11884, + 11958, + 0 + ] + }, + "from": [ + 13.3752, + -2.7154 + ], + "tag": null, + "to": [ + 13.3769, + -3.2333 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11964, + 12035, + 0 + ] + }, + "from": [ + 13.3769, + -3.2333 + ], + "tag": null, + "to": [ + 13.9975, + -4.1066 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12041, + 12112, + 0 + ] + }, + "from": [ + 13.9975, + -4.1066 + ], + "tag": null, + "to": [ + 13.2199, + -3.3463 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12118, + 12167, + 0 + ] + }, + "from": [ + 13.2199, + -3.3463 + ], + "tag": null, + "to": [ + 13.7638, + -2.5014 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12173, + 12247, + 0 + ] + }, + "from": [ + 13.7638, + -2.5014 + ], + "tag": null, + "to": [ + 13.6335, + -2.4894 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12253, + 12326, + 0 + ] + }, + "from": [ + 13.6335, + -2.4894 + ], + "tag": null, + "to": [ + 13.4678, + -2.6971 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12332, + 12405, + 0 + ] + }, + "from": [ + 13.4678, + -2.6971 + ], + "tag": null, + "to": [ + 13.3715, + -2.7513 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12411, + 12459, + 0 + ] + }, + "from": [ + 13.3715, + -2.7513 + ], + "tag": null, + "to": [ + 14.2737, + -2.3554 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12465, + 12538, + 0 + ] + }, + "from": [ + 14.2737, + -2.3554 + ], + "tag": null, + "to": [ + 14.5536, + -2.5332 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12544, + 12592, + 0 + ] + }, + "from": [ + 14.5536, + -2.5332 + ], + "tag": null, + "to": [ + 15.0772, + -1.8389 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12598, + 12670, + 0 + ] + }, + "from": [ + 15.0772, + -1.8389 + ], + "tag": null, + "to": [ + 15.4686, + -2.6229 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12676, + 12725, + 0 + ] + }, + "from": [ + 15.4686, + -2.6229 + ], + "tag": null, + "to": [ + 16.31, + -2.0833 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12731, + 12802, + 0 + ] + }, + "from": [ + 16.31, + -2.0833 + ], + "tag": null, + "to": [ + 16.9238, + -1.8621 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12808, + 12857, + 0 + ] + }, + "from": [ + 16.9238, + -1.8621 + ], + "tag": null, + "to": [ + 17.8069, + -1.1624 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12863, + 12935, + 0 + ] + }, + "from": [ + 17.8069, + -1.1624 + ], + "tag": null, + "to": [ + 17.4398, + -0.9504 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12941, + 13012, + 0 + ] + }, + "from": [ + 17.4398, + -0.9504 + ], + "tag": null, + "to": [ + 16.9691, + -0.4599 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13018, + 13089, + 0 + ] + }, + "from": [ + 16.9691, + -0.4599 + ], + "tag": null, + "to": [ + 16.1363, + 0.0079 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13095, + 13168, + 0 + ] + }, + "from": [ + 16.1363, + 0.0079 + ], + "tag": null, + "to": [ + 15.3251, + -0.4103 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13174, + 13246, + 0 + ] + }, + "from": [ + 15.3251, + -0.4103 + ], + "tag": null, + "to": [ + 15.3632, + -0.1536 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13252, + 13324, + 0 + ] + }, + "from": [ + 15.3632, + -0.1536 + ], + "tag": null, + "to": [ + 15.6027, + 0.2833 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13330, + 13402, + 0 + ] + }, + "from": [ + 15.6027, + 0.2833 + ], + "tag": null, + "to": [ + 15.4399, + 1.0897 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13408, + 13482, + 0 + ] + }, + "from": [ + 15.4399, + 1.0897 + ], + "tag": null, + "to": [ + 15.3502, + 1.0009 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13488, + 13560, + 0 + ] + }, + "from": [ + 15.3502, + 1.0009 + ], + "tag": null, + "to": [ + 16.2705, + 0.8274 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13566, + 13640, + 0 + ] + }, + "from": [ + 16.2705, + 0.8274 + ], + "tag": null, + "to": [ + 16.2723, + 0.3096 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13646, + 13717, + 0 + ] + }, + "from": [ + 16.2723, + 0.3096 + ], + "tag": null, + "to": [ + 16.8929, + -0.5638 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13723, + 13794, + 0 + ] + }, + "from": [ + 16.8929, + -0.5638 + ], + "tag": null, + "to": [ + 16.1152, + 0.1965 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13800, + 13849, + 0 + ] + }, + "from": [ + 16.1152, + 0.1965 + ], + "tag": null, + "to": [ + 16.6592, + 1.0414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13855, + 13929, + 0 + ] + }, + "from": [ + 16.6592, + 1.0414 + ], + "tag": null, + "to": [ + 16.5288, + 1.0535 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13935, + 14008, + 0 + ] + }, + "from": [ + 16.5288, + 1.0535 + ], + "tag": null, + "to": [ + 16.3632, + 0.8457 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14014, + 14087, + 0 + ] + }, + "from": [ + 16.3632, + 0.8457 + ], + "tag": null, + "to": [ + 16.2669, + 0.7916 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14093, + 14141, + 0 + ] + }, + "from": [ + 16.2669, + 0.7916 + ], + "tag": null, + "to": [ + 17.169, + 1.1875 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14147, + 14220, + 0 + ] + }, + "from": [ + 17.169, + 1.1875 + ], + "tag": null, + "to": [ + 17.449, + 1.0097 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14226, + 14274, + 0 + ] + }, + "from": [ + 17.449, + 1.0097 + ], + "tag": null, + "to": [ + 17.9726, + 1.704 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14280, + 14352, + 0 + ] + }, + "from": [ + 17.9726, + 1.704 + ], + "tag": null, + "to": [ + 18.364, + 0.92 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14358, + 14407, + 0 + ] + }, + "from": [ + 18.364, + 0.92 + ], + "tag": null, + "to": [ + 19.2054, + 1.4596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14413, + 14484, + 0 + ] + }, + "from": [ + 19.2054, + 1.4596 + ], + "tag": null, + "to": [ + 19.8192, + 1.6808 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14490, + 14539, + 0 + ] + }, + "from": [ + 19.8192, + 1.6808 + ], + "tag": null, + "to": [ + 20.7022, + 2.3804 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14545, + 14618, + 0 + ] + }, + "from": [ + 20.7022, + 2.3804 + ], + "tag": null, + "to": [ + 20.2893, + 1.9652 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14624, + 14695, + 0 + ] + }, + "from": [ + 20.2893, + 1.9652 + ], + "tag": null, + "to": [ + 20.8063, + 1.0566 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14701, + 14773, + 0 + ] + }, + "from": [ + 20.8063, + 1.0566 + ], + "tag": null, + "to": [ + 20.1346, + 0.0961 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14779, + 14853, + 0 + ] + }, + "from": [ + 20.1346, + 0.0961 + ], + "tag": null, + "to": [ + 20.1449, + -0.2774 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14859, + 14931, + 0 + ] + }, + "from": [ + 20.1449, + -0.2774 + ], + "tag": null, + "to": [ + 19.7779, + -0.0654 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14937, + 15008, + 0 + ] + }, + "from": [ + 19.7779, + -0.0654 + ], + "tag": null, + "to": [ + 19.3071, + 0.4252 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15014, + 15085, + 0 + ] + }, + "from": [ + 19.3071, + 0.4252 + ], + "tag": null, + "to": [ + 18.4743, + 0.8929 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15091, + 15164, + 0 + ] + }, + "from": [ + 18.4743, + 0.8929 + ], + "tag": null, + "to": [ + 17.6632, + 0.4748 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15170, + 15242, + 0 + ] + }, + "from": [ + 17.6632, + 0.4748 + ], + "tag": null, + "to": [ + 17.7012, + 0.7314 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15248, + 15320, + 0 + ] + }, + "from": [ + 17.7012, + 0.7314 + ], + "tag": null, + "to": [ + 17.9407, + 1.1683 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15326, + 15398, + 0 + ] + }, + "from": [ + 17.9407, + 1.1683 + ], + "tag": null, + "to": [ + 17.7779, + 1.9748 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15404, + 15478, + 0 + ] + }, + "from": [ + 17.7779, + 1.9748 + ], + "tag": null, + "to": [ + 17.6882, + 1.8859 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15484, + 15556, + 0 + ] + }, + "from": [ + 17.6882, + 1.8859 + ], + "tag": null, + "to": [ + 18.6086, + 1.7125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15562, + 15636, + 0 + ] + }, + "from": [ + 18.6086, + 1.7125 + ], + "tag": null, + "to": [ + 18.6103, + 1.1946 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15642, + 15713, + 0 + ] + }, + "from": [ + 18.6103, + 1.1946 + ], + "tag": null, + "to": [ + 19.2309, + 0.3213 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15719, + 15790, + 0 + ] + }, + "from": [ + 19.2309, + 0.3213 + ], + "tag": null, + "to": [ + 18.4533, + 1.0816 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15796, + 15845, + 0 + ] + }, + "from": [ + 18.4533, + 1.0816 + ], + "tag": null, + "to": [ + 18.9972, + 1.9265 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15851, + 15925, + 0 + ] + }, + "from": [ + 18.9972, + 1.9265 + ], + "tag": null, + "to": [ + 18.8669, + 1.9385 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15931, + 16004, + 0 + ] + }, + "from": [ + 18.8669, + 1.9385 + ], + "tag": null, + "to": [ + 18.7012, + 1.7308 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16010, + 16083, + 0 + ] + }, + "from": [ + 18.7012, + 1.7308 + ], + "tag": null, + "to": [ + 18.6049, + 1.6766 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16089, + 16137, + 0 + ] + }, + "from": [ + 18.6049, + 1.6766 + ], + "tag": null, + "to": [ + 19.5071, + 2.0725 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16143, + 16216, + 0 + ] + }, + "from": [ + 19.5071, + 2.0725 + ], + "tag": null, + "to": [ + 19.787, + 1.8947 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16222, + 16270, + 0 + ] + }, + "from": [ + 19.787, + 1.8947 + ], + "tag": null, + "to": [ + 20.3106, + 2.589 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16276, + 16348, + 0 + ] + }, + "from": [ + 20.3106, + 2.589 + ], + "tag": null, + "to": [ + 20.702, + 1.8051 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16354, + 16403, + 0 + ] + }, + "from": [ + 20.702, + 1.8051 + ], + "tag": null, + "to": [ + 21.5434, + 2.3446 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16409, + 16480, + 0 + ] + }, + "from": [ + 21.5434, + 2.3446 + ], + "tag": null, + "to": [ + 22.1572, + 2.5658 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16486, + 16535, + 0 + ] + }, + "from": [ + 22.1572, + 2.5658 + ], + "tag": null, + "to": [ + 23.0403, + 3.2655 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16541, + 16614, + 0 + ] + }, + "from": [ + 23.0403, + 3.2655 + ], + "tag": null, + "to": [ + 22.6274, + 2.8502 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16620, + 16691, + 0 + ] + }, + "from": [ + 22.6274, + 2.8502 + ], + "tag": null, + "to": [ + 23.1443, + 1.9417 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16697, + 16769, + 0 + ] + }, + "from": [ + 23.1443, + 1.9417 + ], + "tag": null, + "to": [ + 22.4727, + 0.9811 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16775, + 16849, + 0 + ] + }, + "from": [ + 22.4727, + 0.9811 + ], + "tag": null, + "to": [ + 22.483, + 0.6077 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16855, + 16928, + 0 + ] + }, + "from": [ + 22.483, + 0.6077 + ], + "tag": null, + "to": [ + 22.5865, + 0.1847 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16934, + 17006, + 0 + ] + }, + "from": [ + 22.5865, + 0.1847 + ], + "tag": null, + "to": [ + 23.0386, + 0.0724 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17012, + 17084, + 0 + ] + }, + "from": [ + 23.0386, + 0.0724 + ], + "tag": null, + "to": [ + 22.1564, + -0.6431 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17090, + 17139, + 0 + ] + }, + "from": [ + 22.1564, + -0.6431 + ], + "tag": null, + "to": [ + 23.076, + -0.3739 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17145, + 17216, + 0 + ] + }, + "from": [ + 23.076, + -0.3739 + ], + "tag": null, + "to": [ + 23.7859, + -0.2568 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17222, + 17294, + 0 + ] + }, + "from": [ + 23.7859, + -0.2568 + ], + "tag": null, + "to": [ + 23.4071, + 0.4538 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17300, + 17374, + 0 + ] + }, + "from": [ + 23.4071, + 0.4538 + ], + "tag": null, + "to": [ + 23.1098, + 0.3873 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17380, + 17452, + 0 + ] + }, + "from": [ + 23.1098, + 0.3873 + ], + "tag": null, + "to": [ + 23.3395, + -0.3729 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17458, + 17530, + 0 + ] + }, + "from": [ + 23.3395, + -0.3729 + ], + "tag": null, + "to": [ + 22.7038, + -0.1783 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17536, + 17585, + 0 + ] + }, + "from": [ + 22.7038, + -0.1783 + ], + "tag": null, + "to": [ + 23.276, + 0.1106 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17591, + 17664, + 0 + ] + }, + "from": [ + 23.276, + 0.1106 + ], + "tag": null, + "to": [ + 22.3179, + 0.0881 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17670, + 17741, + 0 + ] + }, + "from": [ + 22.3179, + 0.0881 + ], + "tag": null, + "to": [ + 22.6479, + -0.7472 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17747, + 17818, + 0 + ] + }, + "from": [ + 22.6479, + -0.7472 + ], + "tag": null, + "to": [ + 23.3913, + -1.5392 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17824, + 17873, + 0 + ] + }, + "from": [ + 23.3913, + -1.5392 + ], + "tag": null, + "to": [ + 24.3849, + -0.6349 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17879, + 17950, + 0 + ] + }, + "from": [ + 24.3849, + -0.6349 + ], + "tag": null, + "to": [ + 23.8813, + -0.1198 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17956, + 18005, + 0 + ] + }, + "from": [ + 23.8813, + -0.1198 + ], + "tag": null, + "to": [ + 24.4339, + 0.6414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18011, + 18082, + 0 + ] + }, + "from": [ + 24.4339, + 0.6414 + ], + "tag": null, + "to": [ + 25.2933, + 0.7256 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18088, + 18159, + 0 + ] + }, + "from": [ + 25.2933, + 0.7256 + ], + "tag": null, + "to": [ + 24.4752, + -0.178 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18165, + 18237, + 0 + ] + }, + "from": [ + 24.4752, + -0.178 + ], + "tag": null, + "to": [ + 24.7917, + -0.4199 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18243, + 18317, + 0 + ] + }, + "from": [ + 24.7917, + -0.4199 + ], + "tag": null, + "to": [ + 24.3478, + -0.679 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18323, + 18396, + 0 + ] + }, + "from": [ + 24.3478, + -0.679 + ], + "tag": null, + "to": [ + 23.6873, + -1.0825 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18402, + 18474, + 0 + ] + }, + "from": [ + 23.6873, + -1.0825 + ], + "tag": null, + "to": [ + 22.9703, + -0.848 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18480, + 18553, + 0 + ] + }, + "from": [ + 22.9703, + -0.848 + ], + "tag": null, + "to": [ + 22.7134, + -1.2983 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18559, + 18630, + 0 + ] + }, + "from": [ + 22.7134, + -1.2983 + ], + "tag": null, + "to": [ + 23.3886, + -2.2693 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18636, + 18707, + 0 + ] + }, + "from": [ + 23.3886, + -2.2693 + ], + "tag": null, + "to": [ + 22.8197, + -1.6774 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18713, + 18784, + 0 + ] + }, + "from": [ + 22.8197, + -1.6774 + ], + "tag": null, + "to": [ + 21.9868, + -1.2096 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18790, + 18863, + 0 + ] + }, + "from": [ + 21.9868, + -1.2096 + ], + "tag": null, + "to": [ + 21.1757, + -1.6278 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18869, + 18941, + 0 + ] + }, + "from": [ + 21.1757, + -1.6278 + ], + "tag": null, + "to": [ + 21.2138, + -1.3711 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18947, + 19019, + 0 + ] + }, + "from": [ + 21.2138, + -1.3711 + ], + "tag": null, + "to": [ + 21.4533, + -0.9342 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19025, + 19097, + 0 + ] + }, + "from": [ + 21.4533, + -0.9342 + ], + "tag": null, + "to": [ + 21.2905, + -0.1277 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19103, + 19177, + 0 + ] + }, + "from": [ + 21.2905, + -0.1277 + ], + "tag": null, + "to": [ + 21.2007, + -0.2166 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19183, + 19255, + 0 + ] + }, + "from": [ + 21.2007, + -0.2166 + ], + "tag": null, + "to": [ + 22.1211, + -0.39 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19261, + 19335, + 0 + ] + }, + "from": [ + 22.1211, + -0.39 + ], + "tag": null, + "to": [ + 22.1228, + -0.9079 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19341, + 19412, + 0 + ] + }, + "from": [ + 22.1228, + -0.9079 + ], + "tag": null, + "to": [ + 22.7435, + -1.7812 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19418, + 19489, + 0 + ] + }, + "from": [ + 22.7435, + -1.7812 + ], + "tag": null, + "to": [ + 21.9658, + -1.021 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19495, + 19544, + 0 + ] + }, + "from": [ + 21.9658, + -1.021 + ], + "tag": null, + "to": [ + 22.5098, + -0.176 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19550, + 19624, + 0 + ] + }, + "from": [ + 22.5098, + -0.176 + ], + "tag": null, + "to": [ + 22.3794, + -0.164 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19630, + 19703, + 0 + ] + }, + "from": [ + 22.3794, + -0.164 + ], + "tag": null, + "to": [ + 22.2138, + -0.3717 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19709, + 19782, + 0 + ] + }, + "from": [ + 22.2138, + -0.3717 + ], + "tag": null, + "to": [ + 22.1175, + -0.4259 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19788, + 19836, + 0 + ] + }, + "from": [ + 22.1175, + -0.4259 + ], + "tag": null, + "to": [ + 23.0196, + -0.03 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19842, + 19915, + 0 + ] + }, + "from": [ + 23.0196, + -0.03 + ], + "tag": null, + "to": [ + 23.2996, + -0.2078 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19921, + 19969, + 0 + ] + }, + "from": [ + 23.2996, + -0.2078 + ], + "tag": null, + "to": [ + 23.8232, + 0.4865 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19975, + 20047, + 0 + ] + }, + "from": [ + 23.8232, + 0.4865 + ], + "tag": null, + "to": [ + 24.2146, + -0.2975 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20053, + 20102, + 0 + ] + }, + "from": [ + 24.2146, + -0.2975 + ], + "tag": null, + "to": [ + 25.056, + 0.2421 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20108, + 20179, + 0 + ] + }, + "from": [ + 25.056, + 0.2421 + ], + "tag": null, + "to": [ + 25.6697, + 0.4633 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20185, + 20234, + 0 + ] + }, + "from": [ + 25.6697, + 0.4633 + ], + "tag": null, + "to": [ + 26.5528, + 1.163 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20240, + 20313, + 0 + ] + }, + "from": [ + 26.5528, + 1.163 + ], + "tag": null, + "to": [ + 26.1399, + 0.7477 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20319, + 20390, + 0 + ] + }, + "from": [ + 26.1399, + 0.7477 + ], + "tag": null, + "to": [ + 26.6568, + -0.1609 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20396, + 20467, + 0 + ] + }, + "from": [ + 26.6568, + -0.1609 + ], + "tag": null, + "to": [ + 27.332, + -1.1318 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20473, + 20544, + 0 + ] + }, + "from": [ + 27.332, + -1.1318 + ], + "tag": null, + "to": [ + 26.7631, + -0.5399 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20550, + 20621, + 0 + ] + }, + "from": [ + 26.7631, + -0.5399 + ], + "tag": null, + "to": [ + 27.7095, + -0.8084 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20627, + 20676, + 0 + ] + }, + "from": [ + 27.7095, + -0.8084 + ], + "tag": null, + "to": [ + 28.2337, + 0.0928 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20682, + 20755, + 0 + ] + }, + "from": [ + 28.2337, + 0.0928 + ], + "tag": null, + "to": [ + 28.0911, + -0.4267 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20761, + 20833, + 0 + ] + }, + "from": [ + 28.0911, + -0.4267 + ], + "tag": null, + "to": [ + 27.6624, + -0.849 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20839, + 20912, + 0 + ] + }, + "from": [ + 27.6624, + -0.849 + ], + "tag": null, + "to": [ + 27.5693, + -1.7553 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20918, + 20989, + 0 + ] + }, + "from": [ + 27.5693, + -1.7553 + ], + "tag": null, + "to": [ + 27.2925, + -1.0737 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20995, + 21066, + 0 + ] + }, + "from": [ + 27.2925, + -1.0737 + ], + "tag": null, + "to": [ + 28.2722, + -1.1559 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21072, + 21143, + 0 + ] + }, + "from": [ + 28.2722, + -1.1559 + ], + "tag": null, + "to": [ + 27.4055, + -1.457 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21149, + 21220, + 0 + ] + }, + "from": [ + 27.4055, + -1.457 + ], + "tag": null, + "to": [ + 27.9429, + -1.4367 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21226, + 21297, + 0 + ] + }, + "from": [ + 27.9429, + -1.4367 + ], + "tag": null, + "to": [ + 28.8762, + -2.0595 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21303, + 21376, + 0 + ] + }, + "from": [ + 28.8762, + -2.0595 + ], + "tag": null, + "to": [ + 29.0567, + -2.4285 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21382, + 21431, + 0 + ] + }, + "from": [ + 29.0567, + -2.4285 + ], + "tag": null, + "to": [ + 29.5951, + -2.1907 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21437, + 21509, + 0 + ] + }, + "from": [ + 29.5951, + -2.1907 + ], + "tag": null, + "to": [ + 29.9856, + -2.048 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21515, + 21586, + 0 + ] + }, + "from": [ + 29.9856, + -2.048 + ], + "tag": null, + "to": [ + 30.0834, + -1.0572 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21592, + 21663, + 0 + ] + }, + "from": [ + 30.0834, + -1.0572 + ], + "tag": null, + "to": [ + 30.6121, + -1.8497 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21669, + 21740, + 0 + ] + }, + "from": [ + 30.6121, + -1.8497 + ], + "tag": null, + "to": [ + 30.9911, + -1.7257 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21746, + 21817, + 0 + ] + }, + "from": [ + 30.9911, + -1.7257 + ], + "tag": null, + "to": [ + 30.0426, + -1.0527 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21823, + 21895, + 0 + ] + }, + "from": [ + 30.0426, + -1.0527 + ], + "tag": null, + "to": [ + 30.7877, + -1.2659 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21901, + 21973, + 0 + ] + }, + "from": [ + 30.7877, + -1.2659 + ], + "tag": null, + "to": [ + 30.9751, + -1.4255 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21979, + 22052, + 0 + ] + }, + "from": [ + 30.9751, + -1.4255 + ], + "tag": null, + "to": [ + 30.9178, + -1.9692 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22058, + 22131, + 0 + ] + }, + "from": [ + 30.9178, + -1.9692 + ], + "tag": null, + "to": [ + 30.8219, + -2.7226 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22137, + 22210, + 0 + ] + }, + "from": [ + 30.8219, + -2.7226 + ], + "tag": null, + "to": [ + 30.6494, + -3.4895 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22216, + 22265, + 0 + ] + }, + "from": [ + 30.6494, + -3.4895 + ], + "tag": null, + "to": [ + 31.5439, + -2.8801 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22271, + 22343, + 0 + ] + }, + "from": [ + 31.5439, + -2.8801 + ], + "tag": null, + "to": [ + 31.1769, + -2.6681 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22349, + 22420, + 0 + ] + }, + "from": [ + 31.1769, + -2.6681 + ], + "tag": null, + "to": [ + 30.7061, + -2.1776 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22426, + 22497, + 0 + ] + }, + "from": [ + 30.7061, + -2.1776 + ], + "tag": null, + "to": [ + 29.8733, + -1.7099 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22503, + 22576, + 0 + ] + }, + "from": [ + 29.8733, + -1.7099 + ], + "tag": null, + "to": [ + 29.0621, + -2.128 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22582, + 22654, + 0 + ] + }, + "from": [ + 29.0621, + -2.128 + ], + "tag": null, + "to": [ + 29.1002, + -1.8714 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22660, + 22732, + 0 + ] + }, + "from": [ + 29.1002, + -1.8714 + ], + "tag": null, + "to": [ + 29.3397, + -1.4344 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22738, + 22810, + 0 + ] + }, + "from": [ + 29.3397, + -1.4344 + ], + "tag": null, + "to": [ + 29.1769, + -0.628 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22816, + 22890, + 0 + ] + }, + "from": [ + 29.1769, + -0.628 + ], + "tag": null, + "to": [ + 29.0872, + -0.7169 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22896, + 22968, + 0 + ] + }, + "from": [ + 29.0872, + -0.7169 + ], + "tag": null, + "to": [ + 30.0075, + -0.8903 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22974, + 23048, + 0 + ] + }, + "from": [ + 30.0075, + -0.8903 + ], + "tag": null, + "to": [ + 30.0093, + -1.4081 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23054, + 23125, + 0 + ] + }, + "from": [ + 30.0093, + -1.4081 + ], + "tag": null, + "to": [ + 30.6299, + -2.2815 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23131, + 23202, + 0 + ] + }, + "from": [ + 30.6299, + -2.2815 + ], + "tag": null, + "to": [ + 29.8523, + -1.5212 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23208, + 23257, + 0 + ] + }, + "from": [ + 29.8523, + -1.5212 + ], + "tag": null, + "to": [ + 30.3962, + -0.6763 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23263, + 23337, + 0 + ] + }, + "from": [ + 30.3962, + -0.6763 + ], + "tag": null, + "to": [ + 30.2658, + -0.6642 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23343, + 23416, + 0 + ] + }, + "from": [ + 30.2658, + -0.6642 + ], + "tag": null, + "to": [ + 30.1002, + -0.872 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23422, + 23495, + 0 + ] + }, + "from": [ + 30.1002, + -0.872 + ], + "tag": null, + "to": [ + 30.0039, + -0.9262 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23501, + 23549, + 0 + ] + }, + "from": [ + 30.0039, + -0.9262 + ], + "tag": null, + "to": [ + 30.906, + -0.5303 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23555, + 23628, + 0 + ] + }, + "from": [ + 30.906, + -0.5303 + ], + "tag": null, + "to": [ + 31.186, + -0.708 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23634, + 23682, + 0 + ] + }, + "from": [ + 31.186, + -0.708 + ], + "tag": null, + "to": [ + 31.7096, + -0.0137 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23688, + 23760, + 0 + ] + }, + "from": [ + 31.7096, + -0.0137 + ], + "tag": null, + "to": [ + 32.101, + -0.7977 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23766, + 23815, + 0 + ] + }, + "from": [ + 32.101, + -0.7977 + ], + "tag": null, + "to": [ + 32.9424, + -0.2581 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23821, + 23892, + 0 + ] + }, + "from": [ + 32.9424, + -0.2581 + ], + "tag": null, + "to": [ + 33.5562, + -0.0369 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23898, + 23947, + 0 + ] + }, + "from": [ + 33.5562, + -0.0369 + ], + "tag": null, + "to": [ + 34.4392, + 0.6627 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23953, + 24026, + 0 + ] + }, + "from": [ + 34.4392, + 0.6627 + ], + "tag": null, + "to": [ + 34.0263, + 0.2475 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24032, + 24103, + 0 + ] + }, + "from": [ + 34.0263, + 0.2475 + ], + "tag": null, + "to": [ + 34.5433, + -0.6611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24109, + 24181, + 0 + ] + }, + "from": [ + 34.5433, + -0.6611 + ], + "tag": null, + "to": [ + 33.8716, + -1.6217 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24187, + 24261, + 0 + ] + }, + "from": [ + 33.8716, + -1.6217 + ], + "tag": null, + "to": [ + 33.8819, + -1.9951 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24267, + 24340, + 0 + ] + }, + "from": [ + 33.8819, + -1.9951 + ], + "tag": null, + "to": [ + 33.9855, + -2.418 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24346, + 24418, + 0 + ] + }, + "from": [ + 33.9855, + -2.418 + ], + "tag": null, + "to": [ + 34.4375, + -2.5304 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24424, + 24496, + 0 + ] + }, + "from": [ + 34.4375, + -2.5304 + ], + "tag": null, + "to": [ + 33.5554, + -3.2459 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24502, + 24551, + 0 + ] + }, + "from": [ + 33.5554, + -3.2459 + ], + "tag": null, + "to": [ + 34.475, + -2.9767 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24557, + 24628, + 0 + ] + }, + "from": [ + 34.475, + -2.9767 + ], + "tag": null, + "to": [ + 35.1849, + -2.8596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24634, + 24706, + 0 + ] + }, + "from": [ + 35.1849, + -2.8596 + ], + "tag": null, + "to": [ + 34.8061, + -2.1489 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24712, + 24786, + 0 + ] + }, + "from": [ + 34.8061, + -2.1489 + ], + "tag": null, + "to": [ + 34.5088, + -2.2154 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24792, + 24864, + 0 + ] + }, + "from": [ + 34.5088, + -2.2154 + ], + "tag": null, + "to": [ + 34.7385, + -2.9756 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24870, + 24942, + 0 + ] + }, + "from": [ + 34.7385, + -2.9756 + ], + "tag": null, + "to": [ + 34.1028, + -2.781 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24948, + 24997, + 0 + ] + }, + "from": [ + 34.1028, + -2.781 + ], + "tag": null, + "to": [ + 34.6749, + -2.4922 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25003, + 25076, + 0 + ] + }, + "from": [ + 34.6749, + -2.4922 + ], + "tag": null, + "to": [ + 33.7169, + -2.5146 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25082, + 25153, + 0 + ] + }, + "from": [ + 33.7169, + -2.5146 + ], + "tag": null, + "to": [ + 34.0468, + -3.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25159, + 25230, + 0 + ] + }, + "from": [ + 34.0468, + -3.35 + ], + "tag": null, + "to": [ + 34.7903, + -4.142 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25236, + 25285, + 0 + ] + }, + "from": [ + 34.7903, + -4.142 + ], + "tag": null, + "to": [ + 35.7839, + -3.2377 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25291, + 25362, + 0 + ] + }, + "from": [ + 35.7839, + -3.2377 + ], + "tag": null, + "to": [ + 35.2803, + -2.7226 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25368, + 25417, + 0 + ] + }, + "from": [ + 35.2803, + -2.7226 + ], + "tag": null, + "to": [ + 35.8329, + -1.9613 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25423, + 25494, + 0 + ] + }, + "from": [ + 35.8329, + -1.9613 + ], + "tag": null, + "to": [ + 36.6922, + -1.8772 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25500, + 25571, + 0 + ] + }, + "from": [ + 36.6922, + -1.8772 + ], + "tag": null, + "to": [ + 35.8741, + -2.7807 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25577, + 25649, + 0 + ] + }, + "from": [ + 35.8741, + -2.7807 + ], + "tag": null, + "to": [ + 36.1907, + -3.0226 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25655, + 25729, + 0 + ] + }, + "from": [ + 36.1907, + -3.0226 + ], + "tag": null, + "to": [ + 35.7468, + -3.2818 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25735, + 25808, + 0 + ] + }, + "from": [ + 35.7468, + -3.2818 + ], + "tag": null, + "to": [ + 35.0863, + -3.6853 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25814, + 25886, + 0 + ] + }, + "from": [ + 35.0863, + -3.6853 + ], + "tag": null, + "to": [ + 34.3692, + -3.4508 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25892, + 25965, + 0 + ] + }, + "from": [ + 34.3692, + -3.4508 + ], + "tag": null, + "to": [ + 34.1124, + -3.9011 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25971, + 26042, + 0 + ] + }, + "from": [ + 34.1124, + -3.9011 + ], + "tag": null, + "to": [ + 34.7876, + -4.872 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26048, + 26119, + 0 + ] + }, + "from": [ + 34.7876, + -4.872 + ], + "tag": null, + "to": [ + 34.2186, + -4.2801 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26125, + 26196, + 0 + ] + }, + "from": [ + 34.2186, + -4.2801 + ], + "tag": null, + "to": [ + 33.3858, + -3.8124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26202, + 26275, + 0 + ] + }, + "from": [ + 33.3858, + -3.8124 + ], + "tag": null, + "to": [ + 32.5747, + -4.2305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26281, + 26353, + 0 + ] + }, + "from": [ + 32.5747, + -4.2305 + ], + "tag": null, + "to": [ + 32.6127, + -3.9739 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26359, + 26431, + 0 + ] + }, + "from": [ + 32.6127, + -3.9739 + ], + "tag": null, + "to": [ + 32.8522, + -3.5369 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26437, + 26509, + 0 + ] + }, + "from": [ + 32.8522, + -3.5369 + ], + "tag": null, + "to": [ + 32.6894, + -2.7305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26515, + 26589, + 0 + ] + }, + "from": [ + 32.6894, + -2.7305 + ], + "tag": null, + "to": [ + 32.5997, + -2.8194 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26595, + 26667, + 0 + ] + }, + "from": [ + 32.5997, + -2.8194 + ], + "tag": null, + "to": [ + 33.5201, + -2.9928 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26673, + 26747, + 0 + ] + }, + "from": [ + 33.5201, + -2.9928 + ], + "tag": null, + "to": [ + 33.5218, + -3.5107 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26753, + 26824, + 0 + ] + }, + "from": [ + 33.5218, + -3.5107 + ], + "tag": null, + "to": [ + 34.1424, + -4.384 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26830, + 26901, + 0 + ] + }, + "from": [ + 34.1424, + -4.384 + ], + "tag": null, + "to": [ + 33.3648, + -3.6237 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26907, + 26956, + 0 + ] + }, + "from": [ + 33.3648, + -3.6237 + ], + "tag": null, + "to": [ + 33.9087, + -2.7788 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26962, + 27036, + 0 + ] + }, + "from": [ + 33.9087, + -2.7788 + ], + "tag": null, + "to": [ + 33.7784, + -2.7668 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27042, + 27115, + 0 + ] + }, + "from": [ + 33.7784, + -2.7668 + ], + "tag": null, + "to": [ + 33.6127, + -2.9745 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27121, + 27194, + 0 + ] + }, + "from": [ + 33.6127, + -2.9745 + ], + "tag": null, + "to": [ + 33.5164, + -3.0287 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27200, + 27248, + 0 + ] + }, + "from": [ + 33.5164, + -3.0287 + ], + "tag": null, + "to": [ + 34.4186, + -2.6328 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27254, + 27327, + 0 + ] + }, + "from": [ + 34.4186, + -2.6328 + ], + "tag": null, + "to": [ + 34.6985, + -2.8106 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27333, + 27381, + 0 + ] + }, + "from": [ + 34.6985, + -2.8106 + ], + "tag": null, + "to": [ + 35.2221, + -2.1163 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27387, + 27459, + 0 + ] + }, + "from": [ + 35.2221, + -2.1163 + ], + "tag": null, + "to": [ + 35.6135, + -2.9002 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27465, + 27514, + 0 + ] + }, + "from": [ + 35.6135, + -2.9002 + ], + "tag": null, + "to": [ + 36.4549, + -2.3607 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27520, + 27591, + 0 + ] + }, + "from": [ + 36.4549, + -2.3607 + ], + "tag": null, + "to": [ + 37.0687, + -2.1395 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27597, + 27646, + 0 + ] + }, + "from": [ + 37.0687, + -2.1395 + ], + "tag": null, + "to": [ + 37.9518, + -1.4398 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27652, + 27724, + 0 + ] + }, + "from": [ + 37.9518, + -1.4398 + ], + "tag": null, + "to": [ + 37.5847, + -1.2278 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27730, + 27801, + 0 + ] + }, + "from": [ + 37.5847, + -1.2278 + ], + "tag": null, + "to": [ + 37.114, + -0.7373 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27807, + 27878, + 0 + ] + }, + "from": [ + 37.114, + -0.7373 + ], + "tag": null, + "to": [ + 36.2812, + -0.2695 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27884, + 27957, + 0 + ] + }, + "from": [ + 36.2812, + -0.2695 + ], + "tag": null, + "to": [ + 35.47, + -0.6877 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27963, + 28035, + 0 + ] + }, + "from": [ + 35.47, + -0.6877 + ], + "tag": null, + "to": [ + 35.5081, + -0.431 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28041, + 28113, + 0 + ] + }, + "from": [ + 35.5081, + -0.431 + ], + "tag": null, + "to": [ + 35.7476, + 0.0059 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28119, + 28191, + 0 + ] + }, + "from": [ + 35.7476, + 0.0059 + ], + "tag": null, + "to": [ + 35.5848, + 0.8124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28197, + 28271, + 0 + ] + }, + "from": [ + 35.5848, + 0.8124 + ], + "tag": null, + "to": [ + 35.4951, + 0.7235 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28277, + 28349, + 0 + ] + }, + "from": [ + 35.4951, + 0.7235 + ], + "tag": null, + "to": [ + 36.4154, + 0.5501 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28355, + 28429, + 0 + ] + }, + "from": [ + 36.4154, + 0.5501 + ], + "tag": null, + "to": [ + 36.4172, + 0.0322 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28435, + 28506, + 0 + ] + }, + "from": [ + 36.4172, + 0.0322 + ], + "tag": null, + "to": [ + 37.0378, + -0.8411 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28512, + 28583, + 0 + ] + }, + "from": [ + 37.0378, + -0.8411 + ], + "tag": null, + "to": [ + 36.2601, + -0.0809 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28589, + 28638, + 0 + ] + }, + "from": [ + 36.2601, + -0.0809 + ], + "tag": null, + "to": [ + 36.8041, + 0.7641 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28644, + 28718, + 0 + ] + }, + "from": [ + 36.8041, + 0.7641 + ], + "tag": null, + "to": [ + 36.6737, + 0.7761 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28724, + 28797, + 0 + ] + }, + "from": [ + 36.6737, + 0.7761 + ], + "tag": null, + "to": [ + 36.5081, + 0.5684 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28803, + 28876, + 0 + ] + }, + "from": [ + 36.5081, + 0.5684 + ], + "tag": null, + "to": [ + 36.4118, + 0.5142 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28882, + 28930, + 0 + ] + }, + "from": [ + 36.4118, + 0.5142 + ], + "tag": null, + "to": [ + 37.3139, + 0.9101 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28936, + 29009, + 0 + ] + }, + "from": [ + 37.3139, + 0.9101 + ], + "tag": null, + "to": [ + 37.5939, + 0.7323 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29015, + 29063, + 0 + ] + }, + "from": [ + 37.5939, + 0.7323 + ], + "tag": null, + "to": [ + 38.1175, + 1.4266 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29069, + 29141, + 0 + ] + }, + "from": [ + 38.1175, + 1.4266 + ], + "tag": null, + "to": [ + 38.5089, + 0.6426 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29147, + 29196, + 0 + ] + }, + "from": [ + 38.5089, + 0.6426 + ], + "tag": null, + "to": [ + 39.3503, + 1.1822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29202, + 29273, + 0 + ] + }, + "from": [ + 39.3503, + 1.1822 + ], + "tag": null, + "to": [ + 39.9641, + 1.4034 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29279, + 29328, + 0 + ] + }, + "from": [ + 39.9641, + 1.4034 + ], + "tag": null, + "to": [ + 40.8471, + 2.1031 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29334, + 29407, + 0 + ] + }, + "from": [ + 40.8471, + 2.1031 + ], + "tag": null, + "to": [ + 40.4342, + 1.6878 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29413, + 29484, + 0 + ] + }, + "from": [ + 40.4342, + 1.6878 + ], + "tag": null, + "to": [ + 40.9512, + 0.7792 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29490, + 29562, + 0 + ] + }, + "from": [ + 40.9512, + 0.7792 + ], + "tag": null, + "to": [ + 40.2795, + -0.1813 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29568, + 29642, + 0 + ] + }, + "from": [ + 40.2795, + -0.1813 + ], + "tag": null, + "to": [ + 40.2898, + -0.5548 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29648, + 29721, + 0 + ] + }, + "from": [ + 40.2898, + -0.5548 + ], + "tag": null, + "to": [ + 40.3934, + -0.9777 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29727, + 29799, + 0 + ] + }, + "from": [ + 40.3934, + -0.9777 + ], + "tag": null, + "to": [ + 40.8454, + -1.09 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29805, + 29877, + 0 + ] + }, + "from": [ + 40.8454, + -1.09 + ], + "tag": null, + "to": [ + 39.9633, + -1.8055 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29883, + 29932, + 0 + ] + }, + "from": [ + 39.9633, + -1.8055 + ], + "tag": null, + "to": [ + 40.8828, + -1.5364 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29938, + 30009, + 0 + ] + }, + "from": [ + 40.8828, + -1.5364 + ], + "tag": null, + "to": [ + 41.5927, + -1.4193 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30015, + 30087, + 0 + ] + }, + "from": [ + 41.5927, + -1.4193 + ], + "tag": null, + "to": [ + 41.214, + -0.7086 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30093, + 30167, + 0 + ] + }, + "from": [ + 41.214, + -0.7086 + ], + "tag": null, + "to": [ + 40.9167, + -0.7751 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30173, + 30245, + 0 + ] + }, + "from": [ + 40.9167, + -0.7751 + ], + "tag": null, + "to": [ + 41.1464, + -1.5353 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30251, + 30323, + 0 + ] + }, + "from": [ + 41.1464, + -1.5353 + ], + "tag": null, + "to": [ + 40.5107, + -1.3407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30329, + 30378, + 0 + ] + }, + "from": [ + 40.5107, + -1.3407 + ], + "tag": null, + "to": [ + 41.0828, + -1.0518 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30384, + 30457, + 0 + ] + }, + "from": [ + 41.0828, + -1.0518 + ], + "tag": null, + "to": [ + 40.1248, + -1.0743 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30463, + 30534, + 0 + ] + }, + "from": [ + 40.1248, + -1.0743 + ], + "tag": null, + "to": [ + 40.4547, + -1.9097 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30540, + 30611, + 0 + ] + }, + "from": [ + 40.4547, + -1.9097 + ], + "tag": null, + "to": [ + 41.1982, + -2.7016 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30617, + 30666, + 0 + ] + }, + "from": [ + 41.1982, + -2.7016 + ], + "tag": null, + "to": [ + 42.1917, + -1.7974 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30672, + 30743, + 0 + ] + }, + "from": [ + 42.1917, + -1.7974 + ], + "tag": null, + "to": [ + 41.6882, + -1.2823 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30749, + 30798, + 0 + ] + }, + "from": [ + 41.6882, + -1.2823 + ], + "tag": null, + "to": [ + 42.2408, + -0.521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30804, + 30875, + 0 + ] + }, + "from": [ + 42.2408, + -0.521 + ], + "tag": null, + "to": [ + 43.1001, + -0.4369 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30881, + 30952, + 0 + ] + }, + "from": [ + 43.1001, + -0.4369 + ], + "tag": null, + "to": [ + 42.282, + -1.3404 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30958, + 31030, + 0 + ] + }, + "from": [ + 42.282, + -1.3404 + ], + "tag": null, + "to": [ + 42.5986, + -1.5823 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31036, + 31110, + 0 + ] + }, + "from": [ + 42.5986, + -1.5823 + ], + "tag": null, + "to": [ + 42.1547, + -1.8414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31116, + 31189, + 0 + ] + }, + "from": [ + 42.1547, + -1.8414 + ], + "tag": null, + "to": [ + 41.4942, + -2.245 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31195, + 31267, + 0 + ] + }, + "from": [ + 41.4942, + -2.245 + ], + "tag": null, + "to": [ + 40.7771, + -2.0104 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31273, + 31346, + 0 + ] + }, + "from": [ + 40.7771, + -2.0104 + ], + "tag": null, + "to": [ + 40.5203, + -2.4607 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31352, + 31423, + 0 + ] + }, + "from": [ + 40.5203, + -2.4607 + ], + "tag": null, + "to": [ + 41.1955, + -3.4317 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31429, + 31500, + 0 + ] + }, + "from": [ + 41.1955, + -3.4317 + ], + "tag": null, + "to": [ + 40.6265, + -2.8398 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31506, + 31577, + 0 + ] + }, + "from": [ + 40.6265, + -2.8398 + ], + "tag": null, + "to": [ + 39.7937, + -2.372 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31583, + 31656, + 0 + ] + }, + "from": [ + 39.7937, + -2.372 + ], + "tag": null, + "to": [ + 38.9826, + -2.7902 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31662, + 31734, + 0 + ] + }, + "from": [ + 38.9826, + -2.7902 + ], + "tag": null, + "to": [ + 39.0206, + -2.5335 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31740, + 31812, + 0 + ] + }, + "from": [ + 39.0206, + -2.5335 + ], + "tag": null, + "to": [ + 39.2601, + -2.0966 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31818, + 31890, + 0 + ] + }, + "from": [ + 39.2601, + -2.0966 + ], + "tag": null, + "to": [ + 39.0973, + -1.2902 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31896, + 31970, + 0 + ] + }, + "from": [ + 39.0973, + -1.2902 + ], + "tag": null, + "to": [ + 39.0076, + -1.379 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31976, + 32048, + 0 + ] + }, + "from": [ + 39.0076, + -1.379 + ], + "tag": null, + "to": [ + 39.9279, + -1.5525 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32054, + 32128, + 0 + ] + }, + "from": [ + 39.9279, + -1.5525 + ], + "tag": null, + "to": [ + 39.9297, + -2.0703 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32134, + 32205, + 0 + ] + }, + "from": [ + 39.9297, + -2.0703 + ], + "tag": null, + "to": [ + 40.5503, + -2.9437 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32211, + 32282, + 0 + ] + }, + "from": [ + 40.5503, + -2.9437 + ], + "tag": null, + "to": [ + 39.7727, + -2.1834 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32288, + 32337, + 0 + ] + }, + "from": [ + 39.7727, + -2.1834 + ], + "tag": null, + "to": [ + 40.3166, + -1.3385 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32343, + 32417, + 0 + ] + }, + "from": [ + 40.3166, + -1.3385 + ], + "tag": null, + "to": [ + 40.1863, + -1.3264 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32423, + 32496, + 0 + ] + }, + "from": [ + 40.1863, + -1.3264 + ], + "tag": null, + "to": [ + 40.0206, + -1.5342 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32502, + 32575, + 0 + ] + }, + "from": [ + 40.0206, + -1.5342 + ], + "tag": null, + "to": [ + 39.9243, + -1.5883 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32581, + 32629, + 0 + ] + }, + "from": [ + 39.9243, + -1.5883 + ], + "tag": null, + "to": [ + 40.8264, + -1.1924 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32635, + 32708, + 0 + ] + }, + "from": [ + 40.8264, + -1.1924 + ], + "tag": null, + "to": [ + 41.1064, + -1.3702 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32714, + 32762, + 0 + ] + }, + "from": [ + 41.1064, + -1.3702 + ], + "tag": null, + "to": [ + 41.63, + -0.6759 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32768, + 32840, + 0 + ] + }, + "from": [ + 41.63, + -0.6759 + ], + "tag": null, + "to": [ + 42.0214, + -1.4599 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32846, + 32895, + 0 + ] + }, + "from": [ + 42.0214, + -1.4599 + ], + "tag": null, + "to": [ + 42.8628, + -0.9203 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32901, + 32972, + 0 + ] + }, + "from": [ + 42.8628, + -0.9203 + ], + "tag": null, + "to": [ + 43.4766, + -0.6991 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32978, + 33051, + 0 + ] + }, + "from": [ + 43.4766, + -0.6991 + ], + "tag": null, + "to": [ + 43.3808, + -1.4525 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33057, + 33130, + 0 + ] + }, + "from": [ + 43.3808, + -1.4525 + ], + "tag": null, + "to": [ + 43.2082, + -2.2194 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33136, + 33185, + 0 + ] + }, + "from": [ + 43.2082, + -2.2194 + ], + "tag": null, + "to": [ + 44.1027, + -1.6101 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33191, + 33264, + 0 + ] + }, + "from": [ + 44.1027, + -1.6101 + ], + "tag": null, + "to": [ + 43.6898, + -2.0254 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33270, + 33341, + 0 + ] + }, + "from": [ + 43.6898, + -2.0254 + ], + "tag": null, + "to": [ + 44.2068, + -2.9339 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33347, + 33418, + 0 + ] + }, + "from": [ + 44.2068, + -2.9339 + ], + "tag": null, + "to": [ + 44.882, + -3.9049 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33424, + 33495, + 0 + ] + }, + "from": [ + 44.882, + -3.9049 + ], + "tag": null, + "to": [ + 44.313, + -3.313 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33501, + 33572, + 0 + ] + }, + "from": [ + 44.313, + -3.313 + ], + "tag": null, + "to": [ + 45.2594, + -3.5815 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33578, + 33627, + 0 + ] + }, + "from": [ + 45.2594, + -3.5815 + ], + "tag": null, + "to": [ + 45.7836, + -2.6803 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33633, + 33706, + 0 + ] + }, + "from": [ + 45.7836, + -2.6803 + ], + "tag": null, + "to": [ + 45.6411, + -3.1997 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33712, + 33784, + 0 + ] + }, + "from": [ + 45.6411, + -3.1997 + ], + "tag": null, + "to": [ + 45.2123, + -3.6221 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33790, + 33863, + 0 + ] + }, + "from": [ + 45.2123, + -3.6221 + ], + "tag": null, + "to": [ + 45.1192, + -4.5284 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33869, + 33940, + 0 + ] + }, + "from": [ + 45.1192, + -4.5284 + ], + "tag": null, + "to": [ + 44.8424, + -3.8468 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33946, + 34017, + 0 + ] + }, + "from": [ + 44.8424, + -3.8468 + ], + "tag": null, + "to": [ + 45.8221, + -3.929 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34023, + 34094, + 0 + ] + }, + "from": [ + 45.8221, + -3.929 + ], + "tag": null, + "to": [ + 44.9554, + -4.23 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34100, + 34171, + 0 + ] + }, + "from": [ + 44.9554, + -4.23 + ], + "tag": null, + "to": [ + 45.4928, + -4.2098 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34177, + 34248, + 0 + ] + }, + "from": [ + 45.4928, + -4.2098 + ], + "tag": null, + "to": [ + 46.4261, + -4.8326 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34254, + 34327, + 0 + ] + }, + "from": [ + 46.4261, + -4.8326 + ], + "tag": null, + "to": [ + 46.6066, + -5.2015 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34333, + 34382, + 0 + ] + }, + "from": [ + 46.6066, + -5.2015 + ], + "tag": null, + "to": [ + 47.1451, + -4.9638 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34388, + 34460, + 0 + ] + }, + "from": [ + 47.1451, + -4.9638 + ], + "tag": null, + "to": [ + 47.5355, + -4.821 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34466, + 34537, + 0 + ] + }, + "from": [ + 47.5355, + -4.821 + ], + "tag": null, + "to": [ + 47.6333, + -3.8303 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34543, + 34614, + 0 + ] + }, + "from": [ + 47.6333, + -3.8303 + ], + "tag": null, + "to": [ + 48.162, + -4.6227 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34620, + 34691, + 0 + ] + }, + "from": [ + 48.162, + -4.6227 + ], + "tag": null, + "to": [ + 48.541, + -4.4988 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34697, + 34768, + 0 + ] + }, + "from": [ + 48.541, + -4.4988 + ], + "tag": null, + "to": [ + 47.5925, + -3.8258 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34774, + 34846, + 0 + ] + }, + "from": [ + 47.5925, + -3.8258 + ], + "tag": null, + "to": [ + 48.3377, + -4.039 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34852, + 34924, + 0 + ] + }, + "from": [ + 48.3377, + -4.039 + ], + "tag": null, + "to": [ + 48.525, + -4.1986 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34930, + 35003, + 0 + ] + }, + "from": [ + 48.525, + -4.1986 + ], + "tag": null, + "to": [ + 48.4677, + -4.7422 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35009, + 35082, + 0 + ] + }, + "from": [ + 48.4677, + -4.7422 + ], + "tag": null, + "to": [ + 48.3719, + -5.4956 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35088, + 35161, + 0 + ] + }, + "from": [ + 48.3719, + -5.4956 + ], + "tag": null, + "to": [ + 48.1993, + -6.2625 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35167, + 35216, + 0 + ] + }, + "from": [ + 48.1993, + -6.2625 + ], + "tag": null, + "to": [ + 49.0938, + -5.6532 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35222, + 35293, + 0 + ] + }, + "from": [ + 49.0938, + -5.6532 + ], + "tag": null, + "to": [ + 48.4699, + -5.2478 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35299, + 35371, + 0 + ] + }, + "from": [ + 48.4699, + -5.2478 + ], + "tag": null, + "to": [ + 48.6079, + -5.7266 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35377, + 35448, + 0 + ] + }, + "from": [ + 48.6079, + -5.7266 + ], + "tag": null, + "to": [ + 47.6562, + -4.8646 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35454, + 35503, + 0 + ] + }, + "from": [ + 47.6562, + -4.8646 + ], + "tag": null, + "to": [ + 48.5961, + -4.2319 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35509, + 35582, + 0 + ] + }, + "from": [ + 48.5961, + -4.2319 + ], + "tag": null, + "to": [ + 47.7329, + -4.2158 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35588, + 35660, + 0 + ] + }, + "from": [ + 47.7329, + -4.2158 + ], + "tag": null, + "to": [ + 47.9246, + -4.7074 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35666, + 35739, + 0 + ] + }, + "from": [ + 47.9246, + -4.7074 + ], + "tag": null, + "to": [ + 47.0601, + -4.8218 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35745, + 35819, + 0 + ] + }, + "from": [ + 47.0601, + -4.8218 + ], + "tag": null, + "to": [ + 47.031, + -5.3432 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35825, + 35896, + 0 + ] + }, + "from": [ + 47.031, + -5.3432 + ], + "tag": null, + "to": [ + 46.1597, + -4.5566 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35902, + 35951, + 0 + ] + }, + "from": [ + 46.1597, + -4.5566 + ], + "tag": null, + "to": [ + 47.0441, + -4.7391 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35957, + 36028, + 0 + ] + }, + "from": [ + 47.0441, + -4.7391 + ], + "tag": null, + "to": [ + 46.3462, + -4.695 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36034, + 36109, + 0 + ] + }, + "from": [ + 46.3462, + -4.695 + ], + "tag": null, + "to": [ + 45.8657, + -4.7236 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36115, + 36188, + 0 + ] + }, + "from": [ + 45.8657, + -4.7236 + ], + "tag": null, + "to": [ + 46.2785, + -5.173 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36194, + 36242, + 0 + ] + }, + "from": [ + 46.2785, + -5.173 + ], + "tag": null, + "to": [ + 47.0697, + -4.2795 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36248, + 36319, + 0 + ] + }, + "from": [ + 47.0697, + -4.2795 + ], + "tag": null, + "to": [ + 47.7204, + -4.9685 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36325, + 36397, + 0 + ] + }, + "from": [ + 47.7204, + -4.9685 + ], + "tag": null, + "to": [ + 47.8253, + -5.5153 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36403, + 36475, + 0 + ] + }, + "from": [ + 47.8253, + -5.5153 + ], + "tag": null, + "to": [ + 47.2492, + -5.7793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36481, + 36552, + 0 + ] + }, + "from": [ + 47.2492, + -5.7793 + ], + "tag": null, + "to": [ + 47.6475, + -4.9756 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36558, + 36607, + 0 + ] + }, + "from": [ + 47.6475, + -4.9756 + ], + "tag": null, + "to": [ + 46.9737, + -5.894 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36613, + 36685, + 0 + ] + }, + "from": [ + 46.9737, + -5.894 + ], + "tag": null, + "to": [ + 46.1137, + -6.844 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36691, + 36762, + 0 + ] + }, + "from": [ + 46.1137, + -6.844 + ], + "tag": null, + "to": [ + 46.7423, + -7.3626 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36768, + 36839, + 0 + ] + }, + "from": [ + 46.7423, + -7.3626 + ], + "tag": null, + "to": [ + 47.0645, + -7.1164 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36845, + 36917, + 0 + ] + }, + "from": [ + 47.0645, + -7.1164 + ], + "tag": null, + "to": [ + 47.262, + -7.8693 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36923, + 36996, + 0 + ] + }, + "from": [ + 47.262, + -7.8693 + ], + "tag": null, + "to": [ + 46.8302, + -7.6799 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37002, + 37073, + 0 + ] + }, + "from": [ + 46.8302, + -7.6799 + ], + "tag": null, + "to": [ + 47.7017, + -8.4015 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37079, + 37151, + 0 + ] + }, + "from": [ + 47.7017, + -8.4015 + ], + "tag": null, + "to": [ + 47.3347, + -8.1895 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37157, + 37228, + 0 + ] + }, + "from": [ + 47.3347, + -8.1895 + ], + "tag": null, + "to": [ + 46.8639, + -7.6989 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37234, + 37305, + 0 + ] + }, + "from": [ + 46.8639, + -7.6989 + ], + "tag": null, + "to": [ + 46.0311, + -7.2312 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37311, + 37384, + 0 + ] + }, + "from": [ + 46.0311, + -7.2312 + ], + "tag": null, + "to": [ + 45.2199, + -7.6493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37390, + 37462, + 0 + ] + }, + "from": [ + 45.2199, + -7.6493 + ], + "tag": null, + "to": [ + 45.258, + -7.3927 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37468, + 37540, + 0 + ] + }, + "from": [ + 45.258, + -7.3927 + ], + "tag": null, + "to": [ + 45.4975, + -6.9558 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37546, + 37618, + 0 + ] + }, + "from": [ + 45.4975, + -6.9558 + ], + "tag": null, + "to": [ + 45.3347, + -6.1493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37624, + 37698, + 0 + ] + }, + "from": [ + 45.3347, + -6.1493 + ], + "tag": null, + "to": [ + 45.245, + -6.2382 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37704, + 37776, + 0 + ] + }, + "from": [ + 45.245, + -6.2382 + ], + "tag": null, + "to": [ + 46.1653, + -6.4116 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37782, + 37856, + 0 + ] + }, + "from": [ + 46.1653, + -6.4116 + ], + "tag": null, + "to": [ + 46.1671, + -6.9295 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37862, + 37933, + 0 + ] + }, + "from": [ + 46.1671, + -6.9295 + ], + "tag": null, + "to": [ + 46.7877, + -7.8028 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37939, + 38010, + 0 + ] + }, + "from": [ + 46.7877, + -7.8028 + ], + "tag": null, + "to": [ + 46.0101, + -7.0425 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38016, + 38065, + 0 + ] + }, + "from": [ + 46.0101, + -7.0425 + ], + "tag": null, + "to": [ + 46.554, + -6.1976 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38071, + 38145, + 0 + ] + }, + "from": [ + 46.554, + -6.1976 + ], + "tag": null, + "to": [ + 46.4236, + -6.1856 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38151, + 38224, + 0 + ] + }, + "from": [ + 46.4236, + -6.1856 + ], + "tag": null, + "to": [ + 46.258, + -6.3933 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38230, + 38303, + 0 + ] + }, + "from": [ + 46.258, + -6.3933 + ], + "tag": null, + "to": [ + 46.1617, + -6.4475 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38309, + 38357, + 0 + ] + }, + "from": [ + 46.1617, + -6.4475 + ], + "tag": null, + "to": [ + 47.0638, + -6.0516 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38363, + 38436, + 0 + ] + }, + "from": [ + 47.0638, + -6.0516 + ], + "tag": null, + "to": [ + 47.3438, + -6.2294 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38442, + 38490, + 0 + ] + }, + "from": [ + 47.3438, + -6.2294 + ], + "tag": null, + "to": [ + 47.8674, + -5.5351 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38496, + 38568, + 0 + ] + }, + "from": [ + 47.8674, + -5.5351 + ], + "tag": null, + "to": [ + 48.2588, + -6.319 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38574, + 38623, + 0 + ] + }, + "from": [ + 48.2588, + -6.319 + ], + "tag": null, + "to": [ + 49.1002, + -5.7795 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38629, + 38700, + 0 + ] + }, + "from": [ + 49.1002, + -5.7795 + ], + "tag": null, + "to": [ + 49.714, + -5.5583 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38706, + 38755, + 0 + ] + }, + "from": [ + 49.714, + -5.5583 + ], + "tag": null, + "to": [ + 50.597, + -4.8586 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38761, + 38834, + 0 + ] + }, + "from": [ + 50.597, + -4.8586 + ], + "tag": null, + "to": [ + 50.1841, + -5.2739 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38840, + 38911, + 0 + ] + }, + "from": [ + 50.1841, + -5.2739 + ], + "tag": null, + "to": [ + 50.7011, + -6.1824 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38917, + 38989, + 0 + ] + }, + "from": [ + 50.7011, + -6.1824 + ], + "tag": null, + "to": [ + 50.0294, + -7.143 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38995, + 39069, + 0 + ] + }, + "from": [ + 50.0294, + -7.143 + ], + "tag": null, + "to": [ + 50.0397, + -7.5164 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39075, + 39148, + 0 + ] + }, + "from": [ + 50.0397, + -7.5164 + ], + "tag": null, + "to": [ + 50.1433, + -7.9394 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39154, + 39226, + 0 + ] + }, + "from": [ + 50.1433, + -7.9394 + ], + "tag": null, + "to": [ + 50.5953, + -8.0517 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39232, + 39304, + 0 + ] + }, + "from": [ + 50.5953, + -8.0517 + ], + "tag": null, + "to": [ + 49.7132, + -8.7672 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39310, + 39359, + 0 + ] + }, + "from": [ + 49.7132, + -8.7672 + ], + "tag": null, + "to": [ + 50.6328, + -8.4981 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39365, + 39436, + 0 + ] + }, + "from": [ + 50.6328, + -8.4981 + ], + "tag": null, + "to": [ + 51.3427, + -8.381 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39442, + 39514, + 0 + ] + }, + "from": [ + 51.3427, + -8.381 + ], + "tag": null, + "to": [ + 50.9639, + -7.6703 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39520, + 39594, + 0 + ] + }, + "from": [ + 50.9639, + -7.6703 + ], + "tag": null, + "to": [ + 50.6666, + -7.7368 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39600, + 39672, + 0 + ] + }, + "from": [ + 50.6666, + -7.7368 + ], + "tag": null, + "to": [ + 50.8963, + -8.497 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39678, + 39750, + 0 + ] + }, + "from": [ + 50.8963, + -8.497 + ], + "tag": null, + "to": [ + 50.2606, + -8.3024 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39756, + 39805, + 0 + ] + }, + "from": [ + 50.2606, + -8.3024 + ], + "tag": null, + "to": [ + 50.8327, + -8.0135 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39811, + 39884, + 0 + ] + }, + "from": [ + 50.8327, + -8.0135 + ], + "tag": null, + "to": [ + 49.8747, + -8.036 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39890, + 39961, + 0 + ] + }, + "from": [ + 49.8747, + -8.036 + ], + "tag": null, + "to": [ + 50.2046, + -8.8713 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39967, + 40038, + 0 + ] + }, + "from": [ + 50.2046, + -8.8713 + ], + "tag": null, + "to": [ + 50.9481, + -9.6633 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40044, + 40093, + 0 + ] + }, + "from": [ + 50.9481, + -9.6633 + ], + "tag": null, + "to": [ + 51.9417, + -8.759 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40099, + 40170, + 0 + ] + }, + "from": [ + 51.9417, + -8.759 + ], + "tag": null, + "to": [ + 51.4381, + -8.2439 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40176, + 40225, + 0 + ] + }, + "from": [ + 51.4381, + -8.2439 + ], + "tag": null, + "to": [ + 51.9907, + -7.4827 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40231, + 40302, + 0 + ] + }, + "from": [ + 51.9907, + -7.4827 + ], + "tag": null, + "to": [ + 52.85, + -7.3985 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40308, + 40379, + 0 + ] + }, + "from": [ + 52.85, + -7.3985 + ], + "tag": null, + "to": [ + 52.0319, + -8.3021 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40385, + 40457, + 0 + ] + }, + "from": [ + 52.0319, + -8.3021 + ], + "tag": null, + "to": [ + 52.3485, + -8.544 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40463, + 40537, + 0 + ] + }, + "from": [ + 52.3485, + -8.544 + ], + "tag": null, + "to": [ + 51.9046, + -8.8031 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40543, + 40616, + 0 + ] + }, + "from": [ + 51.9046, + -8.8031 + ], + "tag": null, + "to": [ + 51.2441, + -9.2067 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40622, + 40694, + 0 + ] + }, + "from": [ + 51.2441, + -9.2067 + ], + "tag": null, + "to": [ + 50.527, + -8.9721 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40700, + 40773, + 0 + ] + }, + "from": [ + 50.527, + -8.9721 + ], + "tag": null, + "to": [ + 50.2702, + -9.4224 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40779, + 40850, + 0 + ] + }, + "from": [ + 50.2702, + -9.4224 + ], + "tag": null, + "to": [ + 50.9454, + -10.3934 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40856, + 40927, + 0 + ] + }, + "from": [ + 50.9454, + -10.3934 + ], + "tag": null, + "to": [ + 50.3764, + -9.8015 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40933, + 41004, + 0 + ] + }, + "from": [ + 50.3764, + -9.8015 + ], + "tag": null, + "to": [ + 49.5436, + -9.3337 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41010, + 41083, + 0 + ] + }, + "from": [ + 49.5436, + -9.3337 + ], + "tag": null, + "to": [ + 48.7325, + -9.7519 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41089, + 41161, + 0 + ] + }, + "from": [ + 48.7325, + -9.7519 + ], + "tag": null, + "to": [ + 48.7705, + -9.4952 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41167, + 41239, + 0 + ] + }, + "from": [ + 48.7705, + -9.4952 + ], + "tag": null, + "to": [ + 49.01, + -9.0583 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41245, + 41317, + 0 + ] + }, + "from": [ + 49.01, + -9.0583 + ], + "tag": null, + "to": [ + 48.8473, + -8.2518 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41323, + 41397, + 0 + ] + }, + "from": [ + 48.8473, + -8.2518 + ], + "tag": null, + "to": [ + 48.7575, + -8.3407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41403, + 41475, + 0 + ] + }, + "from": [ + 48.7575, + -8.3407 + ], + "tag": null, + "to": [ + 49.6779, + -8.5141 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41481, + 41555, + 0 + ] + }, + "from": [ + 49.6779, + -8.5141 + ], + "tag": null, + "to": [ + 49.6796, + -9.032 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41561, + 41632, + 0 + ] + }, + "from": [ + 49.6796, + -9.032 + ], + "tag": null, + "to": [ + 50.3002, + -9.9053 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41638, + 41709, + 0 + ] + }, + "from": [ + 50.3002, + -9.9053 + ], + "tag": null, + "to": [ + 49.5226, + -9.1451 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41715, + 41764, + 0 + ] + }, + "from": [ + 49.5226, + -9.1451 + ], + "tag": null, + "to": [ + 50.0665, + -8.3001 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41770, + 41844, + 0 + ] + }, + "from": [ + 50.0665, + -8.3001 + ], + "tag": null, + "to": [ + 49.9362, + -8.2881 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41850, + 41923, + 0 + ] + }, + "from": [ + 49.9362, + -8.2881 + ], + "tag": null, + "to": [ + 49.7705, + -8.4958 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41929, + 42002, + 0 + ] + }, + "from": [ + 49.7705, + -8.4958 + ], + "tag": null, + "to": [ + 49.6743, + -8.55 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42008, + 42056, + 0 + ] + }, + "from": [ + 49.6743, + -8.55 + ], + "tag": null, + "to": [ + 50.5764, + -8.1541 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42062, + 42135, + 0 + ] + }, + "from": [ + 50.5764, + -8.1541 + ], + "tag": null, + "to": [ + 50.8563, + -8.3319 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42141, + 42189, + 0 + ] + }, + "from": [ + 50.8563, + -8.3319 + ], + "tag": null, + "to": [ + 51.3799, + -7.6376 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42195, + 42267, + 0 + ] + }, + "from": [ + 51.3799, + -7.6376 + ], + "tag": null, + "to": [ + 51.7713, + -8.4216 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42273, + 42322, + 0 + ] + }, + "from": [ + 51.7713, + -8.4216 + ], + "tag": null, + "to": [ + 52.6128, + -7.882 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42328, + 42399, + 0 + ] + }, + "from": [ + 52.6128, + -7.882 + ], + "tag": null, + "to": [ + 53.2265, + -7.6608 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42405, + 42454, + 0 + ] + }, + "from": [ + 53.2265, + -7.6608 + ], + "tag": null, + "to": [ + 54.1096, + -6.9611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42460, + 42533, + 0 + ] + }, + "from": [ + 54.1096, + -6.9611 + ], + "tag": null, + "to": [ + 53.6967, + -7.3764 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42539, + 42610, + 0 + ] + }, + "from": [ + 53.6967, + -7.3764 + ], + "tag": null, + "to": [ + 54.2136, + -8.285 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42616, + 42687, + 0 + ] + }, + "from": [ + 54.2136, + -8.285 + ], + "tag": null, + "to": [ + 54.8888, + -9.2559 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42693, + 42764, + 0 + ] + }, + "from": [ + 54.8888, + -9.2559 + ], + "tag": null, + "to": [ + 54.3199, + -8.664 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42770, + 42841, + 0 + ] + }, + "from": [ + 54.3199, + -8.664 + ], + "tag": null, + "to": [ + 55.2663, + -8.9325 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42847, + 42896, + 0 + ] + }, + "from": [ + 55.2663, + -8.9325 + ], + "tag": null, + "to": [ + 55.7905, + -8.0314 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42902, + 42975, + 0 + ] + }, + "from": [ + 55.7905, + -8.0314 + ], + "tag": null, + "to": [ + 55.6479, + -8.5508 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42981, + 43053, + 0 + ] + }, + "from": [ + 55.6479, + -8.5508 + ], + "tag": null, + "to": [ + 55.2192, + -8.9731 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43059, + 43132, + 0 + ] + }, + "from": [ + 55.2192, + -8.9731 + ], + "tag": null, + "to": [ + 55.126, + -9.8794 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43138, + 43209, + 0 + ] + }, + "from": [ + 55.126, + -9.8794 + ], + "tag": null, + "to": [ + 54.8493, + -9.1978 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43215, + 43286, + 0 + ] + }, + "from": [ + 54.8493, + -9.1978 + ], + "tag": null, + "to": [ + 55.8289, + -9.28 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43292, + 43363, + 0 + ] + }, + "from": [ + 55.8289, + -9.28 + ], + "tag": null, + "to": [ + 54.9623, + -9.5811 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43369, + 43440, + 0 + ] + }, + "from": [ + 54.9623, + -9.5811 + ], + "tag": null, + "to": [ + 55.4997, + -9.5608 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43446, + 43517, + 0 + ] + }, + "from": [ + 55.4997, + -9.5608 + ], + "tag": null, + "to": [ + 56.4329, + -10.1836 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43523, + 43596, + 0 + ] + }, + "from": [ + 56.4329, + -10.1836 + ], + "tag": null, + "to": [ + 56.6135, + -10.5526 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43602, + 43651, + 0 + ] + }, + "from": [ + 56.6135, + -10.5526 + ], + "tag": null, + "to": [ + 57.1519, + -10.3148 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43657, + 43729, + 0 + ] + }, + "from": [ + 57.1519, + -10.3148 + ], + "tag": null, + "to": [ + 57.5423, + -10.1721 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43735, + 43806, + 0 + ] + }, + "from": [ + 57.5423, + -10.1721 + ], + "tag": null, + "to": [ + 57.6402, + -9.1813 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43812, + 43883, + 0 + ] + }, + "from": [ + 57.6402, + -9.1813 + ], + "tag": null, + "to": [ + 58.1688, + -9.9738 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43889, + 43960, + 0 + ] + }, + "from": [ + 58.1688, + -9.9738 + ], + "tag": null, + "to": [ + 58.5478, + -9.8498 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43966, + 44037, + 0 + ] + }, + "from": [ + 58.5478, + -9.8498 + ], + "tag": null, + "to": [ + 57.5993, + -9.1768 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44043, + 44115, + 0 + ] + }, + "from": [ + 57.5993, + -9.1768 + ], + "tag": null, + "to": [ + 58.3445, + -9.39 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44121, + 44193, + 0 + ] + }, + "from": [ + 58.3445, + -9.39 + ], + "tag": null, + "to": [ + 58.5318, + -9.5496 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44199, + 44272, + 0 + ] + }, + "from": [ + 58.5318, + -9.5496 + ], + "tag": null, + "to": [ + 58.4745, + -10.0933 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44278, + 44351, + 0 + ] + }, + "from": [ + 58.4745, + -10.0933 + ], + "tag": null, + "to": [ + 58.3787, + -10.8467 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44357, + 44430, + 0 + ] + }, + "from": [ + 58.3787, + -10.8467 + ], + "tag": null, + "to": [ + 58.2062, + -11.6136 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44436, + 44485, + 0 + ] + }, + "from": [ + 58.2062, + -11.6136 + ], + "tag": null, + "to": [ + 59.1006, + -11.0042 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44491, + 44563, + 0 + ] + }, + "from": [ + 59.1006, + -11.0042 + ], + "tag": null, + "to": [ + 58.7336, + -10.7922 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44569, + 44640, + 0 + ] + }, + "from": [ + 58.7336, + -10.7922 + ], + "tag": null, + "to": [ + 58.2629, + -10.3017 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44646, + 44717, + 0 + ] + }, + "from": [ + 58.2629, + -10.3017 + ], + "tag": null, + "to": [ + 57.43, + -9.834 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44723, + 44796, + 0 + ] + }, + "from": [ + 57.43, + -9.834 + ], + "tag": null, + "to": [ + 56.6189, + -10.2521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44802, + 44874, + 0 + ] + }, + "from": [ + 56.6189, + -10.2521 + ], + "tag": null, + "to": [ + 56.657, + -9.9955 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44880, + 44952, + 0 + ] + }, + "from": [ + 56.657, + -9.9955 + ], + "tag": null, + "to": [ + 56.8965, + -9.5585 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44958, + 45030, + 0 + ] + }, + "from": [ + 56.8965, + -9.5585 + ], + "tag": null, + "to": [ + 56.7337, + -8.7521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45036, + 45110, + 0 + ] + }, + "from": [ + 56.7337, + -8.7521 + ], + "tag": null, + "to": [ + 56.644, + -8.841 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45116, + 45188, + 0 + ] + }, + "from": [ + 56.644, + -8.841 + ], + "tag": null, + "to": [ + 57.5643, + -9.0144 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45194, + 45268, + 0 + ] + }, + "from": [ + 57.5643, + -9.0144 + ], + "tag": null, + "to": [ + 57.566, + -9.5322 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45274, + 45345, + 0 + ] + }, + "from": [ + 57.566, + -9.5322 + ], + "tag": null, + "to": [ + 58.1867, + -10.4056 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45351, + 45422, + 0 + ] + }, + "from": [ + 58.1867, + -10.4056 + ], + "tag": null, + "to": [ + 57.409, + -9.6453 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45428, + 45477, + 0 + ] + }, + "from": [ + 57.409, + -9.6453 + ], + "tag": null, + "to": [ + 57.953, + -8.8004 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45483, + 45557, + 0 + ] + }, + "from": [ + 57.953, + -8.8004 + ], + "tag": null, + "to": [ + 57.8226, + -8.7883 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45563, + 45636, + 0 + ] + }, + "from": [ + 57.8226, + -8.7883 + ], + "tag": null, + "to": [ + 57.657, + -8.9961 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45642, + 45715, + 0 + ] + }, + "from": [ + 57.657, + -8.9961 + ], + "tag": null, + "to": [ + 57.5607, + -9.0503 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45721, + 45769, + 0 + ] + }, + "from": [ + 57.5607, + -9.0503 + ], + "tag": null, + "to": [ + 58.4628, + -8.6544 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45775, + 45848, + 0 + ] + }, + "from": [ + 58.4628, + -8.6544 + ], + "tag": null, + "to": [ + 58.7428, + -8.8321 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45854, + 45902, + 0 + ] + }, + "from": [ + 58.7428, + -8.8321 + ], + "tag": null, + "to": [ + 59.2664, + -8.1378 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45908, + 45980, + 0 + ] + }, + "from": [ + 59.2664, + -8.1378 + ], + "tag": null, + "to": [ + 59.6578, + -8.9218 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45986, + 46035, + 0 + ] + }, + "from": [ + 59.6578, + -8.9218 + ], + "tag": null, + "to": [ + 60.4992, + -8.3822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46041, + 46112, + 0 + ] + }, + "from": [ + 60.4992, + -8.3822 + ], + "tag": null, + "to": [ + 61.113, + -8.161 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46118, + 46167, + 0 + ] + }, + "from": [ + 61.113, + -8.161 + ], + "tag": null, + "to": [ + 61.996, + -7.4614 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46173, + 46246, + 0 + ] + }, + "from": [ + 61.996, + -7.4614 + ], + "tag": null, + "to": [ + 61.5831, + -7.8766 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46252, + 46323, + 0 + ] + }, + "from": [ + 61.5831, + -7.8766 + ], + "tag": null, + "to": [ + 62.1, + -8.7852 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46329, + 46401, + 0 + ] + }, + "from": [ + 62.1, + -8.7852 + ], + "tag": null, + "to": [ + 61.4284, + -9.7458 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46407, + 46481, + 0 + ] + }, + "from": [ + 61.4284, + -9.7458 + ], + "tag": null, + "to": [ + 61.4387, + -10.1192 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46487, + 46560, + 0 + ] + }, + "from": [ + 61.4387, + -10.1192 + ], + "tag": null, + "to": [ + 61.5423, + -10.5421 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46566, + 46638, + 0 + ] + }, + "from": [ + 61.5423, + -10.5421 + ], + "tag": null, + "to": [ + 61.9943, + -10.6545 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46644, + 46716, + 0 + ] + }, + "from": [ + 61.9943, + -10.6545 + ], + "tag": null, + "to": [ + 61.1122, + -11.37 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46722, + 46771, + 0 + ] + }, + "from": [ + 61.1122, + -11.37 + ], + "tag": null, + "to": [ + 62.0317, + -11.1008 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46777, + 46848, + 0 + ] + }, + "from": [ + 62.0317, + -11.1008 + ], + "tag": null, + "to": [ + 62.7416, + -10.9837 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46854, + 46926, + 0 + ] + }, + "from": [ + 62.7416, + -10.9837 + ], + "tag": null, + "to": [ + 62.3629, + -10.273 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46932, + 47006, + 0 + ] + }, + "from": [ + 62.3629, + -10.273 + ], + "tag": null, + "to": [ + 62.0656, + -10.3395 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47012, + 47084, + 0 + ] + }, + "from": [ + 62.0656, + -10.3395 + ], + "tag": null, + "to": [ + 62.2952, + -11.0997 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47090, + 47162, + 0 + ] + }, + "from": [ + 62.2952, + -11.0997 + ], + "tag": null, + "to": [ + 61.6596, + -10.9051 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47168, + 47217, + 0 + ] + }, + "from": [ + 61.6596, + -10.9051 + ], + "tag": null, + "to": [ + 62.2317, + -10.6163 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47223, + 47296, + 0 + ] + }, + "from": [ + 62.2317, + -10.6163 + ], + "tag": null, + "to": [ + 61.2737, + -10.6387 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47302, + 47373, + 0 + ] + }, + "from": [ + 61.2737, + -10.6387 + ], + "tag": null, + "to": [ + 61.6036, + -11.4741 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47379, + 47450, + 0 + ] + }, + "from": [ + 61.6036, + -11.4741 + ], + "tag": null, + "to": [ + 62.3471, + -12.2661 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47456, + 47505, + 0 + ] + }, + "from": [ + 62.3471, + -12.2661 + ], + "tag": null, + "to": [ + 63.3406, + -11.3618 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47511, + 47582, + 0 + ] + }, + "from": [ + 63.3406, + -11.3618 + ], + "tag": null, + "to": [ + 62.8371, + -10.8467 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47588, + 47637, + 0 + ] + }, + "from": [ + 62.8371, + -10.8467 + ], + "tag": null, + "to": [ + 63.3897, + -10.0854 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47643, + 47714, + 0 + ] + }, + "from": [ + 63.3897, + -10.0854 + ], + "tag": null, + "to": [ + 64.249, + -10.0013 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47720, + 47791, + 0 + ] + }, + "from": [ + 64.249, + -10.0013 + ], + "tag": null, + "to": [ + 63.4309, + -10.9048 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47797, + 47869, + 0 + ] + }, + "from": [ + 63.4309, + -10.9048 + ], + "tag": null, + "to": [ + 63.7475, + -11.1467 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47875, + 47949, + 0 + ] + }, + "from": [ + 63.7475, + -11.1467 + ], + "tag": null, + "to": [ + 63.3036, + -11.4059 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47955, + 48028, + 0 + ] + }, + "from": [ + 63.3036, + -11.4059 + ], + "tag": null, + "to": [ + 62.643, + -11.8094 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48034, + 48106, + 0 + ] + }, + "from": [ + 62.643, + -11.8094 + ], + "tag": null, + "to": [ + 61.926, + -11.5749 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48112, + 48185, + 0 + ] + }, + "from": [ + 61.926, + -11.5749 + ], + "tag": null, + "to": [ + 61.6692, + -12.0252 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48191, + 48262, + 0 + ] + }, + "from": [ + 61.6692, + -12.0252 + ], + "tag": null, + "to": [ + 62.3444, + -12.9961 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48268, + 48339, + 0 + ] + }, + "from": [ + 62.3444, + -12.9961 + ], + "tag": null, + "to": [ + 61.7754, + -12.4042 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48345, + 48416, + 0 + ] + }, + "from": [ + 61.7754, + -12.4042 + ], + "tag": null, + "to": [ + 60.9426, + -11.9365 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48422, + 48495, + 0 + ] + }, + "from": [ + 60.9426, + -11.9365 + ], + "tag": null, + "to": [ + 60.1314, + -12.3546 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48501, + 48573, + 0 + ] + }, + "from": [ + 60.1314, + -12.3546 + ], + "tag": null, + "to": [ + 60.1695, + -12.098 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48579, + 48651, + 0 + ] + }, + "from": [ + 60.1695, + -12.098 + ], + "tag": null, + "to": [ + 60.409, + -11.6611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48657, + 48729, + 0 + ] + }, + "from": [ + 60.409, + -11.6611 + ], + "tag": null, + "to": [ + 60.2462, + -10.8546 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48735, + 48809, + 0 + ] + }, + "from": [ + 60.2462, + -10.8546 + ], + "tag": null, + "to": [ + 60.1565, + -10.9435 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48815, + 48887, + 0 + ] + }, + "from": [ + 60.1565, + -10.9435 + ], + "tag": null, + "to": [ + 61.0768, + -11.1169 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48893, + 48967, + 0 + ] + }, + "from": [ + 61.0768, + -11.1169 + ], + "tag": null, + "to": [ + 61.0786, + -11.6348 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48973, + 49044, + 0 + ] + }, + "from": [ + 61.0786, + -11.6348 + ], + "tag": null, + "to": [ + 61.6992, + -12.5081 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49050, + 49121, + 0 + ] + }, + "from": [ + 61.6992, + -12.5081 + ], + "tag": null, + "to": [ + 60.9216, + -11.7478 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49127, + 49176, + 0 + ] + }, + "from": [ + 60.9216, + -11.7478 + ], + "tag": null, + "to": [ + 61.4655, + -10.9029 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49182, + 49256, + 0 + ] + }, + "from": [ + 61.4655, + -10.9029 + ], + "tag": null, + "to": [ + 61.3351, + -10.8909 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49262, + 49335, + 0 + ] + }, + "from": [ + 61.3351, + -10.8909 + ], + "tag": null, + "to": [ + 61.1695, + -11.0986 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49341, + 49414, + 0 + ] + }, + "from": [ + 61.1695, + -11.0986 + ], + "tag": null, + "to": [ + 61.0732, + -11.1528 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49420, + 49468, + 0 + ] + }, + "from": [ + 61.0732, + -11.1528 + ], + "tag": null, + "to": [ + 61.9753, + -10.7569 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49474, + 49547, + 0 + ] + }, + "from": [ + 61.9753, + -10.7569 + ], + "tag": null, + "to": [ + 62.2553, + -10.9347 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49553, + 49601, + 0 + ] + }, + "from": [ + 62.2553, + -10.9347 + ], + "tag": null, + "to": [ + 62.7789, + -10.2404 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49607, + 49679, + 0 + ] + }, + "from": [ + 62.7789, + -10.2404 + ], + "tag": null, + "to": [ + 63.1703, + -11.0243 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49685, + 49734, + 0 + ] + }, + "from": [ + 63.1703, + -11.0243 + ], + "tag": null, + "to": [ + 64.0117, + -10.4848 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49740, + 49811, + 0 + ] + }, + "from": [ + 64.0117, + -10.4848 + ], + "tag": null, + "to": [ + 64.6255, + -10.2636 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49817, + 49866, + 0 + ] + }, + "from": [ + 64.6255, + -10.2636 + ], + "tag": null, + "to": [ + 65.5085, + -9.5639 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49872, + 49944, + 0 + ] + }, + "from": [ + 65.5085, + -9.5639 + ], + "tag": null, + "to": [ + 65.1415, + -9.3519 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49950, + 50021, + 0 + ] + }, + "from": [ + 65.1415, + -9.3519 + ], + "tag": null, + "to": [ + 64.6708, + -8.8614 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50027, + 50098, + 0 + ] + }, + "from": [ + 64.6708, + -8.8614 + ], + "tag": null, + "to": [ + 63.8379, + -8.3936 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50104, + 50177, + 0 + ] + }, + "from": [ + 63.8379, + -8.3936 + ], + "tag": null, + "to": [ + 63.0268, + -8.8118 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50183, + 50255, + 0 + ] + }, + "from": [ + 63.0268, + -8.8118 + ], + "tag": null, + "to": [ + 63.0649, + -8.5551 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50261, + 50333, + 0 + ] + }, + "from": [ + 63.0649, + -8.5551 + ], + "tag": null, + "to": [ + 63.3044, + -8.1182 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50339, + 50411, + 0 + ] + }, + "from": [ + 63.3044, + -8.1182 + ], + "tag": null, + "to": [ + 63.1416, + -7.3117 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50417, + 50491, + 0 + ] + }, + "from": [ + 63.1416, + -7.3117 + ], + "tag": null, + "to": [ + 63.0518, + -7.4006 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50497, + 50569, + 0 + ] + }, + "from": [ + 63.0518, + -7.4006 + ], + "tag": null, + "to": [ + 63.9722, + -7.574 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50575, + 50649, + 0 + ] + }, + "from": [ + 63.9722, + -7.574 + ], + "tag": null, + "to": [ + 63.9739, + -8.0919 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50655, + 50726, + 0 + ] + }, + "from": [ + 63.9739, + -8.0919 + ], + "tag": null, + "to": [ + 64.5946, + -8.9652 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50732, + 50803, + 0 + ] + }, + "from": [ + 64.5946, + -8.9652 + ], + "tag": null, + "to": [ + 63.8169, + -8.205 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50809, + 50858, + 0 + ] + }, + "from": [ + 63.8169, + -8.205 + ], + "tag": null, + "to": [ + 64.3609, + -7.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50864, + 50938, + 0 + ] + }, + "from": [ + 64.3609, + -7.36 + ], + "tag": null, + "to": [ + 64.2305, + -7.348 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50944, + 51017, + 0 + ] + }, + "from": [ + 64.2305, + -7.348 + ], + "tag": null, + "to": [ + 64.0648, + -7.5557 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51023, + 51096, + 0 + ] + }, + "from": [ + 64.0648, + -7.5557 + ], + "tag": null, + "to": [ + 63.9686, + -7.6099 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51102, + 51150, + 0 + ] + }, + "from": [ + 63.9686, + -7.6099 + ], + "tag": null, + "to": [ + 64.8707, + -7.214 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51156, + 51229, + 0 + ] + }, + "from": [ + 64.8707, + -7.214 + ], + "tag": null, + "to": [ + 65.1507, + -7.3918 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51235, + 51283, + 0 + ] + }, + "from": [ + 65.1507, + -7.3918 + ], + "tag": null, + "to": [ + 65.6742, + -6.6975 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51289, + 51361, + 0 + ] + }, + "from": [ + 65.6742, + -6.6975 + ], + "tag": null, + "to": [ + 66.0657, + -7.4815 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51367, + 51416, + 0 + ] + }, + "from": [ + 66.0657, + -7.4815 + ], + "tag": null, + "to": [ + 66.9071, + -6.9419 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51422, + 51493, + 0 + ] + }, + "from": [ + 66.9071, + -6.9419 + ], + "tag": null, + "to": [ + 67.5208, + -6.7207 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51499, + 51548, + 0 + ] + }, + "from": [ + 67.5208, + -6.7207 + ], + "tag": null, + "to": [ + 68.4039, + -6.021 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51554, + 51627, + 0 + ] + }, + "from": [ + 68.4039, + -6.021 + ], + "tag": null, + "to": [ + 67.991, + -6.4363 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51633, + 51704, + 0 + ] + }, + "from": [ + 67.991, + -6.4363 + ], + "tag": null, + "to": [ + 68.5079, + -7.3449 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51710, + 51782, + 0 + ] + }, + "from": [ + 68.5079, + -7.3449 + ], + "tag": null, + "to": [ + 67.8363, + -8.3054 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51788, + 51862, + 0 + ] + }, + "from": [ + 67.8363, + -8.3054 + ], + "tag": null, + "to": [ + 67.8466, + -8.6789 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51868, + 51940, + 0 + ] + }, + "from": [ + 67.8466, + -8.6789 + ], + "tag": null, + "to": [ + 67.4796, + -8.4668 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51946, + 52017, + 0 + ] + }, + "from": [ + 67.4796, + -8.4668 + ], + "tag": null, + "to": [ + 67.0088, + -7.9763 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52023, + 52094, + 0 + ] + }, + "from": [ + 67.0088, + -7.9763 + ], + "tag": null, + "to": [ + 66.176, + -7.5086 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52100, + 52173, + 0 + ] + }, + "from": [ + 66.176, + -7.5086 + ], + "tag": null, + "to": [ + 65.3648, + -7.9267 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52179, + 52251, + 0 + ] + }, + "from": [ + 65.3648, + -7.9267 + ], + "tag": null, + "to": [ + 65.4029, + -7.6701 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52257, + 52329, + 0 + ] + }, + "from": [ + 65.4029, + -7.6701 + ], + "tag": null, + "to": [ + 65.6424, + -7.2331 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52335, + 52407, + 0 + ] + }, + "from": [ + 65.6424, + -7.2331 + ], + "tag": null, + "to": [ + 65.4796, + -6.4267 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52413, + 52487, + 0 + ] + }, + "from": [ + 65.4796, + -6.4267 + ], + "tag": null, + "to": [ + 65.3899, + -6.5156 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52493, + 52565, + 0 + ] + }, + "from": [ + 65.3899, + -6.5156 + ], + "tag": null, + "to": [ + 66.3102, + -6.689 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52571, + 52645, + 0 + ] + }, + "from": [ + 66.3102, + -6.689 + ], + "tag": null, + "to": [ + 66.312, + -7.2068 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52651, + 52722, + 0 + ] + }, + "from": [ + 66.312, + -7.2068 + ], + "tag": null, + "to": [ + 66.9326, + -8.0802 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52728, + 52799, + 0 + ] + }, + "from": [ + 66.9326, + -8.0802 + ], + "tag": null, + "to": [ + 66.155, + -7.3199 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52805, + 52854, + 0 + ] + }, + "from": [ + 66.155, + -7.3199 + ], + "tag": null, + "to": [ + 66.6989, + -6.475 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52860, + 52934, + 0 + ] + }, + "from": [ + 66.6989, + -6.475 + ], + "tag": null, + "to": [ + 66.5685, + -6.4629 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52940, + 53013, + 0 + ] + }, + "from": [ + 66.5685, + -6.4629 + ], + "tag": null, + "to": [ + 66.4029, + -6.6707 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53019, + 53092, + 0 + ] + }, + "from": [ + 66.4029, + -6.6707 + ], + "tag": null, + "to": [ + 66.3066, + -6.7249 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53098, + 53146, + 0 + ] + }, + "from": [ + 66.3066, + -6.7249 + ], + "tag": null, + "to": [ + 67.2087, + -6.329 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53152, + 53225, + 0 + ] + }, + "from": [ + 67.2087, + -6.329 + ], + "tag": null, + "to": [ + 67.4887, + -6.5068 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53231, + 53279, + 0 + ] + }, + "from": [ + 67.4887, + -6.5068 + ], + "tag": null, + "to": [ + 68.0123, + -5.8124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53285, + 53357, + 0 + ] + }, + "from": [ + 68.0123, + -5.8124 + ], + "tag": null, + "to": [ + 68.4037, + -6.5964 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53363, + 53412, + 0 + ] + }, + "from": [ + 68.4037, + -6.5964 + ], + "tag": null, + "to": [ + 69.2451, + -6.0569 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53418, + 53489, + 0 + ] + }, + "from": [ + 69.2451, + -6.0569 + ], + "tag": null, + "to": [ + 69.8589, + -5.8357 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53495, + 53544, + 0 + ] + }, + "from": [ + 69.8589, + -5.8357 + ], + "tag": null, + "to": [ + 70.7419, + -5.136 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53550, + 53623, + 0 + ] + }, + "from": [ + 70.7419, + -5.136 + ], + "tag": null, + "to": [ + 70.329, + -5.5513 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53629, + 53700, + 0 + ] + }, + "from": [ + 70.329, + -5.5513 + ], + "tag": null, + "to": [ + 70.846, + -6.4598 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53706, + 53778, + 0 + ] + }, + "from": [ + 70.846, + -6.4598 + ], + "tag": null, + "to": [ + 70.1744, + -7.4204 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53784, + 53858, + 0 + ] + }, + "from": [ + 70.1744, + -7.4204 + ], + "tag": null, + "to": [ + 70.1846, + -7.7938 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53864, + 53937, + 0 + ] + }, + "from": [ + 70.1846, + -7.7938 + ], + "tag": null, + "to": [ + 70.2882, + -8.2167 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53943, + 54015, + 0 + ] + }, + "from": [ + 70.2882, + -8.2167 + ], + "tag": null, + "to": [ + 70.7402, + -8.3291 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54021, + 54093, + 0 + ] + }, + "from": [ + 70.7402, + -8.3291 + ], + "tag": null, + "to": [ + 69.8581, + -9.0446 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54099, + 54148, + 0 + ] + }, + "from": [ + 69.8581, + -9.0446 + ], + "tag": null, + "to": [ + 70.7777, + -8.7754 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54154, + 54225, + 0 + ] + }, + "from": [ + 70.7777, + -8.7754 + ], + "tag": null, + "to": [ + 71.4876, + -8.6583 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54231, + 54303, + 0 + ] + }, + "from": [ + 71.4876, + -8.6583 + ], + "tag": null, + "to": [ + 71.1088, + -7.9477 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54309, + 54383, + 0 + ] + }, + "from": [ + 71.1088, + -7.9477 + ], + "tag": null, + "to": [ + 70.8115, + -8.0142 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54389, + 54461, + 0 + ] + }, + "from": [ + 70.8115, + -8.0142 + ], + "tag": null, + "to": [ + 71.0412, + -8.7743 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54467, + 54539, + 0 + ] + }, + "from": [ + 71.0412, + -8.7743 + ], + "tag": null, + "to": [ + 70.4055, + -8.5798 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54545, + 54594, + 0 + ] + }, + "from": [ + 70.4055, + -8.5798 + ], + "tag": null, + "to": [ + 70.9777, + -8.2909 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54600, + 54673, + 0 + ] + }, + "from": [ + 70.9777, + -8.2909 + ], + "tag": null, + "to": [ + 70.0196, + -8.3133 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54679, + 54750, + 0 + ] + }, + "from": [ + 70.0196, + -8.3133 + ], + "tag": null, + "to": [ + 70.3495, + -9.1487 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54756, + 54827, + 0 + ] + }, + "from": [ + 70.3495, + -9.1487 + ], + "tag": null, + "to": [ + 71.093, + -9.9407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54833, + 54882, + 0 + ] + }, + "from": [ + 71.093, + -9.9407 + ], + "tag": null, + "to": [ + 72.0866, + -9.0364 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54888, + 54959, + 0 + ] + }, + "from": [ + 72.0866, + -9.0364 + ], + "tag": null, + "to": [ + 71.583, + -8.5213 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54965, + 55014, + 0 + ] + }, + "from": [ + 71.583, + -8.5213 + ], + "tag": null, + "to": [ + 72.1356, + -7.7601 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55020, + 55091, + 0 + ] + }, + "from": [ + 72.1356, + -7.7601 + ], + "tag": null, + "to": [ + 72.9949, + -7.6759 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55097, + 55168, + 0 + ] + }, + "from": [ + 72.9949, + -7.6759 + ], + "tag": null, + "to": [ + 72.1768, + -8.5795 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55174, + 55246, + 0 + ] + }, + "from": [ + 72.1768, + -8.5795 + ], + "tag": null, + "to": [ + 72.4934, + -8.8214 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55252, + 55326, + 0 + ] + }, + "from": [ + 72.4934, + -8.8214 + ], + "tag": null, + "to": [ + 72.0495, + -9.0805 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55332, + 55405, + 0 + ] + }, + "from": [ + 72.0495, + -9.0805 + ], + "tag": null, + "to": [ + 71.389, + -9.484 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55411, + 55483, + 0 + ] + }, + "from": [ + 71.389, + -9.484 + ], + "tag": null, + "to": [ + 70.6719, + -9.2495 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55489, + 55562, + 0 + ] + }, + "from": [ + 70.6719, + -9.2495 + ], + "tag": null, + "to": [ + 70.4151, + -9.6998 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55568, + 55639, + 0 + ] + }, + "from": [ + 70.4151, + -9.6998 + ], + "tag": null, + "to": [ + 71.0903, + -10.6707 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55645, + 55716, + 0 + ] + }, + "from": [ + 71.0903, + -10.6707 + ], + "tag": null, + "to": [ + 70.5214, + -10.0788 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55722, + 55793, + 0 + ] + }, + "from": [ + 70.5214, + -10.0788 + ], + "tag": null, + "to": [ + 69.6885, + -9.6111 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55799, + 55872, + 0 + ] + }, + "from": [ + 69.6885, + -9.6111 + ], + "tag": null, + "to": [ + 68.8774, + -10.0292 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55878, + 55950, + 0 + ] + }, + "from": [ + 68.8774, + -10.0292 + ], + "tag": null, + "to": [ + 68.9155, + -9.7726 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55956, + 56028, + 0 + ] + }, + "from": [ + 68.9155, + -9.7726 + ], + "tag": null, + "to": [ + 69.155, + -9.3357 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56034, + 56106, + 0 + ] + }, + "from": [ + 69.155, + -9.3357 + ], + "tag": null, + "to": [ + 68.9922, + -8.5292 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56112, + 56186, + 0 + ] + }, + "from": [ + 68.9922, + -8.5292 + ], + "tag": null, + "to": [ + 68.9024, + -8.6181 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56192, + 56264, + 0 + ] + }, + "from": [ + 68.9024, + -8.6181 + ], + "tag": null, + "to": [ + 69.8228, + -8.7915 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56270, + 56344, + 0 + ] + }, + "from": [ + 69.8228, + -8.7915 + ], + "tag": null, + "to": [ + 69.8245, + -9.3094 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56350, + 56421, + 0 + ] + }, + "from": [ + 69.8245, + -9.3094 + ], + "tag": null, + "to": [ + 70.4451, + -10.1827 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56427, + 56498, + 0 + ] + }, + "from": [ + 70.4451, + -10.1827 + ], + "tag": null, + "to": [ + 69.6675, + -9.4224 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56504, + 56553, + 0 + ] + }, + "from": [ + 69.6675, + -9.4224 + ], + "tag": null, + "to": [ + 70.2114, + -8.5775 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56559, + 56633, + 0 + ] + }, + "from": [ + 70.2114, + -8.5775 + ], + "tag": null, + "to": [ + 70.0811, + -8.5655 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56639, + 56712, + 0 + ] + }, + "from": [ + 70.0811, + -8.5655 + ], + "tag": null, + "to": [ + 69.9154, + -8.7732 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56718, + 56791, + 0 + ] + }, + "from": [ + 69.9154, + -8.7732 + ], + "tag": null, + "to": [ + 69.8192, + -8.8274 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56797, + 56845, + 0 + ] + }, + "from": [ + 69.8192, + -8.8274 + ], + "tag": null, + "to": [ + 70.7213, + -8.4315 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56851, + 56924, + 0 + ] + }, + "from": [ + 70.7213, + -8.4315 + ], + "tag": null, + "to": [ + 71.0012, + -8.6093 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56930, + 56978, + 0 + ] + }, + "from": [ + 71.0012, + -8.6093 + ], + "tag": null, + "to": [ + 71.5248, + -7.915 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56984, + 57056, + 0 + ] + }, + "from": [ + 71.5248, + -7.915 + ], + "tag": null, + "to": [ + 71.9162, + -8.6989 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57062, + 57111, + 0 + ] + }, + "from": [ + 71.9162, + -8.6989 + ], + "tag": null, + "to": [ + 72.7577, + -8.1594 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57117, + 57188, + 0 + ] + }, + "from": [ + 72.7577, + -8.1594 + ], + "tag": null, + "to": [ + 73.3714, + -7.9382 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57194, + 57243, + 0 + ] + }, + "from": [ + 73.3714, + -7.9382 + ], + "tag": null, + "to": [ + 74.2545, + -7.2385 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57249, + 57322, + 0 + ] + }, + "from": [ + 74.2545, + -7.2385 + ], + "tag": null, + "to": [ + 73.8416, + -7.6538 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57328, + 57399, + 0 + ] + }, + "from": [ + 73.8416, + -7.6538 + ], + "tag": null, + "to": [ + 74.3585, + -8.5623 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57405, + 57476, + 0 + ] + }, + "from": [ + 74.3585, + -8.5623 + ], + "tag": null, + "to": [ + 75.0337, + -9.5333 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57482, + 57553, + 0 + ] + }, + "from": [ + 75.0337, + -9.5333 + ], + "tag": null, + "to": [ + 74.4648, + -8.9414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57559, + 57630, + 0 + ] + }, + "from": [ + 74.4648, + -8.9414 + ], + "tag": null, + "to": [ + 75.4112, + -9.2099 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57636, + 57685, + 0 + ] + }, + "from": [ + 75.4112, + -9.2099 + ], + "tag": null, + "to": [ + 75.9354, + -8.3087 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57691, + 57764, + 0 + ] + }, + "from": [ + 75.9354, + -8.3087 + ], + "tag": null, + "to": [ + 75.7928, + -8.8282 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57770, + 57842, + 0 + ] + }, + "from": [ + 75.7928, + -8.8282 + ], + "tag": null, + "to": [ + 75.3641, + -9.2505 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57848, + 57921, + 0 + ] + }, + "from": [ + 75.3641, + -9.2505 + ], + "tag": null, + "to": [ + 75.2709, + -10.1568 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57927, + 57998, + 0 + ] + }, + "from": [ + 75.2709, + -10.1568 + ], + "tag": null, + "to": [ + 74.9942, + -9.4752 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58004, + 58075, + 0 + ] + }, + "from": [ + 74.9942, + -9.4752 + ], + "tag": null, + "to": [ + 75.9738, + -9.5574 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58081, + 58152, + 0 + ] + }, + "from": [ + 75.9738, + -9.5574 + ], + "tag": null, + "to": [ + 75.1072, + -9.8585 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58158, + 58229, + 0 + ] + }, + "from": [ + 75.1072, + -9.8585 + ], + "tag": null, + "to": [ + 75.6446, + -9.8382 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58235, + 58306, + 0 + ] + }, + "from": [ + 75.6446, + -9.8382 + ], + "tag": null, + "to": [ + 76.5779, + -10.461 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58312, + 58385, + 0 + ] + }, + "from": [ + 76.5779, + -10.461 + ], + "tag": null, + "to": [ + 76.7584, + -10.83 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58391, + 58440, + 0 + ] + }, + "from": [ + 76.7584, + -10.83 + ], + "tag": null, + "to": [ + 77.2968, + -10.5922 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58446, + 58518, + 0 + ] + }, + "from": [ + 77.2968, + -10.5922 + ], + "tag": null, + "to": [ + 77.6872, + -10.4495 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58524, + 58595, + 0 + ] + }, + "from": [ + 77.6872, + -10.4495 + ], + "tag": null, + "to": [ + 77.7851, + -9.4587 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58601, + 58672, + 0 + ] + }, + "from": [ + 77.7851, + -9.4587 + ], + "tag": null, + "to": [ + 78.3137, + -10.2511 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58678, + 58749, + 0 + ] + }, + "from": [ + 78.3137, + -10.2511 + ], + "tag": null, + "to": [ + 78.6927, + -10.1272 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58755, + 58826, + 0 + ] + }, + "from": [ + 78.6927, + -10.1272 + ], + "tag": null, + "to": [ + 77.7442, + -9.4542 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58832, + 58904, + 0 + ] + }, + "from": [ + 77.7442, + -9.4542 + ], + "tag": null, + "to": [ + 78.4894, + -9.6674 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58910, + 58982, + 0 + ] + }, + "from": [ + 78.4894, + -9.6674 + ], + "tag": null, + "to": [ + 78.6767, + -9.827 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58988, + 59061, + 0 + ] + }, + "from": [ + 78.6767, + -9.827 + ], + "tag": null, + "to": [ + 78.6194, + -10.3707 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59067, + 59140, + 0 + ] + }, + "from": [ + 78.6194, + -10.3707 + ], + "tag": null, + "to": [ + 78.5236, + -11.124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59146, + 59219, + 0 + ] + }, + "from": [ + 78.5236, + -11.124 + ], + "tag": null, + "to": [ + 78.3511, + -11.891 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59225, + 59274, + 0 + ] + }, + "from": [ + 78.3511, + -11.891 + ], + "tag": null, + "to": [ + 79.2456, + -11.2816 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59280, + 59352, + 0 + ] + }, + "from": [ + 79.2456, + -11.2816 + ], + "tag": null, + "to": [ + 78.8785, + -11.0696 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59358, + 59429, + 0 + ] + }, + "from": [ + 78.8785, + -11.0696 + ], + "tag": null, + "to": [ + 78.4078, + -10.5791 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59435, + 59506, + 0 + ] + }, + "from": [ + 78.4078, + -10.5791 + ], + "tag": null, + "to": [ + 77.5749, + -10.1113 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59512, + 59585, + 0 + ] + }, + "from": [ + 77.5749, + -10.1113 + ], + "tag": null, + "to": [ + 76.7638, + -10.5295 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59591, + 59663, + 0 + ] + }, + "from": [ + 76.7638, + -10.5295 + ], + "tag": null, + "to": [ + 76.8019, + -10.2728 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59669, + 59741, + 0 + ] + }, + "from": [ + 76.8019, + -10.2728 + ], + "tag": null, + "to": [ + 77.0414, + -9.8359 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59747, + 59819, + 0 + ] + }, + "from": [ + 77.0414, + -9.8359 + ], + "tag": null, + "to": [ + 76.8786, + -9.0295 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59825, + 59899, + 0 + ] + }, + "from": [ + 76.8786, + -9.0295 + ], + "tag": null, + "to": [ + 76.7889, + -9.1183 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59905, + 59977, + 0 + ] + }, + "from": [ + 76.7889, + -9.1183 + ], + "tag": null, + "to": [ + 77.7092, + -9.2918 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59983, + 60057, + 0 + ] + }, + "from": [ + 77.7092, + -9.2918 + ], + "tag": null, + "to": [ + 77.711, + -9.8096 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60063, + 60134, + 0 + ] + }, + "from": [ + 77.711, + -9.8096 + ], + "tag": null, + "to": [ + 78.3316, + -10.683 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60140, + 60211, + 0 + ] + }, + "from": [ + 78.3316, + -10.683 + ], + "tag": null, + "to": [ + 77.5539, + -9.9227 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60217, + 60266, + 0 + ] + }, + "from": [ + 77.5539, + -9.9227 + ], + "tag": null, + "to": [ + 78.0979, + -9.0778 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60272, + 60346, + 0 + ] + }, + "from": [ + 78.0979, + -9.0778 + ], + "tag": null, + "to": [ + 77.9675, + -9.0657 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60352, + 60425, + 0 + ] + }, + "from": [ + 77.9675, + -9.0657 + ], + "tag": null, + "to": [ + 77.8019, + -9.2735 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60431, + 60504, + 0 + ] + }, + "from": [ + 77.8019, + -9.2735 + ], + "tag": null, + "to": [ + 77.7056, + -9.3276 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60510, + 60558, + 0 + ] + }, + "from": [ + 77.7056, + -9.3276 + ], + "tag": null, + "to": [ + 78.6077, + -8.9317 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60564, + 60637, + 0 + ] + }, + "from": [ + 78.6077, + -8.9317 + ], + "tag": null, + "to": [ + 78.8877, + -9.1095 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60643, + 60691, + 0 + ] + }, + "from": [ + 78.8877, + -9.1095 + ], + "tag": null, + "to": [ + 79.4113, + -8.4152 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60697, + 60769, + 0 + ] + }, + "from": [ + 79.4113, + -8.4152 + ], + "tag": null, + "to": [ + 79.8027, + -9.1992 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60775, + 60824, + 0 + ] + }, + "from": [ + 79.8027, + -9.1992 + ], + "tag": null, + "to": [ + 80.6441, + -8.6596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60830, + 60901, + 0 + ] + }, + "from": [ + 80.6441, + -8.6596 + ], + "tag": null, + "to": [ + 81.2579, + -8.4384 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60907, + 60956, + 0 + ] + }, + "from": [ + 81.2579, + -8.4384 + ], + "tag": null, + "to": [ + 82.1409, + -7.7388 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60962, + 61035, + 0 + ] + }, + "from": [ + 82.1409, + -7.7388 + ], + "tag": null, + "to": [ + 81.728, + -8.154 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61041, + 61112, + 0 + ] + }, + "from": [ + 81.728, + -8.154 + ], + "tag": null, + "to": [ + 82.245, + -9.0626 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61118, + 61190, + 0 + ] + }, + "from": [ + 82.245, + -9.0626 + ], + "tag": null, + "to": [ + 81.5733, + -10.0231 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61196, + 61270, + 0 + ] + }, + "from": [ + 81.5733, + -10.0231 + ], + "tag": null, + "to": [ + 81.5836, + -10.3966 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61276, + 61349, + 0 + ] + }, + "from": [ + 81.5836, + -10.3966 + ], + "tag": null, + "to": [ + 81.6872, + -10.8195 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61355, + 61427, + 0 + ] + }, + "from": [ + 81.6872, + -10.8195 + ], + "tag": null, + "to": [ + 82.1392, + -10.9318 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61433, + 61505, + 0 + ] + }, + "from": [ + 82.1392, + -10.9318 + ], + "tag": null, + "to": [ + 81.2571, + -11.6474 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61511, + 61560, + 0 + ] + }, + "from": [ + 81.2571, + -11.6474 + ], + "tag": null, + "to": [ + 82.1766, + -11.3782 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61566, + 61637, + 0 + ] + }, + "from": [ + 82.1766, + -11.3782 + ], + "tag": null, + "to": [ + 82.8865, + -11.2611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61643, + 61715, + 0 + ] + }, + "from": [ + 82.8865, + -11.2611 + ], + "tag": null, + "to": [ + 82.5078, + -10.5504 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61721, + 61795, + 0 + ] + }, + "from": [ + 82.5078, + -10.5504 + ], + "tag": null, + "to": [ + 82.2105, + -10.6169 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61801, + 61873, + 0 + ] + }, + "from": [ + 82.2105, + -10.6169 + ], + "tag": null, + "to": [ + 82.4401, + -11.3771 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61879, + 61951, + 0 + ] + }, + "from": [ + 82.4401, + -11.3771 + ], + "tag": null, + "to": [ + 81.8045, + -11.1825 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61957, + 62006, + 0 + ] + }, + "from": [ + 81.8045, + -11.1825 + ], + "tag": null, + "to": [ + 82.3766, + -10.8937 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62012, + 62085, + 0 + ] + }, + "from": [ + 82.3766, + -10.8937 + ], + "tag": null, + "to": [ + 81.4186, + -10.9161 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62091, + 62162, + 0 + ] + }, + "from": [ + 81.4186, + -10.9161 + ], + "tag": null, + "to": [ + 81.7485, + -11.7515 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62168, + 62239, + 0 + ] + }, + "from": [ + 81.7485, + -11.7515 + ], + "tag": null, + "to": [ + 82.492, + -12.5434 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62245, + 62294, + 0 + ] + }, + "from": [ + 82.492, + -12.5434 + ], + "tag": null, + "to": [ + 83.4855, + -11.6392 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62300, + 62371, + 0 + ] + }, + "from": [ + 83.4855, + -11.6392 + ], + "tag": null, + "to": [ + 82.982, + -11.1241 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62377, + 62426, + 0 + ] + }, + "from": [ + 82.982, + -11.1241 + ], + "tag": null, + "to": [ + 83.5346, + -10.3628 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62432, + 62503, + 0 + ] + }, + "from": [ + 83.5346, + -10.3628 + ], + "tag": null, + "to": [ + 84.3939, + -10.2787 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62509, + 62580, + 0 + ] + }, + "from": [ + 84.3939, + -10.2787 + ], + "tag": null, + "to": [ + 83.5758, + -11.1822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62586, + 62658, + 0 + ] + }, + "from": [ + 83.5758, + -11.1822 + ], + "tag": null, + "to": [ + 83.8924, + -11.4241 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62664, + 62738, + 0 + ] + }, + "from": [ + 83.8924, + -11.4241 + ], + "tag": null, + "to": [ + 83.4485, + -11.6832 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62744, + 62817, + 0 + ] + }, + "from": [ + 83.4485, + -11.6832 + ], + "tag": null, + "to": [ + 82.788, + -12.0868 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62823, + 62895, + 0 + ] + }, + "from": [ + 82.788, + -12.0868 + ], + "tag": null, + "to": [ + 82.0709, + -11.8523 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62901, + 62974, + 0 + ] + }, + "from": [ + 82.0709, + -11.8523 + ], + "tag": null, + "to": [ + 81.8141, + -12.3026 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62980, + 63051, + 0 + ] + }, + "from": [ + 81.8141, + -12.3026 + ], + "tag": null, + "to": [ + 82.4893, + -13.2735 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63057, + 63128, + 0 + ] + }, + "from": [ + 82.4893, + -13.2735 + ], + "tag": null, + "to": [ + 81.9203, + -12.6816 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63134, + 63205, + 0 + ] + }, + "from": [ + 81.9203, + -12.6816 + ], + "tag": null, + "to": [ + 81.0875, + -12.2139 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63211, + 63284, + 0 + ] + }, + "from": [ + 81.0875, + -12.2139 + ], + "tag": null, + "to": [ + 80.2763, + -12.632 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63290, + 63362, + 0 + ] + }, + "from": [ + 80.2763, + -12.632 + ], + "tag": null, + "to": [ + 80.3144, + -12.3754 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63368, + 63440, + 0 + ] + }, + "from": [ + 80.3144, + -12.3754 + ], + "tag": null, + "to": [ + 80.5539, + -11.9384 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63446, + 63518, + 0 + ] + }, + "from": [ + 80.5539, + -11.9384 + ], + "tag": null, + "to": [ + 80.3911, + -11.132 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63524, + 63598, + 0 + ] + }, + "from": [ + 80.3911, + -11.132 + ], + "tag": null, + "to": [ + 80.3014, + -11.2209 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63604, + 63676, + 0 + ] + }, + "from": [ + 80.3014, + -11.2209 + ], + "tag": null, + "to": [ + 81.2217, + -11.3943 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63682, + 63756, + 0 + ] + }, + "from": [ + 81.2217, + -11.3943 + ], + "tag": null, + "to": [ + 81.2235, + -11.9121 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63762, + 63833, + 0 + ] + }, + "from": [ + 81.2235, + -11.9121 + ], + "tag": null, + "to": [ + 81.8441, + -12.7855 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63839, + 63910, + 0 + ] + }, + "from": [ + 81.8441, + -12.7855 + ], + "tag": null, + "to": [ + 81.0665, + -12.0252 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63916, + 63965, + 0 + ] + }, + "from": [ + 81.0665, + -12.0252 + ], + "tag": null, + "to": [ + 81.6104, + -11.1803 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63971, + 64045, + 0 + ] + }, + "from": [ + 81.6104, + -11.1803 + ], + "tag": null, + "to": [ + 81.48, + -11.1682 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64051, + 64124, + 0 + ] + }, + "from": [ + 81.48, + -11.1682 + ], + "tag": null, + "to": [ + 81.3144, + -11.376 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64130, + 64203, + 0 + ] + }, + "from": [ + 81.3144, + -11.376 + ], + "tag": null, + "to": [ + 81.2181, + -11.4302 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64209, + 64257, + 0 + ] + }, + "from": [ + 81.2181, + -11.4302 + ], + "tag": null, + "to": [ + 82.1202, + -11.0343 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64263, + 64336, + 0 + ] + }, + "from": [ + 82.1202, + -11.0343 + ], + "tag": null, + "to": [ + 82.4002, + -11.212 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64342, + 64390, + 0 + ] + }, + "from": [ + 82.4002, + -11.212 + ], + "tag": null, + "to": [ + 82.9238, + -10.5177 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64396, + 64468, + 0 + ] + }, + "from": [ + 82.9238, + -10.5177 + ], + "tag": null, + "to": [ + 83.3152, + -11.3017 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64474, + 64523, + 0 + ] + }, + "from": [ + 83.3152, + -11.3017 + ], + "tag": null, + "to": [ + 84.1566, + -10.7621 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64529, + 64600, + 0 + ] + }, + "from": [ + 84.1566, + -10.7621 + ], + "tag": null, + "to": [ + 84.7704, + -10.541 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64606, + 64655, + 0 + ] + }, + "from": [ + 84.7704, + -10.541 + ], + "tag": null, + "to": [ + 85.6534, + -9.8413 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64661, + 64733, + 0 + ] + }, + "from": [ + 85.6534, + -9.8413 + ], + "tag": null, + "to": [ + 85.2864, + -9.6293 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64739, + 64810, + 0 + ] + }, + "from": [ + 85.2864, + -9.6293 + ], + "tag": null, + "to": [ + 84.8157, + -9.1387 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64816, + 64887, + 0 + ] + }, + "from": [ + 84.8157, + -9.1387 + ], + "tag": null, + "to": [ + 83.9828, + -8.671 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64893, + 64966, + 0 + ] + }, + "from": [ + 83.9828, + -8.671 + ], + "tag": null, + "to": [ + 83.1717, + -9.0891 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64972, + 65044, + 0 + ] + }, + "from": [ + 83.1717, + -9.0891 + ], + "tag": null, + "to": [ + 83.2098, + -8.8325 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65050, + 65122, + 0 + ] + }, + "from": [ + 83.2098, + -8.8325 + ], + "tag": null, + "to": [ + 83.4493, + -8.3956 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65128, + 65200, + 0 + ] + }, + "from": [ + 83.4493, + -8.3956 + ], + "tag": null, + "to": [ + 83.2865, + -7.5891 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65206, + 65280, + 0 + ] + }, + "from": [ + 83.2865, + -7.5891 + ], + "tag": null, + "to": [ + 83.1967, + -7.678 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65286, + 65358, + 0 + ] + }, + "from": [ + 83.1967, + -7.678 + ], + "tag": null, + "to": [ + 84.1171, + -7.8514 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65364, + 65438, + 0 + ] + }, + "from": [ + 84.1171, + -7.8514 + ], + "tag": null, + "to": [ + 84.1188, + -8.3693 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65444, + 65515, + 0 + ] + }, + "from": [ + 84.1188, + -8.3693 + ], + "tag": null, + "to": [ + 84.7395, + -9.2426 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65521, + 65592, + 0 + ] + }, + "from": [ + 84.7395, + -9.2426 + ], + "tag": null, + "to": [ + 83.9618, + -8.4823 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65598, + 65647, + 0 + ] + }, + "from": [ + 83.9618, + -8.4823 + ], + "tag": null, + "to": [ + 84.5058, + -7.6374 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65653, + 65727, + 0 + ] + }, + "from": [ + 84.5058, + -7.6374 + ], + "tag": null, + "to": [ + 84.3754, + -7.6254 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65733, + 65806, + 0 + ] + }, + "from": [ + 84.3754, + -7.6254 + ], + "tag": null, + "to": [ + 84.2098, + -7.8331 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65812, + 65885, + 0 + ] + }, + "from": [ + 84.2098, + -7.8331 + ], + "tag": null, + "to": [ + 84.1135, + -7.8873 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65891, + 65939, + 0 + ] + }, + "from": [ + 84.1135, + -7.8873 + ], + "tag": null, + "to": [ + 85.0156, + -7.4914 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65945, + 66018, + 0 + ] + }, + "from": [ + 85.0156, + -7.4914 + ], + "tag": null, + "to": [ + 85.2956, + -7.6692 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66024, + 66072, + 0 + ] + }, + "from": [ + 85.2956, + -7.6692 + ], + "tag": null, + "to": [ + 85.8192, + -6.9749 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66078, + 66150, + 0 + ] + }, + "from": [ + 85.8192, + -6.9749 + ], + "tag": null, + "to": [ + 86.2106, + -7.7588 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66156, + 66205, + 0 + ] + }, + "from": [ + 86.2106, + -7.7588 + ], + "tag": null, + "to": [ + 87.052, + -7.2193 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66211, + 66282, + 0 + ] + }, + "from": [ + 87.052, + -7.2193 + ], + "tag": null, + "to": [ + 87.6657, + -6.9981 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66288, + 66337, + 0 + ] + }, + "from": [ + 87.6657, + -6.9981 + ], + "tag": null, + "to": [ + 88.5488, + -6.2984 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66343, + 66416, + 0 + ] + }, + "from": [ + 88.5488, + -6.2984 + ], + "tag": null, + "to": [ + 88.1359, + -6.7137 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66422, + 66493, + 0 + ] + }, + "from": [ + 88.1359, + -6.7137 + ], + "tag": null, + "to": [ + 88.6528, + -7.6222 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66499, + 66571, + 0 + ] + }, + "from": [ + 88.6528, + -7.6222 + ], + "tag": null, + "to": [ + 87.9812, + -8.5828 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66577, + 66651, + 0 + ] + }, + "from": [ + 87.9812, + -8.5828 + ], + "tag": null, + "to": [ + 87.9915, + -8.9562 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66657, + 66730, + 0 + ] + }, + "from": [ + 87.9915, + -8.9562 + ], + "tag": null, + "to": [ + 88.0951, + -9.3792 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66736, + 66808, + 0 + ] + }, + "from": [ + 88.0951, + -9.3792 + ], + "tag": null, + "to": [ + 88.5471, + -9.4915 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66814, + 66886, + 0 + ] + }, + "from": [ + 88.5471, + -9.4915 + ], + "tag": null, + "to": [ + 87.665, + -10.207 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66892, + 66941, + 0 + ] + }, + "from": [ + 87.665, + -10.207 + ], + "tag": null, + "to": [ + 88.5845, + -9.9379 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66947, + 67018, + 0 + ] + }, + "from": [ + 88.5845, + -9.9379 + ], + "tag": null, + "to": [ + 89.2944, + -9.8208 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67024, + 67096, + 0 + ] + }, + "from": [ + 89.2944, + -9.8208 + ], + "tag": null, + "to": [ + 88.9157, + -9.1101 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67102, + 67176, + 0 + ] + }, + "from": [ + 88.9157, + -9.1101 + ], + "tag": null, + "to": [ + 88.6184, + -9.1766 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67182, + 67254, + 0 + ] + }, + "from": [ + 88.6184, + -9.1766 + ], + "tag": null, + "to": [ + 88.848, + -9.9368 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67260, + 67332, + 0 + ] + }, + "from": [ + 88.848, + -9.9368 + ], + "tag": null, + "to": [ + 88.2124, + -9.7422 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67338, + 67387, + 0 + ] + }, + "from": [ + 88.2124, + -9.7422 + ], + "tag": null, + "to": [ + 88.7845, + -9.4533 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67393, + 67466, + 0 + ] + }, + "from": [ + 88.7845, + -9.4533 + ], + "tag": null, + "to": [ + 87.8265, + -9.4758 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67472, + 67543, + 0 + ] + }, + "from": [ + 87.8265, + -9.4758 + ], + "tag": null, + "to": [ + 88.1564, + -10.3111 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67549, + 67620, + 0 + ] + }, + "from": [ + 88.1564, + -10.3111 + ], + "tag": null, + "to": [ + 88.8999, + -11.1031 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67626, + 67675, + 0 + ] + }, + "from": [ + 88.8999, + -11.1031 + ], + "tag": null, + "to": [ + 89.8934, + -10.1988 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67681, + 67752, + 0 + ] + }, + "from": [ + 89.8934, + -10.1988 + ], + "tag": null, + "to": [ + 89.3898, + -9.6837 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67758, + 67807, + 0 + ] + }, + "from": [ + 89.3898, + -9.6837 + ], + "tag": null, + "to": [ + 89.9425, + -8.9225 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67813, + 67884, + 0 + ] + }, + "from": [ + 89.9425, + -8.9225 + ], + "tag": null, + "to": [ + 90.8018, + -8.8383 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67890, + 67961, + 0 + ] + }, + "from": [ + 90.8018, + -8.8383 + ], + "tag": null, + "to": [ + 89.9837, + -9.7419 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67967, + 68039, + 0 + ] + }, + "from": [ + 89.9837, + -9.7419 + ], + "tag": null, + "to": [ + 90.3003, + -9.9838 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68045, + 68119, + 0 + ] + }, + "from": [ + 90.3003, + -9.9838 + ], + "tag": null, + "to": [ + 89.8564, + -10.2429 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68125, + 68198, + 0 + ] + }, + "from": [ + 89.8564, + -10.2429 + ], + "tag": null, + "to": [ + 89.1958, + -10.6465 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68204, + 68276, + 0 + ] + }, + "from": [ + 89.1958, + -10.6465 + ], + "tag": null, + "to": [ + 88.4788, + -10.4119 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68282, + 68355, + 0 + ] + }, + "from": [ + 88.4788, + -10.4119 + ], + "tag": null, + "to": [ + 88.222, + -10.8622 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68361, + 68432, + 0 + ] + }, + "from": [ + 88.222, + -10.8622 + ], + "tag": null, + "to": [ + 88.8972, + -11.8332 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68438, + 68509, + 0 + ] + }, + "from": [ + 88.8972, + -11.8332 + ], + "tag": null, + "to": [ + 88.3282, + -11.2413 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68515, + 68586, + 0 + ] + }, + "from": [ + 88.3282, + -11.2413 + ], + "tag": null, + "to": [ + 87.4954, + -10.7735 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68592, + 68665, + 0 + ] + }, + "from": [ + 87.4954, + -10.7735 + ], + "tag": null, + "to": [ + 86.6842, + -11.1917 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68671, + 68743, + 0 + ] + }, + "from": [ + 86.6842, + -11.1917 + ], + "tag": null, + "to": [ + 86.7223, + -10.935 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68749, + 68821, + 0 + ] + }, + "from": [ + 86.7223, + -10.935 + ], + "tag": null, + "to": [ + 86.9618, + -10.4981 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68827, + 68899, + 0 + ] + }, + "from": [ + 86.9618, + -10.4981 + ], + "tag": null, + "to": [ + 86.799, + -9.6916 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68905, + 68979, + 0 + ] + }, + "from": [ + 86.799, + -9.6916 + ], + "tag": null, + "to": [ + 86.7093, + -9.7805 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68985, + 69057, + 0 + ] + }, + "from": [ + 86.7093, + -9.7805 + ], + "tag": null, + "to": [ + 87.6296, + -9.9539 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69063, + 69137, + 0 + ] + }, + "from": [ + 87.6296, + -9.9539 + ], + "tag": null, + "to": [ + 87.6314, + -10.4718 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69143, + 69214, + 0 + ] + }, + "from": [ + 87.6314, + -10.4718 + ], + "tag": null, + "to": [ + 88.252, + -11.3451 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69220, + 69291, + 0 + ] + }, + "from": [ + 88.252, + -11.3451 + ], + "tag": null, + "to": [ + 87.4744, + -10.5849 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69297, + 69346, + 0 + ] + }, + "from": [ + 87.4744, + -10.5849 + ], + "tag": null, + "to": [ + 88.0183, + -9.7399 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69352, + 69426, + 0 + ] + }, + "from": [ + 88.0183, + -9.7399 + ], + "tag": null, + "to": [ + 87.8879, + -9.7279 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69432, + 69505, + 0 + ] + }, + "from": [ + 87.8879, + -9.7279 + ], + "tag": null, + "to": [ + 87.7223, + -9.9356 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69511, + 69584, + 0 + ] + }, + "from": [ + 87.7223, + -9.9356 + ], + "tag": null, + "to": [ + 87.626, + -9.9898 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69590, + 69638, + 0 + ] + }, + "from": [ + 87.626, + -9.9898 + ], + "tag": null, + "to": [ + 88.5281, + -9.5939 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69644, + 69717, + 0 + ] + }, + "from": [ + 88.5281, + -9.5939 + ], + "tag": null, + "to": [ + 88.8081, + -9.7717 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69723, + 69771, + 0 + ] + }, + "from": [ + 88.8081, + -9.7717 + ], + "tag": null, + "to": [ + 89.3317, + -9.0774 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69777, + 69849, + 0 + ] + }, + "from": [ + 89.3317, + -9.0774 + ], + "tag": null, + "to": [ + 89.7231, + -9.8614 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69855, + 69904, + 0 + ] + }, + "from": [ + 89.7231, + -9.8614 + ], + "tag": null, + "to": [ + 90.5645, + -9.3218 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69910, + 69981, + 0 + ] + }, + "from": [ + 90.5645, + -9.3218 + ], + "tag": null, + "to": [ + 91.1783, + -9.1006 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69987, + 70060, + 0 + ] + }, + "from": [ + 91.1783, + -9.1006 + ], + "tag": null, + "to": [ + 91.0825, + -9.854 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70066, + 70139, + 0 + ] + }, + "from": [ + 91.0825, + -9.854 + ], + "tag": null, + "to": [ + 90.9099, + -10.6209 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70145, + 70194, + 0 + ] + }, + "from": [ + 90.9099, + -10.6209 + ], + "tag": null, + "to": [ + 91.8044, + -10.0116 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70200, + 70273, + 0 + ] + }, + "from": [ + 91.8044, + -10.0116 + ], + "tag": null, + "to": [ + 91.3915, + -10.4268 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70279, + 70350, + 0 + ] + }, + "from": [ + 91.3915, + -10.4268 + ], + "tag": null, + "to": [ + 91.9084, + -11.3354 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70356, + 70427, + 0 + ] + }, + "from": [ + 91.9084, + -11.3354 + ], + "tag": null, + "to": [ + 92.5836, + -12.3063 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70433, + 70504, + 0 + ] + }, + "from": [ + 92.5836, + -12.3063 + ], + "tag": null, + "to": [ + 92.0147, + -11.7144 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70510, + 70581, + 0 + ] + }, + "from": [ + 92.0147, + -11.7144 + ], + "tag": null, + "to": [ + 92.9611, + -11.9829 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70587, + 70636, + 0 + ] + }, + "from": [ + 92.9611, + -11.9829 + ], + "tag": null, + "to": [ + 93.4853, + -11.0818 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70642, + 70715, + 0 + ] + }, + "from": [ + 93.4853, + -11.0818 + ], + "tag": null, + "to": [ + 93.3427, + -11.6012 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70721, + 70793, + 0 + ] + }, + "from": [ + 93.3427, + -11.6012 + ], + "tag": null, + "to": [ + 92.914, + -12.0236 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70799, + 70872, + 0 + ] + }, + "from": [ + 92.914, + -12.0236 + ], + "tag": null, + "to": [ + 92.8209, + -12.9299 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70878, + 70949, + 0 + ] + }, + "from": [ + 92.8209, + -12.9299 + ], + "tag": null, + "to": [ + 92.5441, + -12.2483 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70955, + 71026, + 0 + ] + }, + "from": [ + 92.5441, + -12.2483 + ], + "tag": null, + "to": [ + 93.5238, + -12.3305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71032, + 71103, + 0 + ] + }, + "from": [ + 93.5238, + -12.3305 + ], + "tag": null, + "to": [ + 92.6571, + -12.6315 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71109, + 71180, + 0 + ] + }, + "from": [ + 92.6571, + -12.6315 + ], + "tag": null, + "to": [ + 93.1945, + -12.6113 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71186, + 71257, + 0 + ] + }, + "from": [ + 93.1945, + -12.6113 + ], + "tag": null, + "to": [ + 94.1278, + -13.2341 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71263, + 71336, + 0 + ] + }, + "from": [ + 94.1278, + -13.2341 + ], + "tag": null, + "to": [ + 94.3083, + -13.603 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71342, + 71391, + 0 + ] + }, + "from": [ + 94.3083, + -13.603 + ], + "tag": null, + "to": [ + 94.8467, + -13.3653 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71397, + 71469, + 0 + ] + }, + "from": [ + 94.8467, + -13.3653 + ], + "tag": null, + "to": [ + 95.2372, + -13.2225 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71475, + 71546, + 0 + ] + }, + "from": [ + 95.2372, + -13.2225 + ], + "tag": null, + "to": [ + 95.335, + -12.2318 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71552, + 71623, + 0 + ] + }, + "from": [ + 95.335, + -12.2318 + ], + "tag": null, + "to": [ + 95.8637, + -13.0242 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71629, + 71700, + 0 + ] + }, + "from": [ + 95.8637, + -13.0242 + ], + "tag": null, + "to": [ + 96.2427, + -12.9003 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71706, + 71777, + 0 + ] + }, + "from": [ + 96.2427, + -12.9003 + ], + "tag": null, + "to": [ + 95.2942, + -12.2273 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71783, + 71855, + 0 + ] + }, + "from": [ + 95.2942, + -12.2273 + ], + "tag": null, + "to": [ + 96.0393, + -12.4405 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71861, + 71933, + 0 + ] + }, + "from": [ + 96.0393, + -12.4405 + ], + "tag": null, + "to": [ + 96.2267, + -12.6001 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71939, + 72012, + 0 + ] + }, + "from": [ + 96.2267, + -12.6001 + ], + "tag": null, + "to": [ + 96.1694, + -13.1437 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72018, + 72091, + 0 + ] + }, + "from": [ + 96.1694, + -13.1437 + ], + "tag": null, + "to": [ + 96.0735, + -13.8971 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72097, + 72170, + 0 + ] + }, + "from": [ + 96.0735, + -13.8971 + ], + "tag": null, + "to": [ + 95.901, + -14.664 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72176, + 72225, + 0 + ] + }, + "from": [ + 95.901, + -14.664 + ], + "tag": null, + "to": [ + 96.7955, + -14.0547 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72231, + 72302, + 0 + ] + }, + "from": [ + 96.7955, + -14.0547 + ], + "tag": null, + "to": [ + 96.1716, + -13.6493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72308, + 72380, + 0 + ] + }, + "from": [ + 96.1716, + -13.6493 + ], + "tag": null, + "to": [ + 96.3096, + -14.128 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72386, + 72457, + 0 + ] + }, + "from": [ + 96.3096, + -14.128 + ], + "tag": null, + "to": [ + 95.3579, + -13.266 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72463, + 72512, + 0 + ] + }, + "from": [ + 95.3579, + -13.266 + ], + "tag": null, + "to": [ + 96.2978, + -12.6334 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72518, + 72591, + 0 + ] + }, + "from": [ + 96.2978, + -12.6334 + ], + "tag": null, + "to": [ + 95.4346, + -12.6173 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72597, + 72669, + 0 + ] + }, + "from": [ + 95.4346, + -12.6173 + ], + "tag": null, + "to": [ + 95.6262, + -13.1089 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72675, + 72748, + 0 + ] + }, + "from": [ + 95.6262, + -13.1089 + ], + "tag": null, + "to": [ + 94.7618, + -13.2233 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72754, + 72828, + 0 + ] + }, + "from": [ + 94.7618, + -13.2233 + ], + "tag": null, + "to": [ + 94.7327, + -13.7447 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72834, + 72905, + 0 + ] + }, + "from": [ + 94.7327, + -13.7447 + ], + "tag": null, + "to": [ + 93.8614, + -12.958 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72911, + 72960, + 0 + ] + }, + "from": [ + 93.8614, + -12.958 + ], + "tag": null, + "to": [ + 94.7458, + -13.1406 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72966, + 73037, + 0 + ] + }, + "from": [ + 94.7458, + -13.1406 + ], + "tag": null, + "to": [ + 94.0479, + -13.0965 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73043, + 73118, + 0 + ] + }, + "from": [ + 94.0479, + -13.0965 + ], + "tag": null, + "to": [ + 93.5674, + -13.1251 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73124, + 73197, + 0 + ] + }, + "from": [ + 93.5674, + -13.1251 + ], + "tag": null, + "to": [ + 93.9802, + -13.5744 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73203, + 73251, + 0 + ] + }, + "from": [ + 93.9802, + -13.5744 + ], + "tag": null, + "to": [ + 94.7713, + -12.681 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73257, + 73328, + 0 + ] + }, + "from": [ + 94.7713, + -12.681 + ], + "tag": null, + "to": [ + 95.4221, + -13.37 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73334, + 73406, + 0 + ] + }, + "from": [ + 95.4221, + -13.37 + ], + "tag": null, + "to": [ + 95.527, + -13.9168 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73412, + 73484, + 0 + ] + }, + "from": [ + 95.527, + -13.9168 + ], + "tag": null, + "to": [ + 94.9509, + -14.1807 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73490, + 73561, + 0 + ] + }, + "from": [ + 94.9509, + -14.1807 + ], + "tag": null, + "to": [ + 95.3492, + -13.3771 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73567, + 73616, + 0 + ] + }, + "from": [ + 95.3492, + -13.3771 + ], + "tag": null, + "to": [ + 94.6753, + -14.2955 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73622, + 73694, + 0 + ] + }, + "from": [ + 94.6753, + -14.2955 + ], + "tag": null, + "to": [ + 93.8154, + -15.2455 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73700, + 73771, + 0 + ] + }, + "from": [ + 93.8154, + -15.2455 + ], + "tag": null, + "to": [ + 94.4439, + -15.7641 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73777, + 73848, + 0 + ] + }, + "from": [ + 94.4439, + -15.7641 + ], + "tag": null, + "to": [ + 94.7662, + -15.5179 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73854, + 73926, + 0 + ] + }, + "from": [ + 94.7662, + -15.5179 + ], + "tag": null, + "to": [ + 94.9637, + -16.2708 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73932, + 74005, + 0 + ] + }, + "from": [ + 94.9637, + -16.2708 + ], + "tag": null, + "to": [ + 94.5319, + -16.0814 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74011, + 74082, + 0 + ] + }, + "from": [ + 94.5319, + -16.0814 + ], + "tag": null, + "to": [ + 95.4034, + -16.803 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74088, + 74096, + 0 + ] + }, + "from": [ + 95.4034, + -16.803 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35, + 64, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 35, + 64, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 35, + 64, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/rendered_model.png b/src/wasm-lib/kcl/tests/mike_stress_test/rendered_model.png new file mode 100644 index 000000000..fe02cc6e6 Binary files /dev/null and b/src/wasm-lib/kcl/tests/mike_stress_test/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/tokens.snap b/src/wasm-lib/kcl/tests/mike_stress_test/tokens.snap new file mode 100644 index 000000000..c4b43e7f5 --- /dev/null +++ b/src/wasm-lib/kcl/tests/mike_stress_test/tokens.snap @@ -0,0 +1,105903 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing mike_stress_test.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 54, + "value": "0.0" + }, + { + "type": "comma", + "start": 54, + "end": 55, + "value": "," + }, + { + "type": "whitespace", + "start": 55, + "end": 56, + "value": " " + }, + { + "type": "number", + "start": 56, + "end": 59, + "value": "0.0" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": "]" + }, + { + "type": "comma", + "start": 60, + "end": 61, + "value": "," + }, + { + "type": "whitespace", + "start": 61, + "end": 62, + "value": " " + }, + { + "type": "operator", + "start": 62, + "end": 63, + "value": "%" + }, + { + "type": "brace", + "start": 63, + "end": 64, + "value": ")" + }, + { + "type": "whitespace", + "start": 64, + "end": 67, + "value": "\n " + }, + { + "type": "operator", + "start": 67, + "end": 69, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69, + "end": 70, + "value": " " + }, + { + "type": "word", + "start": 70, + "end": 74, + "value": "line" + }, + { + "type": "brace", + "start": 74, + "end": 75, + "value": "(" + }, + { + "type": "brace", + "start": 75, + "end": 76, + "value": "[" + }, + { + "type": "whitespace", + "start": 76, + "end": 84, + "value": "\n " + }, + { + "type": "operator", + "start": 84, + "end": 85, + "value": "-" + }, + { + "type": "number", + "start": 85, + "end": 103, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 103, + "end": 104, + "value": "," + }, + { + "type": "whitespace", + "start": 104, + "end": 112, + "value": "\n " + }, + { + "type": "number", + "start": 112, + "end": 131, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 131, + "end": 137, + "value": "\n " + }, + { + "type": "brace", + "start": 137, + "end": 138, + "value": "]" + }, + { + "type": "comma", + "start": 138, + "end": 139, + "value": "," + }, + { + "type": "whitespace", + "start": 139, + "end": 140, + "value": " " + }, + { + "type": "operator", + "start": 140, + "end": 141, + "value": "%" + }, + { + "type": "brace", + "start": 141, + "end": 142, + "value": ")" + }, + { + "type": "whitespace", + "start": 142, + "end": 145, + "value": "\n " + }, + { + "type": "operator", + "start": 145, + "end": 147, + "value": "|>" + }, + { + "type": "whitespace", + "start": 147, + "end": 148, + "value": " " + }, + { + "type": "word", + "start": 148, + "end": 152, + "value": "line" + }, + { + "type": "brace", + "start": 152, + "end": 153, + "value": "(" + }, + { + "type": "brace", + "start": 153, + "end": 154, + "value": "[" + }, + { + "type": "whitespace", + "start": 154, + "end": 162, + "value": "\n " + }, + { + "type": "operator", + "start": 162, + "end": 163, + "value": "-" + }, + { + "type": "number", + "start": 163, + "end": 181, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 181, + "end": 182, + "value": "," + }, + { + "type": "whitespace", + "start": 182, + "end": 190, + "value": "\n " + }, + { + "type": "number", + "start": 190, + "end": 208, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 208, + "end": 214, + "value": "\n " + }, + { + "type": "brace", + "start": 214, + "end": 215, + "value": "]" + }, + { + "type": "comma", + "start": 215, + "end": 216, + "value": "," + }, + { + "type": "whitespace", + "start": 216, + "end": 217, + "value": " " + }, + { + "type": "operator", + "start": 217, + "end": 218, + "value": "%" + }, + { + "type": "brace", + "start": 218, + "end": 219, + "value": ")" + }, + { + "type": "whitespace", + "start": 219, + "end": 222, + "value": "\n " + }, + { + "type": "operator", + "start": 222, + "end": 224, + "value": "|>" + }, + { + "type": "whitespace", + "start": 224, + "end": 225, + "value": " " + }, + { + "type": "word", + "start": 225, + "end": 229, + "value": "line" + }, + { + "type": "brace", + "start": 229, + "end": 230, + "value": "(" + }, + { + "type": "brace", + "start": 230, + "end": 231, + "value": "[" + }, + { + "type": "whitespace", + "start": 231, + "end": 239, + "value": "\n " + }, + { + "type": "operator", + "start": 239, + "end": 240, + "value": "-" + }, + { + "type": "number", + "start": 240, + "end": 258, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 258, + "end": 259, + "value": "," + }, + { + "type": "whitespace", + "start": 259, + "end": 267, + "value": "\n " + }, + { + "type": "number", + "start": 267, + "end": 285, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 285, + "end": 291, + "value": "\n " + }, + { + "type": "brace", + "start": 291, + "end": 292, + "value": "]" + }, + { + "type": "comma", + "start": 292, + "end": 293, + "value": "," + }, + { + "type": "whitespace", + "start": 293, + "end": 294, + "value": " " + }, + { + "type": "operator", + "start": 294, + "end": 295, + "value": "%" + }, + { + "type": "brace", + "start": 295, + "end": 296, + "value": ")" + }, + { + "type": "whitespace", + "start": 296, + "end": 299, + "value": "\n " + }, + { + "type": "operator", + "start": 299, + "end": 301, + "value": "|>" + }, + { + "type": "whitespace", + "start": 301, + "end": 302, + "value": " " + }, + { + "type": "word", + "start": 302, + "end": 306, + "value": "line" + }, + { + "type": "brace", + "start": 306, + "end": 307, + "value": "(" + }, + { + "type": "brace", + "start": 307, + "end": 308, + "value": "[" + }, + { + "type": "whitespace", + "start": 308, + "end": 316, + "value": "\n " + }, + { + "type": "operator", + "start": 316, + "end": 317, + "value": "-" + }, + { + "type": "number", + "start": 317, + "end": 335, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 335, + "end": 336, + "value": "," + }, + { + "type": "whitespace", + "start": 336, + "end": 344, + "value": "\n " + }, + { + "type": "operator", + "start": 344, + "end": 345, + "value": "-" + }, + { + "type": "number", + "start": 345, + "end": 364, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 364, + "end": 370, + "value": "\n " + }, + { + "type": "brace", + "start": 370, + "end": 371, + "value": "]" + }, + { + "type": "comma", + "start": 371, + "end": 372, + "value": "," + }, + { + "type": "whitespace", + "start": 372, + "end": 373, + "value": " " + }, + { + "type": "operator", + "start": 373, + "end": 374, + "value": "%" + }, + { + "type": "brace", + "start": 374, + "end": 375, + "value": ")" + }, + { + "type": "whitespace", + "start": 375, + "end": 378, + "value": "\n " + }, + { + "type": "operator", + "start": 378, + "end": 380, + "value": "|>" + }, + { + "type": "whitespace", + "start": 380, + "end": 381, + "value": " " + }, + { + "type": "word", + "start": 381, + "end": 385, + "value": "line" + }, + { + "type": "brace", + "start": 385, + "end": 386, + "value": "(" + }, + { + "type": "brace", + "start": 386, + "end": 387, + "value": "[" + }, + { + "type": "whitespace", + "start": 387, + "end": 395, + "value": "\n " + }, + { + "type": "number", + "start": 395, + "end": 414, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 414, + "end": 415, + "value": "," + }, + { + "type": "whitespace", + "start": 415, + "end": 423, + "value": "\n " + }, + { + "type": "number", + "start": 423, + "end": 442, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 442, + "end": 448, + "value": "\n " + }, + { + "type": "brace", + "start": 448, + "end": 449, + "value": "]" + }, + { + "type": "comma", + "start": 449, + "end": 450, + "value": "," + }, + { + "type": "whitespace", + "start": 450, + "end": 451, + "value": " " + }, + { + "type": "operator", + "start": 451, + "end": 452, + "value": "%" + }, + { + "type": "brace", + "start": 452, + "end": 453, + "value": ")" + }, + { + "type": "whitespace", + "start": 453, + "end": 456, + "value": "\n " + }, + { + "type": "operator", + "start": 456, + "end": 458, + "value": "|>" + }, + { + "type": "whitespace", + "start": 458, + "end": 459, + "value": " " + }, + { + "type": "word", + "start": 459, + "end": 463, + "value": "line" + }, + { + "type": "brace", + "start": 463, + "end": 464, + "value": "(" + }, + { + "type": "brace", + "start": 464, + "end": 465, + "value": "[" + }, + { + "type": "whitespace", + "start": 465, + "end": 473, + "value": "\n " + }, + { + "type": "number", + "start": 473, + "end": 492, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 492, + "end": 493, + "value": "," + }, + { + "type": "whitespace", + "start": 493, + "end": 501, + "value": "\n " + }, + { + "type": "number", + "start": 501, + "end": 520, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 520, + "end": 526, + "value": "\n " + }, + { + "type": "brace", + "start": 526, + "end": 527, + "value": "]" + }, + { + "type": "comma", + "start": 527, + "end": 528, + "value": "," + }, + { + "type": "whitespace", + "start": 528, + "end": 529, + "value": " " + }, + { + "type": "operator", + "start": 529, + "end": 530, + "value": "%" + }, + { + "type": "brace", + "start": 530, + "end": 531, + "value": ")" + }, + { + "type": "whitespace", + "start": 531, + "end": 534, + "value": "\n " + }, + { + "type": "operator", + "start": 534, + "end": 536, + "value": "|>" + }, + { + "type": "whitespace", + "start": 536, + "end": 537, + "value": " " + }, + { + "type": "word", + "start": 537, + "end": 541, + "value": "line" + }, + { + "type": "brace", + "start": 541, + "end": 542, + "value": "(" + }, + { + "type": "brace", + "start": 542, + "end": 543, + "value": "[" + }, + { + "type": "whitespace", + "start": 543, + "end": 551, + "value": "\n " + }, + { + "type": "operator", + "start": 551, + "end": 552, + "value": "-" + }, + { + "type": "number", + "start": 552, + "end": 571, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 571, + "end": 572, + "value": "," + }, + { + "type": "whitespace", + "start": 572, + "end": 580, + "value": "\n " + }, + { + "type": "number", + "start": 580, + "end": 598, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 598, + "end": 604, + "value": "\n " + }, + { + "type": "brace", + "start": 604, + "end": 605, + "value": "]" + }, + { + "type": "comma", + "start": 605, + "end": 606, + "value": "," + }, + { + "type": "whitespace", + "start": 606, + "end": 607, + "value": " " + }, + { + "type": "operator", + "start": 607, + "end": 608, + "value": "%" + }, + { + "type": "brace", + "start": 608, + "end": 609, + "value": ")" + }, + { + "type": "whitespace", + "start": 609, + "end": 612, + "value": "\n " + }, + { + "type": "operator", + "start": 612, + "end": 614, + "value": "|>" + }, + { + "type": "whitespace", + "start": 614, + "end": 615, + "value": " " + }, + { + "type": "word", + "start": 615, + "end": 619, + "value": "line" + }, + { + "type": "brace", + "start": 619, + "end": 620, + "value": "(" + }, + { + "type": "brace", + "start": 620, + "end": 621, + "value": "[" + }, + { + "type": "whitespace", + "start": 621, + "end": 629, + "value": "\n " + }, + { + "type": "operator", + "start": 629, + "end": 630, + "value": "-" + }, + { + "type": "number", + "start": 630, + "end": 649, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 649, + "end": 650, + "value": "," + }, + { + "type": "whitespace", + "start": 650, + "end": 658, + "value": "\n " + }, + { + "type": "operator", + "start": 658, + "end": 659, + "value": "-" + }, + { + "type": "number", + "start": 659, + "end": 678, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 678, + "end": 684, + "value": "\n " + }, + { + "type": "brace", + "start": 684, + "end": 685, + "value": "]" + }, + { + "type": "comma", + "start": 685, + "end": 686, + "value": "," + }, + { + "type": "whitespace", + "start": 686, + "end": 687, + "value": " " + }, + { + "type": "operator", + "start": 687, + "end": 688, + "value": "%" + }, + { + "type": "brace", + "start": 688, + "end": 689, + "value": ")" + }, + { + "type": "whitespace", + "start": 689, + "end": 692, + "value": "\n " + }, + { + "type": "operator", + "start": 692, + "end": 694, + "value": "|>" + }, + { + "type": "whitespace", + "start": 694, + "end": 695, + "value": " " + }, + { + "type": "word", + "start": 695, + "end": 699, + "value": "line" + }, + { + "type": "brace", + "start": 699, + "end": 700, + "value": "(" + }, + { + "type": "brace", + "start": 700, + "end": 701, + "value": "[" + }, + { + "type": "whitespace", + "start": 701, + "end": 709, + "value": "\n " + }, + { + "type": "number", + "start": 709, + "end": 727, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 727, + "end": 728, + "value": "," + }, + { + "type": "whitespace", + "start": 728, + "end": 736, + "value": "\n " + }, + { + "type": "operator", + "start": 736, + "end": 737, + "value": "-" + }, + { + "type": "number", + "start": 737, + "end": 756, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 756, + "end": 762, + "value": "\n " + }, + { + "type": "brace", + "start": 762, + "end": 763, + "value": "]" + }, + { + "type": "comma", + "start": 763, + "end": 764, + "value": "," + }, + { + "type": "whitespace", + "start": 764, + "end": 765, + "value": " " + }, + { + "type": "operator", + "start": 765, + "end": 766, + "value": "%" + }, + { + "type": "brace", + "start": 766, + "end": 767, + "value": ")" + }, + { + "type": "whitespace", + "start": 767, + "end": 770, + "value": "\n " + }, + { + "type": "operator", + "start": 770, + "end": 772, + "value": "|>" + }, + { + "type": "whitespace", + "start": 772, + "end": 773, + "value": " " + }, + { + "type": "word", + "start": 773, + "end": 777, + "value": "line" + }, + { + "type": "brace", + "start": 777, + "end": 778, + "value": "(" + }, + { + "type": "brace", + "start": 778, + "end": 779, + "value": "[" + }, + { + "type": "whitespace", + "start": 779, + "end": 787, + "value": "\n " + }, + { + "type": "number", + "start": 787, + "end": 808, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 808, + "end": 809, + "value": "," + }, + { + "type": "whitespace", + "start": 809, + "end": 817, + "value": "\n " + }, + { + "type": "operator", + "start": 817, + "end": 818, + "value": "-" + }, + { + "type": "number", + "start": 818, + "end": 836, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 836, + "end": 842, + "value": "\n " + }, + { + "type": "brace", + "start": 842, + "end": 843, + "value": "]" + }, + { + "type": "comma", + "start": 843, + "end": 844, + "value": "," + }, + { + "type": "whitespace", + "start": 844, + "end": 845, + "value": " " + }, + { + "type": "operator", + "start": 845, + "end": 846, + "value": "%" + }, + { + "type": "brace", + "start": 846, + "end": 847, + "value": ")" + }, + { + "type": "whitespace", + "start": 847, + "end": 850, + "value": "\n " + }, + { + "type": "operator", + "start": 850, + "end": 852, + "value": "|>" + }, + { + "type": "whitespace", + "start": 852, + "end": 853, + "value": " " + }, + { + "type": "word", + "start": 853, + "end": 857, + "value": "line" + }, + { + "type": "brace", + "start": 857, + "end": 858, + "value": "(" + }, + { + "type": "brace", + "start": 858, + "end": 859, + "value": "[" + }, + { + "type": "whitespace", + "start": 859, + "end": 867, + "value": "\n " + }, + { + "type": "number", + "start": 867, + "end": 885, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 885, + "end": 886, + "value": "," + }, + { + "type": "whitespace", + "start": 886, + "end": 894, + "value": "\n " + }, + { + "type": "operator", + "start": 894, + "end": 895, + "value": "-" + }, + { + "type": "number", + "start": 895, + "end": 913, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 913, + "end": 919, + "value": "\n " + }, + { + "type": "brace", + "start": 919, + "end": 920, + "value": "]" + }, + { + "type": "comma", + "start": 920, + "end": 921, + "value": "," + }, + { + "type": "whitespace", + "start": 921, + "end": 922, + "value": " " + }, + { + "type": "operator", + "start": 922, + "end": 923, + "value": "%" + }, + { + "type": "brace", + "start": 923, + "end": 924, + "value": ")" + }, + { + "type": "whitespace", + "start": 924, + "end": 927, + "value": "\n " + }, + { + "type": "operator", + "start": 927, + "end": 929, + "value": "|>" + }, + { + "type": "whitespace", + "start": 929, + "end": 930, + "value": " " + }, + { + "type": "word", + "start": 930, + "end": 934, + "value": "line" + }, + { + "type": "brace", + "start": 934, + "end": 935, + "value": "(" + }, + { + "type": "brace", + "start": 935, + "end": 936, + "value": "[" + }, + { + "type": "whitespace", + "start": 936, + "end": 944, + "value": "\n " + }, + { + "type": "operator", + "start": 944, + "end": 945, + "value": "-" + }, + { + "type": "number", + "start": 945, + "end": 963, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 963, + "end": 964, + "value": "," + }, + { + "type": "whitespace", + "start": 964, + "end": 972, + "value": "\n " + }, + { + "type": "number", + "start": 972, + "end": 990, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 990, + "end": 996, + "value": "\n " + }, + { + "type": "brace", + "start": 996, + "end": 997, + "value": "]" + }, + { + "type": "comma", + "start": 997, + "end": 998, + "value": "," + }, + { + "type": "whitespace", + "start": 998, + "end": 999, + "value": " " + }, + { + "type": "operator", + "start": 999, + "end": 1000, + "value": "%" + }, + { + "type": "brace", + "start": 1000, + "end": 1001, + "value": ")" + }, + { + "type": "whitespace", + "start": 1001, + "end": 1004, + "value": "\n " + }, + { + "type": "operator", + "start": 1004, + "end": 1006, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1006, + "end": 1007, + "value": " " + }, + { + "type": "word", + "start": 1007, + "end": 1011, + "value": "line" + }, + { + "type": "brace", + "start": 1011, + "end": 1012, + "value": "(" + }, + { + "type": "brace", + "start": 1012, + "end": 1013, + "value": "[" + }, + { + "type": "number", + "start": 1013, + "end": 1031, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 1031, + "end": 1032, + "value": "," + }, + { + "type": "whitespace", + "start": 1032, + "end": 1033, + "value": " " + }, + { + "type": "number", + "start": 1033, + "end": 1051, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 1051, + "end": 1052, + "value": "]" + }, + { + "type": "comma", + "start": 1052, + "end": 1053, + "value": "," + }, + { + "type": "whitespace", + "start": 1053, + "end": 1054, + "value": " " + }, + { + "type": "operator", + "start": 1054, + "end": 1055, + "value": "%" + }, + { + "type": "brace", + "start": 1055, + "end": 1056, + "value": ")" + }, + { + "type": "whitespace", + "start": 1056, + "end": 1059, + "value": "\n " + }, + { + "type": "operator", + "start": 1059, + "end": 1061, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1061, + "end": 1062, + "value": " " + }, + { + "type": "word", + "start": 1062, + "end": 1066, + "value": "line" + }, + { + "type": "brace", + "start": 1066, + "end": 1067, + "value": "(" + }, + { + "type": "brace", + "start": 1067, + "end": 1068, + "value": "[" + }, + { + "type": "whitespace", + "start": 1068, + "end": 1076, + "value": "\n " + }, + { + "type": "operator", + "start": 1076, + "end": 1077, + "value": "-" + }, + { + "type": "number", + "start": 1077, + "end": 1096, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 1096, + "end": 1097, + "value": "," + }, + { + "type": "whitespace", + "start": 1097, + "end": 1105, + "value": "\n " + }, + { + "type": "number", + "start": 1105, + "end": 1125, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 1125, + "end": 1131, + "value": "\n " + }, + { + "type": "brace", + "start": 1131, + "end": 1132, + "value": "]" + }, + { + "type": "comma", + "start": 1132, + "end": 1133, + "value": "," + }, + { + "type": "whitespace", + "start": 1133, + "end": 1134, + "value": " " + }, + { + "type": "operator", + "start": 1134, + "end": 1135, + "value": "%" + }, + { + "type": "brace", + "start": 1135, + "end": 1136, + "value": ")" + }, + { + "type": "whitespace", + "start": 1136, + "end": 1139, + "value": "\n " + }, + { + "type": "operator", + "start": 1139, + "end": 1141, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1141, + "end": 1142, + "value": " " + }, + { + "type": "word", + "start": 1142, + "end": 1146, + "value": "line" + }, + { + "type": "brace", + "start": 1146, + "end": 1147, + "value": "(" + }, + { + "type": "brace", + "start": 1147, + "end": 1148, + "value": "[" + }, + { + "type": "whitespace", + "start": 1148, + "end": 1156, + "value": "\n " + }, + { + "type": "operator", + "start": 1156, + "end": 1157, + "value": "-" + }, + { + "type": "number", + "start": 1157, + "end": 1175, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 1175, + "end": 1176, + "value": "," + }, + { + "type": "whitespace", + "start": 1176, + "end": 1184, + "value": "\n " + }, + { + "type": "operator", + "start": 1184, + "end": 1185, + "value": "-" + }, + { + "type": "number", + "start": 1185, + "end": 1204, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 1204, + "end": 1210, + "value": "\n " + }, + { + "type": "brace", + "start": 1210, + "end": 1211, + "value": "]" + }, + { + "type": "comma", + "start": 1211, + "end": 1212, + "value": "," + }, + { + "type": "whitespace", + "start": 1212, + "end": 1213, + "value": " " + }, + { + "type": "operator", + "start": 1213, + "end": 1214, + "value": "%" + }, + { + "type": "brace", + "start": 1214, + "end": 1215, + "value": ")" + }, + { + "type": "whitespace", + "start": 1215, + "end": 1218, + "value": "\n " + }, + { + "type": "operator", + "start": 1218, + "end": 1220, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1220, + "end": 1221, + "value": " " + }, + { + "type": "word", + "start": 1221, + "end": 1225, + "value": "line" + }, + { + "type": "brace", + "start": 1225, + "end": 1226, + "value": "(" + }, + { + "type": "brace", + "start": 1226, + "end": 1227, + "value": "[" + }, + { + "type": "whitespace", + "start": 1227, + "end": 1235, + "value": "\n " + }, + { + "type": "operator", + "start": 1235, + "end": 1236, + "value": "-" + }, + { + "type": "number", + "start": 1236, + "end": 1254, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 1254, + "end": 1255, + "value": "," + }, + { + "type": "whitespace", + "start": 1255, + "end": 1263, + "value": "\n " + }, + { + "type": "operator", + "start": 1263, + "end": 1264, + "value": "-" + }, + { + "type": "number", + "start": 1264, + "end": 1283, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 1283, + "end": 1289, + "value": "\n " + }, + { + "type": "brace", + "start": 1289, + "end": 1290, + "value": "]" + }, + { + "type": "comma", + "start": 1290, + "end": 1291, + "value": "," + }, + { + "type": "whitespace", + "start": 1291, + "end": 1292, + "value": " " + }, + { + "type": "operator", + "start": 1292, + "end": 1293, + "value": "%" + }, + { + "type": "brace", + "start": 1293, + "end": 1294, + "value": ")" + }, + { + "type": "whitespace", + "start": 1294, + "end": 1297, + "value": "\n " + }, + { + "type": "operator", + "start": 1297, + "end": 1299, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1299, + "end": 1300, + "value": " " + }, + { + "type": "word", + "start": 1300, + "end": 1304, + "value": "line" + }, + { + "type": "brace", + "start": 1304, + "end": 1305, + "value": "(" + }, + { + "type": "brace", + "start": 1305, + "end": 1306, + "value": "[" + }, + { + "type": "number", + "start": 1306, + "end": 1323, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 1323, + "end": 1324, + "value": "," + }, + { + "type": "whitespace", + "start": 1324, + "end": 1325, + "value": " " + }, + { + "type": "number", + "start": 1325, + "end": 1343, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 1343, + "end": 1344, + "value": "]" + }, + { + "type": "comma", + "start": 1344, + "end": 1345, + "value": "," + }, + { + "type": "whitespace", + "start": 1345, + "end": 1346, + "value": " " + }, + { + "type": "operator", + "start": 1346, + "end": 1347, + "value": "%" + }, + { + "type": "brace", + "start": 1347, + "end": 1348, + "value": ")" + }, + { + "type": "whitespace", + "start": 1348, + "end": 1351, + "value": "\n " + }, + { + "type": "operator", + "start": 1351, + "end": 1353, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1353, + "end": 1354, + "value": " " + }, + { + "type": "word", + "start": 1354, + "end": 1358, + "value": "line" + }, + { + "type": "brace", + "start": 1358, + "end": 1359, + "value": "(" + }, + { + "type": "brace", + "start": 1359, + "end": 1360, + "value": "[" + }, + { + "type": "whitespace", + "start": 1360, + "end": 1368, + "value": "\n " + }, + { + "type": "number", + "start": 1368, + "end": 1387, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 1387, + "end": 1388, + "value": "," + }, + { + "type": "whitespace", + "start": 1388, + "end": 1396, + "value": "\n " + }, + { + "type": "operator", + "start": 1396, + "end": 1397, + "value": "-" + }, + { + "type": "number", + "start": 1397, + "end": 1416, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 1416, + "end": 1422, + "value": "\n " + }, + { + "type": "brace", + "start": 1422, + "end": 1423, + "value": "]" + }, + { + "type": "comma", + "start": 1423, + "end": 1424, + "value": "," + }, + { + "type": "whitespace", + "start": 1424, + "end": 1425, + "value": " " + }, + { + "type": "operator", + "start": 1425, + "end": 1426, + "value": "%" + }, + { + "type": "brace", + "start": 1426, + "end": 1427, + "value": ")" + }, + { + "type": "whitespace", + "start": 1427, + "end": 1430, + "value": "\n " + }, + { + "type": "operator", + "start": 1430, + "end": 1432, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1432, + "end": 1433, + "value": " " + }, + { + "type": "word", + "start": 1433, + "end": 1437, + "value": "line" + }, + { + "type": "brace", + "start": 1437, + "end": 1438, + "value": "(" + }, + { + "type": "brace", + "start": 1438, + "end": 1439, + "value": "[" + }, + { + "type": "number", + "start": 1439, + "end": 1457, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 1457, + "end": 1458, + "value": "," + }, + { + "type": "whitespace", + "start": 1458, + "end": 1459, + "value": " " + }, + { + "type": "number", + "start": 1459, + "end": 1476, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 1476, + "end": 1477, + "value": "]" + }, + { + "type": "comma", + "start": 1477, + "end": 1478, + "value": "," + }, + { + "type": "whitespace", + "start": 1478, + "end": 1479, + "value": " " + }, + { + "type": "operator", + "start": 1479, + "end": 1480, + "value": "%" + }, + { + "type": "brace", + "start": 1480, + "end": 1481, + "value": ")" + }, + { + "type": "whitespace", + "start": 1481, + "end": 1484, + "value": "\n " + }, + { + "type": "operator", + "start": 1484, + "end": 1486, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1486, + "end": 1487, + "value": " " + }, + { + "type": "word", + "start": 1487, + "end": 1491, + "value": "line" + }, + { + "type": "brace", + "start": 1491, + "end": 1492, + "value": "(" + }, + { + "type": "brace", + "start": 1492, + "end": 1493, + "value": "[" + }, + { + "type": "whitespace", + "start": 1493, + "end": 1501, + "value": "\n " + }, + { + "type": "number", + "start": 1501, + "end": 1520, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 1520, + "end": 1521, + "value": "," + }, + { + "type": "whitespace", + "start": 1521, + "end": 1529, + "value": "\n " + }, + { + "type": "operator", + "start": 1529, + "end": 1530, + "value": "-" + }, + { + "type": "number", + "start": 1530, + "end": 1548, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 1548, + "end": 1554, + "value": "\n " + }, + { + "type": "brace", + "start": 1554, + "end": 1555, + "value": "]" + }, + { + "type": "comma", + "start": 1555, + "end": 1556, + "value": "," + }, + { + "type": "whitespace", + "start": 1556, + "end": 1557, + "value": " " + }, + { + "type": "operator", + "start": 1557, + "end": 1558, + "value": "%" + }, + { + "type": "brace", + "start": 1558, + "end": 1559, + "value": ")" + }, + { + "type": "whitespace", + "start": 1559, + "end": 1562, + "value": "\n " + }, + { + "type": "operator", + "start": 1562, + "end": 1564, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1564, + "end": 1565, + "value": " " + }, + { + "type": "word", + "start": 1565, + "end": 1569, + "value": "line" + }, + { + "type": "brace", + "start": 1569, + "end": 1570, + "value": "(" + }, + { + "type": "brace", + "start": 1570, + "end": 1571, + "value": "[" + }, + { + "type": "number", + "start": 1571, + "end": 1589, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 1589, + "end": 1590, + "value": "," + }, + { + "type": "whitespace", + "start": 1590, + "end": 1591, + "value": " " + }, + { + "type": "number", + "start": 1591, + "end": 1609, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 1609, + "end": 1610, + "value": "]" + }, + { + "type": "comma", + "start": 1610, + "end": 1611, + "value": "," + }, + { + "type": "whitespace", + "start": 1611, + "end": 1612, + "value": " " + }, + { + "type": "operator", + "start": 1612, + "end": 1613, + "value": "%" + }, + { + "type": "brace", + "start": 1613, + "end": 1614, + "value": ")" + }, + { + "type": "whitespace", + "start": 1614, + "end": 1617, + "value": "\n " + }, + { + "type": "operator", + "start": 1617, + "end": 1619, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1619, + "end": 1620, + "value": " " + }, + { + "type": "word", + "start": 1620, + "end": 1624, + "value": "line" + }, + { + "type": "brace", + "start": 1624, + "end": 1625, + "value": "(" + }, + { + "type": "brace", + "start": 1625, + "end": 1626, + "value": "[" + }, + { + "type": "whitespace", + "start": 1626, + "end": 1634, + "value": "\n " + }, + { + "type": "number", + "start": 1634, + "end": 1652, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 1652, + "end": 1653, + "value": "," + }, + { + "type": "whitespace", + "start": 1653, + "end": 1661, + "value": "\n " + }, + { + "type": "number", + "start": 1661, + "end": 1680, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 1680, + "end": 1686, + "value": "\n " + }, + { + "type": "brace", + "start": 1686, + "end": 1687, + "value": "]" + }, + { + "type": "comma", + "start": 1687, + "end": 1688, + "value": "," + }, + { + "type": "whitespace", + "start": 1688, + "end": 1689, + "value": " " + }, + { + "type": "operator", + "start": 1689, + "end": 1690, + "value": "%" + }, + { + "type": "brace", + "start": 1690, + "end": 1691, + "value": ")" + }, + { + "type": "whitespace", + "start": 1691, + "end": 1694, + "value": "\n " + }, + { + "type": "operator", + "start": 1694, + "end": 1696, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1696, + "end": 1697, + "value": " " + }, + { + "type": "word", + "start": 1697, + "end": 1701, + "value": "line" + }, + { + "type": "brace", + "start": 1701, + "end": 1702, + "value": "(" + }, + { + "type": "brace", + "start": 1702, + "end": 1703, + "value": "[" + }, + { + "type": "number", + "start": 1703, + "end": 1721, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 1721, + "end": 1722, + "value": "," + }, + { + "type": "whitespace", + "start": 1722, + "end": 1723, + "value": " " + }, + { + "type": "number", + "start": 1723, + "end": 1741, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 1741, + "end": 1742, + "value": "]" + }, + { + "type": "comma", + "start": 1742, + "end": 1743, + "value": "," + }, + { + "type": "whitespace", + "start": 1743, + "end": 1744, + "value": " " + }, + { + "type": "operator", + "start": 1744, + "end": 1745, + "value": "%" + }, + { + "type": "brace", + "start": 1745, + "end": 1746, + "value": ")" + }, + { + "type": "whitespace", + "start": 1746, + "end": 1749, + "value": "\n " + }, + { + "type": "operator", + "start": 1749, + "end": 1751, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1751, + "end": 1752, + "value": " " + }, + { + "type": "word", + "start": 1752, + "end": 1756, + "value": "line" + }, + { + "type": "brace", + "start": 1756, + "end": 1757, + "value": "(" + }, + { + "type": "brace", + "start": 1757, + "end": 1758, + "value": "[" + }, + { + "type": "whitespace", + "start": 1758, + "end": 1766, + "value": "\n " + }, + { + "type": "operator", + "start": 1766, + "end": 1767, + "value": "-" + }, + { + "type": "number", + "start": 1767, + "end": 1786, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 1786, + "end": 1787, + "value": "," + }, + { + "type": "whitespace", + "start": 1787, + "end": 1795, + "value": "\n " + }, + { + "type": "operator", + "start": 1795, + "end": 1796, + "value": "-" + }, + { + "type": "number", + "start": 1796, + "end": 1814, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 1814, + "end": 1820, + "value": "\n " + }, + { + "type": "brace", + "start": 1820, + "end": 1821, + "value": "]" + }, + { + "type": "comma", + "start": 1821, + "end": 1822, + "value": "," + }, + { + "type": "whitespace", + "start": 1822, + "end": 1823, + "value": " " + }, + { + "type": "operator", + "start": 1823, + "end": 1824, + "value": "%" + }, + { + "type": "brace", + "start": 1824, + "end": 1825, + "value": ")" + }, + { + "type": "whitespace", + "start": 1825, + "end": 1828, + "value": "\n " + }, + { + "type": "operator", + "start": 1828, + "end": 1830, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1830, + "end": 1831, + "value": " " + }, + { + "type": "word", + "start": 1831, + "end": 1835, + "value": "line" + }, + { + "type": "brace", + "start": 1835, + "end": 1836, + "value": "(" + }, + { + "type": "brace", + "start": 1836, + "end": 1837, + "value": "[" + }, + { + "type": "whitespace", + "start": 1837, + "end": 1845, + "value": "\n " + }, + { + "type": "number", + "start": 1845, + "end": 1863, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 1863, + "end": 1864, + "value": "," + }, + { + "type": "whitespace", + "start": 1864, + "end": 1872, + "value": "\n " + }, + { + "type": "operator", + "start": 1872, + "end": 1873, + "value": "-" + }, + { + "type": "number", + "start": 1873, + "end": 1891, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 1891, + "end": 1897, + "value": "\n " + }, + { + "type": "brace", + "start": 1897, + "end": 1898, + "value": "]" + }, + { + "type": "comma", + "start": 1898, + "end": 1899, + "value": "," + }, + { + "type": "whitespace", + "start": 1899, + "end": 1900, + "value": " " + }, + { + "type": "operator", + "start": 1900, + "end": 1901, + "value": "%" + }, + { + "type": "brace", + "start": 1901, + "end": 1902, + "value": ")" + }, + { + "type": "whitespace", + "start": 1902, + "end": 1905, + "value": "\n " + }, + { + "type": "operator", + "start": 1905, + "end": 1907, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1907, + "end": 1908, + "value": " " + }, + { + "type": "word", + "start": 1908, + "end": 1912, + "value": "line" + }, + { + "type": "brace", + "start": 1912, + "end": 1913, + "value": "(" + }, + { + "type": "brace", + "start": 1913, + "end": 1914, + "value": "[" + }, + { + "type": "whitespace", + "start": 1914, + "end": 1922, + "value": "\n " + }, + { + "type": "operator", + "start": 1922, + "end": 1923, + "value": "-" + }, + { + "type": "number", + "start": 1923, + "end": 1941, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 1941, + "end": 1942, + "value": "," + }, + { + "type": "whitespace", + "start": 1942, + "end": 1950, + "value": "\n " + }, + { + "type": "operator", + "start": 1950, + "end": 1951, + "value": "-" + }, + { + "type": "number", + "start": 1951, + "end": 1969, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 1969, + "end": 1975, + "value": "\n " + }, + { + "type": "brace", + "start": 1975, + "end": 1976, + "value": "]" + }, + { + "type": "comma", + "start": 1976, + "end": 1977, + "value": "," + }, + { + "type": "whitespace", + "start": 1977, + "end": 1978, + "value": " " + }, + { + "type": "operator", + "start": 1978, + "end": 1979, + "value": "%" + }, + { + "type": "brace", + "start": 1979, + "end": 1980, + "value": ")" + }, + { + "type": "whitespace", + "start": 1980, + "end": 1983, + "value": "\n " + }, + { + "type": "operator", + "start": 1983, + "end": 1985, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1985, + "end": 1986, + "value": " " + }, + { + "type": "word", + "start": 1986, + "end": 1990, + "value": "line" + }, + { + "type": "brace", + "start": 1990, + "end": 1991, + "value": "(" + }, + { + "type": "brace", + "start": 1991, + "end": 1992, + "value": "[" + }, + { + "type": "whitespace", + "start": 1992, + "end": 2000, + "value": "\n " + }, + { + "type": "number", + "start": 2000, + "end": 2020, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 2020, + "end": 2021, + "value": "," + }, + { + "type": "whitespace", + "start": 2021, + "end": 2029, + "value": "\n " + }, + { + "type": "operator", + "start": 2029, + "end": 2030, + "value": "-" + }, + { + "type": "number", + "start": 2030, + "end": 2049, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 2049, + "end": 2055, + "value": "\n " + }, + { + "type": "brace", + "start": 2055, + "end": 2056, + "value": "]" + }, + { + "type": "comma", + "start": 2056, + "end": 2057, + "value": "," + }, + { + "type": "whitespace", + "start": 2057, + "end": 2058, + "value": " " + }, + { + "type": "operator", + "start": 2058, + "end": 2059, + "value": "%" + }, + { + "type": "brace", + "start": 2059, + "end": 2060, + "value": ")" + }, + { + "type": "whitespace", + "start": 2060, + "end": 2063, + "value": "\n " + }, + { + "type": "operator", + "start": 2063, + "end": 2065, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2065, + "end": 2066, + "value": " " + }, + { + "type": "word", + "start": 2066, + "end": 2070, + "value": "line" + }, + { + "type": "brace", + "start": 2070, + "end": 2071, + "value": "(" + }, + { + "type": "brace", + "start": 2071, + "end": 2072, + "value": "[" + }, + { + "type": "whitespace", + "start": 2072, + "end": 2080, + "value": "\n " + }, + { + "type": "number", + "start": 2080, + "end": 2099, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 2099, + "end": 2100, + "value": "," + }, + { + "type": "whitespace", + "start": 2100, + "end": 2108, + "value": "\n " + }, + { + "type": "operator", + "start": 2108, + "end": 2109, + "value": "-" + }, + { + "type": "number", + "start": 2109, + "end": 2128, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 2128, + "end": 2134, + "value": "\n " + }, + { + "type": "brace", + "start": 2134, + "end": 2135, + "value": "]" + }, + { + "type": "comma", + "start": 2135, + "end": 2136, + "value": "," + }, + { + "type": "whitespace", + "start": 2136, + "end": 2137, + "value": " " + }, + { + "type": "operator", + "start": 2137, + "end": 2138, + "value": "%" + }, + { + "type": "brace", + "start": 2138, + "end": 2139, + "value": ")" + }, + { + "type": "whitespace", + "start": 2139, + "end": 2142, + "value": "\n " + }, + { + "type": "operator", + "start": 2142, + "end": 2144, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2144, + "end": 2145, + "value": " " + }, + { + "type": "word", + "start": 2145, + "end": 2149, + "value": "line" + }, + { + "type": "brace", + "start": 2149, + "end": 2150, + "value": "(" + }, + { + "type": "brace", + "start": 2150, + "end": 2151, + "value": "[" + }, + { + "type": "whitespace", + "start": 2151, + "end": 2159, + "value": "\n " + }, + { + "type": "number", + "start": 2159, + "end": 2177, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 2177, + "end": 2178, + "value": "," + }, + { + "type": "whitespace", + "start": 2178, + "end": 2186, + "value": "\n " + }, + { + "type": "operator", + "start": 2186, + "end": 2187, + "value": "-" + }, + { + "type": "number", + "start": 2187, + "end": 2206, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 2206, + "end": 2212, + "value": "\n " + }, + { + "type": "brace", + "start": 2212, + "end": 2213, + "value": "]" + }, + { + "type": "comma", + "start": 2213, + "end": 2214, + "value": "," + }, + { + "type": "whitespace", + "start": 2214, + "end": 2215, + "value": " " + }, + { + "type": "operator", + "start": 2215, + "end": 2216, + "value": "%" + }, + { + "type": "brace", + "start": 2216, + "end": 2217, + "value": ")" + }, + { + "type": "whitespace", + "start": 2217, + "end": 2220, + "value": "\n " + }, + { + "type": "operator", + "start": 2220, + "end": 2222, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2222, + "end": 2223, + "value": " " + }, + { + "type": "word", + "start": 2223, + "end": 2227, + "value": "line" + }, + { + "type": "brace", + "start": 2227, + "end": 2228, + "value": "(" + }, + { + "type": "brace", + "start": 2228, + "end": 2229, + "value": "[" + }, + { + "type": "whitespace", + "start": 2229, + "end": 2237, + "value": "\n " + }, + { + "type": "operator", + "start": 2237, + "end": 2238, + "value": "-" + }, + { + "type": "number", + "start": 2238, + "end": 2256, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 2256, + "end": 2257, + "value": "," + }, + { + "type": "whitespace", + "start": 2257, + "end": 2265, + "value": "\n " + }, + { + "type": "operator", + "start": 2265, + "end": 2266, + "value": "-" + }, + { + "type": "number", + "start": 2266, + "end": 2284, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 2284, + "end": 2290, + "value": "\n " + }, + { + "type": "brace", + "start": 2290, + "end": 2291, + "value": "]" + }, + { + "type": "comma", + "start": 2291, + "end": 2292, + "value": "," + }, + { + "type": "whitespace", + "start": 2292, + "end": 2293, + "value": " " + }, + { + "type": "operator", + "start": 2293, + "end": 2294, + "value": "%" + }, + { + "type": "brace", + "start": 2294, + "end": 2295, + "value": ")" + }, + { + "type": "whitespace", + "start": 2295, + "end": 2298, + "value": "\n " + }, + { + "type": "operator", + "start": 2298, + "end": 2300, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2300, + "end": 2301, + "value": " " + }, + { + "type": "word", + "start": 2301, + "end": 2305, + "value": "line" + }, + { + "type": "brace", + "start": 2305, + "end": 2306, + "value": "(" + }, + { + "type": "brace", + "start": 2306, + "end": 2307, + "value": "[" + }, + { + "type": "number", + "start": 2307, + "end": 2325, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 2325, + "end": 2326, + "value": "," + }, + { + "type": "whitespace", + "start": 2326, + "end": 2327, + "value": " " + }, + { + "type": "number", + "start": 2327, + "end": 2345, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 2345, + "end": 2346, + "value": "]" + }, + { + "type": "comma", + "start": 2346, + "end": 2347, + "value": "," + }, + { + "type": "whitespace", + "start": 2347, + "end": 2348, + "value": " " + }, + { + "type": "operator", + "start": 2348, + "end": 2349, + "value": "%" + }, + { + "type": "brace", + "start": 2349, + "end": 2350, + "value": ")" + }, + { + "type": "whitespace", + "start": 2350, + "end": 2353, + "value": "\n " + }, + { + "type": "operator", + "start": 2353, + "end": 2355, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2355, + "end": 2356, + "value": " " + }, + { + "type": "word", + "start": 2356, + "end": 2360, + "value": "line" + }, + { + "type": "brace", + "start": 2360, + "end": 2361, + "value": "(" + }, + { + "type": "brace", + "start": 2361, + "end": 2362, + "value": "[" + }, + { + "type": "whitespace", + "start": 2362, + "end": 2370, + "value": "\n " + }, + { + "type": "number", + "start": 2370, + "end": 2388, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 2388, + "end": 2389, + "value": "," + }, + { + "type": "whitespace", + "start": 2389, + "end": 2397, + "value": "\n " + }, + { + "type": "number", + "start": 2397, + "end": 2416, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 2416, + "end": 2422, + "value": "\n " + }, + { + "type": "brace", + "start": 2422, + "end": 2423, + "value": "]" + }, + { + "type": "comma", + "start": 2423, + "end": 2424, + "value": "," + }, + { + "type": "whitespace", + "start": 2424, + "end": 2425, + "value": " " + }, + { + "type": "operator", + "start": 2425, + "end": 2426, + "value": "%" + }, + { + "type": "brace", + "start": 2426, + "end": 2427, + "value": ")" + }, + { + "type": "whitespace", + "start": 2427, + "end": 2430, + "value": "\n " + }, + { + "type": "operator", + "start": 2430, + "end": 2432, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2432, + "end": 2433, + "value": " " + }, + { + "type": "word", + "start": 2433, + "end": 2437, + "value": "line" + }, + { + "type": "brace", + "start": 2437, + "end": 2438, + "value": "(" + }, + { + "type": "brace", + "start": 2438, + "end": 2439, + "value": "[" + }, + { + "type": "whitespace", + "start": 2439, + "end": 2447, + "value": "\n " + }, + { + "type": "operator", + "start": 2447, + "end": 2448, + "value": "-" + }, + { + "type": "number", + "start": 2448, + "end": 2467, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 2467, + "end": 2468, + "value": "," + }, + { + "type": "whitespace", + "start": 2468, + "end": 2476, + "value": "\n " + }, + { + "type": "number", + "start": 2476, + "end": 2494, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 2494, + "end": 2500, + "value": "\n " + }, + { + "type": "brace", + "start": 2500, + "end": 2501, + "value": "]" + }, + { + "type": "comma", + "start": 2501, + "end": 2502, + "value": "," + }, + { + "type": "whitespace", + "start": 2502, + "end": 2503, + "value": " " + }, + { + "type": "operator", + "start": 2503, + "end": 2504, + "value": "%" + }, + { + "type": "brace", + "start": 2504, + "end": 2505, + "value": ")" + }, + { + "type": "whitespace", + "start": 2505, + "end": 2508, + "value": "\n " + }, + { + "type": "operator", + "start": 2508, + "end": 2510, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2510, + "end": 2511, + "value": " " + }, + { + "type": "word", + "start": 2511, + "end": 2515, + "value": "line" + }, + { + "type": "brace", + "start": 2515, + "end": 2516, + "value": "(" + }, + { + "type": "brace", + "start": 2516, + "end": 2517, + "value": "[" + }, + { + "type": "whitespace", + "start": 2517, + "end": 2525, + "value": "\n " + }, + { + "type": "operator", + "start": 2525, + "end": 2526, + "value": "-" + }, + { + "type": "number", + "start": 2526, + "end": 2545, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 2545, + "end": 2546, + "value": "," + }, + { + "type": "whitespace", + "start": 2546, + "end": 2554, + "value": "\n " + }, + { + "type": "operator", + "start": 2554, + "end": 2555, + "value": "-" + }, + { + "type": "number", + "start": 2555, + "end": 2574, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 2574, + "end": 2580, + "value": "\n " + }, + { + "type": "brace", + "start": 2580, + "end": 2581, + "value": "]" + }, + { + "type": "comma", + "start": 2581, + "end": 2582, + "value": "," + }, + { + "type": "whitespace", + "start": 2582, + "end": 2583, + "value": " " + }, + { + "type": "operator", + "start": 2583, + "end": 2584, + "value": "%" + }, + { + "type": "brace", + "start": 2584, + "end": 2585, + "value": ")" + }, + { + "type": "whitespace", + "start": 2585, + "end": 2588, + "value": "\n " + }, + { + "type": "operator", + "start": 2588, + "end": 2590, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2590, + "end": 2591, + "value": " " + }, + { + "type": "word", + "start": 2591, + "end": 2595, + "value": "line" + }, + { + "type": "brace", + "start": 2595, + "end": 2596, + "value": "(" + }, + { + "type": "brace", + "start": 2596, + "end": 2597, + "value": "[" + }, + { + "type": "whitespace", + "start": 2597, + "end": 2605, + "value": "\n " + }, + { + "type": "number", + "start": 2605, + "end": 2624, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 2624, + "end": 2625, + "value": "," + }, + { + "type": "whitespace", + "start": 2625, + "end": 2633, + "value": "\n " + }, + { + "type": "operator", + "start": 2633, + "end": 2634, + "value": "-" + }, + { + "type": "number", + "start": 2634, + "end": 2652, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 2652, + "end": 2658, + "value": "\n " + }, + { + "type": "brace", + "start": 2658, + "end": 2659, + "value": "]" + }, + { + "type": "comma", + "start": 2659, + "end": 2660, + "value": "," + }, + { + "type": "whitespace", + "start": 2660, + "end": 2661, + "value": " " + }, + { + "type": "operator", + "start": 2661, + "end": 2662, + "value": "%" + }, + { + "type": "brace", + "start": 2662, + "end": 2663, + "value": ")" + }, + { + "type": "whitespace", + "start": 2663, + "end": 2666, + "value": "\n " + }, + { + "type": "operator", + "start": 2666, + "end": 2668, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2668, + "end": 2669, + "value": " " + }, + { + "type": "word", + "start": 2669, + "end": 2673, + "value": "line" + }, + { + "type": "brace", + "start": 2673, + "end": 2674, + "value": "(" + }, + { + "type": "brace", + "start": 2674, + "end": 2675, + "value": "[" + }, + { + "type": "whitespace", + "start": 2675, + "end": 2683, + "value": "\n " + }, + { + "type": "operator", + "start": 2683, + "end": 2684, + "value": "-" + }, + { + "type": "number", + "start": 2684, + "end": 2702, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 2702, + "end": 2703, + "value": "," + }, + { + "type": "whitespace", + "start": 2703, + "end": 2711, + "value": "\n " + }, + { + "type": "number", + "start": 2711, + "end": 2730, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 2730, + "end": 2736, + "value": "\n " + }, + { + "type": "brace", + "start": 2736, + "end": 2737, + "value": "]" + }, + { + "type": "comma", + "start": 2737, + "end": 2738, + "value": "," + }, + { + "type": "whitespace", + "start": 2738, + "end": 2739, + "value": " " + }, + { + "type": "operator", + "start": 2739, + "end": 2740, + "value": "%" + }, + { + "type": "brace", + "start": 2740, + "end": 2741, + "value": ")" + }, + { + "type": "whitespace", + "start": 2741, + "end": 2744, + "value": "\n " + }, + { + "type": "operator", + "start": 2744, + "end": 2746, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2746, + "end": 2747, + "value": " " + }, + { + "type": "word", + "start": 2747, + "end": 2751, + "value": "line" + }, + { + "type": "brace", + "start": 2751, + "end": 2752, + "value": "(" + }, + { + "type": "brace", + "start": 2752, + "end": 2753, + "value": "[" + }, + { + "type": "number", + "start": 2753, + "end": 2771, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 2771, + "end": 2772, + "value": "," + }, + { + "type": "whitespace", + "start": 2772, + "end": 2773, + "value": " " + }, + { + "type": "number", + "start": 2773, + "end": 2791, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 2791, + "end": 2792, + "value": "]" + }, + { + "type": "comma", + "start": 2792, + "end": 2793, + "value": "," + }, + { + "type": "whitespace", + "start": 2793, + "end": 2794, + "value": " " + }, + { + "type": "operator", + "start": 2794, + "end": 2795, + "value": "%" + }, + { + "type": "brace", + "start": 2795, + "end": 2796, + "value": ")" + }, + { + "type": "whitespace", + "start": 2796, + "end": 2799, + "value": "\n " + }, + { + "type": "operator", + "start": 2799, + "end": 2801, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2801, + "end": 2802, + "value": " " + }, + { + "type": "word", + "start": 2802, + "end": 2806, + "value": "line" + }, + { + "type": "brace", + "start": 2806, + "end": 2807, + "value": "(" + }, + { + "type": "brace", + "start": 2807, + "end": 2808, + "value": "[" + }, + { + "type": "whitespace", + "start": 2808, + "end": 2816, + "value": "\n " + }, + { + "type": "operator", + "start": 2816, + "end": 2817, + "value": "-" + }, + { + "type": "number", + "start": 2817, + "end": 2835, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 2835, + "end": 2836, + "value": "," + }, + { + "type": "whitespace", + "start": 2836, + "end": 2844, + "value": "\n " + }, + { + "type": "operator", + "start": 2844, + "end": 2845, + "value": "-" + }, + { + "type": "number", + "start": 2845, + "end": 2864, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 2864, + "end": 2870, + "value": "\n " + }, + { + "type": "brace", + "start": 2870, + "end": 2871, + "value": "]" + }, + { + "type": "comma", + "start": 2871, + "end": 2872, + "value": "," + }, + { + "type": "whitespace", + "start": 2872, + "end": 2873, + "value": " " + }, + { + "type": "operator", + "start": 2873, + "end": 2874, + "value": "%" + }, + { + "type": "brace", + "start": 2874, + "end": 2875, + "value": ")" + }, + { + "type": "whitespace", + "start": 2875, + "end": 2878, + "value": "\n " + }, + { + "type": "operator", + "start": 2878, + "end": 2880, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2880, + "end": 2881, + "value": " " + }, + { + "type": "word", + "start": 2881, + "end": 2885, + "value": "line" + }, + { + "type": "brace", + "start": 2885, + "end": 2886, + "value": "(" + }, + { + "type": "brace", + "start": 2886, + "end": 2887, + "value": "[" + }, + { + "type": "whitespace", + "start": 2887, + "end": 2895, + "value": "\n " + }, + { + "type": "number", + "start": 2895, + "end": 2913, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 2913, + "end": 2914, + "value": "," + }, + { + "type": "whitespace", + "start": 2914, + "end": 2922, + "value": "\n " + }, + { + "type": "operator", + "start": 2922, + "end": 2923, + "value": "-" + }, + { + "type": "number", + "start": 2923, + "end": 2941, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 2941, + "end": 2947, + "value": "\n " + }, + { + "type": "brace", + "start": 2947, + "end": 2948, + "value": "]" + }, + { + "type": "comma", + "start": 2948, + "end": 2949, + "value": "," + }, + { + "type": "whitespace", + "start": 2949, + "end": 2950, + "value": " " + }, + { + "type": "operator", + "start": 2950, + "end": 2951, + "value": "%" + }, + { + "type": "brace", + "start": 2951, + "end": 2952, + "value": ")" + }, + { + "type": "whitespace", + "start": 2952, + "end": 2955, + "value": "\n " + }, + { + "type": "operator", + "start": 2955, + "end": 2957, + "value": "|>" + }, + { + "type": "whitespace", + "start": 2957, + "end": 2958, + "value": " " + }, + { + "type": "word", + "start": 2958, + "end": 2962, + "value": "line" + }, + { + "type": "brace", + "start": 2962, + "end": 2963, + "value": "(" + }, + { + "type": "brace", + "start": 2963, + "end": 2964, + "value": "[" + }, + { + "type": "whitespace", + "start": 2964, + "end": 2972, + "value": "\n " + }, + { + "type": "number", + "start": 2972, + "end": 2990, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 2990, + "end": 2991, + "value": "," + }, + { + "type": "whitespace", + "start": 2991, + "end": 2999, + "value": "\n " + }, + { + "type": "operator", + "start": 2999, + "end": 3000, + "value": "-" + }, + { + "type": "number", + "start": 3000, + "end": 3018, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 3018, + "end": 3024, + "value": "\n " + }, + { + "type": "brace", + "start": 3024, + "end": 3025, + "value": "]" + }, + { + "type": "comma", + "start": 3025, + "end": 3026, + "value": "," + }, + { + "type": "whitespace", + "start": 3026, + "end": 3027, + "value": " " + }, + { + "type": "operator", + "start": 3027, + "end": 3028, + "value": "%" + }, + { + "type": "brace", + "start": 3028, + "end": 3029, + "value": ")" + }, + { + "type": "whitespace", + "start": 3029, + "end": 3032, + "value": "\n " + }, + { + "type": "operator", + "start": 3032, + "end": 3034, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3034, + "end": 3035, + "value": " " + }, + { + "type": "word", + "start": 3035, + "end": 3039, + "value": "line" + }, + { + "type": "brace", + "start": 3039, + "end": 3040, + "value": "(" + }, + { + "type": "brace", + "start": 3040, + "end": 3041, + "value": "[" + }, + { + "type": "number", + "start": 3041, + "end": 3059, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 3059, + "end": 3060, + "value": "," + }, + { + "type": "whitespace", + "start": 3060, + "end": 3061, + "value": " " + }, + { + "type": "number", + "start": 3061, + "end": 3079, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 3079, + "end": 3080, + "value": "]" + }, + { + "type": "comma", + "start": 3080, + "end": 3081, + "value": "," + }, + { + "type": "whitespace", + "start": 3081, + "end": 3082, + "value": " " + }, + { + "type": "operator", + "start": 3082, + "end": 3083, + "value": "%" + }, + { + "type": "brace", + "start": 3083, + "end": 3084, + "value": ")" + }, + { + "type": "whitespace", + "start": 3084, + "end": 3087, + "value": "\n " + }, + { + "type": "operator", + "start": 3087, + "end": 3089, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3089, + "end": 3090, + "value": " " + }, + { + "type": "word", + "start": 3090, + "end": 3094, + "value": "line" + }, + { + "type": "brace", + "start": 3094, + "end": 3095, + "value": "(" + }, + { + "type": "brace", + "start": 3095, + "end": 3096, + "value": "[" + }, + { + "type": "whitespace", + "start": 3096, + "end": 3104, + "value": "\n " + }, + { + "type": "operator", + "start": 3104, + "end": 3105, + "value": "-" + }, + { + "type": "number", + "start": 3105, + "end": 3123, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 3123, + "end": 3124, + "value": "," + }, + { + "type": "whitespace", + "start": 3124, + "end": 3132, + "value": "\n " + }, + { + "type": "number", + "start": 3132, + "end": 3150, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 3150, + "end": 3156, + "value": "\n " + }, + { + "type": "brace", + "start": 3156, + "end": 3157, + "value": "]" + }, + { + "type": "comma", + "start": 3157, + "end": 3158, + "value": "," + }, + { + "type": "whitespace", + "start": 3158, + "end": 3159, + "value": " " + }, + { + "type": "operator", + "start": 3159, + "end": 3160, + "value": "%" + }, + { + "type": "brace", + "start": 3160, + "end": 3161, + "value": ")" + }, + { + "type": "whitespace", + "start": 3161, + "end": 3164, + "value": "\n " + }, + { + "type": "operator", + "start": 3164, + "end": 3166, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3166, + "end": 3167, + "value": " " + }, + { + "type": "word", + "start": 3167, + "end": 3171, + "value": "line" + }, + { + "type": "brace", + "start": 3171, + "end": 3172, + "value": "(" + }, + { + "type": "brace", + "start": 3172, + "end": 3173, + "value": "[" + }, + { + "type": "number", + "start": 3173, + "end": 3191, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 3191, + "end": 3192, + "value": "," + }, + { + "type": "whitespace", + "start": 3192, + "end": 3193, + "value": " " + }, + { + "type": "number", + "start": 3193, + "end": 3211, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 3211, + "end": 3212, + "value": "]" + }, + { + "type": "comma", + "start": 3212, + "end": 3213, + "value": "," + }, + { + "type": "whitespace", + "start": 3213, + "end": 3214, + "value": " " + }, + { + "type": "operator", + "start": 3214, + "end": 3215, + "value": "%" + }, + { + "type": "brace", + "start": 3215, + "end": 3216, + "value": ")" + }, + { + "type": "whitespace", + "start": 3216, + "end": 3219, + "value": "\n " + }, + { + "type": "operator", + "start": 3219, + "end": 3221, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3221, + "end": 3222, + "value": " " + }, + { + "type": "word", + "start": 3222, + "end": 3226, + "value": "line" + }, + { + "type": "brace", + "start": 3226, + "end": 3227, + "value": "(" + }, + { + "type": "brace", + "start": 3227, + "end": 3228, + "value": "[" + }, + { + "type": "whitespace", + "start": 3228, + "end": 3236, + "value": "\n " + }, + { + "type": "number", + "start": 3236, + "end": 3254, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 3254, + "end": 3255, + "value": "," + }, + { + "type": "whitespace", + "start": 3255, + "end": 3263, + "value": "\n " + }, + { + "type": "number", + "start": 3263, + "end": 3282, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 3282, + "end": 3288, + "value": "\n " + }, + { + "type": "brace", + "start": 3288, + "end": 3289, + "value": "]" + }, + { + "type": "comma", + "start": 3289, + "end": 3290, + "value": "," + }, + { + "type": "whitespace", + "start": 3290, + "end": 3291, + "value": " " + }, + { + "type": "operator", + "start": 3291, + "end": 3292, + "value": "%" + }, + { + "type": "brace", + "start": 3292, + "end": 3293, + "value": ")" + }, + { + "type": "whitespace", + "start": 3293, + "end": 3296, + "value": "\n " + }, + { + "type": "operator", + "start": 3296, + "end": 3298, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3298, + "end": 3299, + "value": " " + }, + { + "type": "word", + "start": 3299, + "end": 3303, + "value": "line" + }, + { + "type": "brace", + "start": 3303, + "end": 3304, + "value": "(" + }, + { + "type": "brace", + "start": 3304, + "end": 3305, + "value": "[" + }, + { + "type": "whitespace", + "start": 3305, + "end": 3313, + "value": "\n " + }, + { + "type": "operator", + "start": 3313, + "end": 3314, + "value": "-" + }, + { + "type": "number", + "start": 3314, + "end": 3332, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 3332, + "end": 3333, + "value": "," + }, + { + "type": "whitespace", + "start": 3333, + "end": 3341, + "value": "\n " + }, + { + "type": "operator", + "start": 3341, + "end": 3342, + "value": "-" + }, + { + "type": "number", + "start": 3342, + "end": 3359, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 3359, + "end": 3365, + "value": "\n " + }, + { + "type": "brace", + "start": 3365, + "end": 3366, + "value": "]" + }, + { + "type": "comma", + "start": 3366, + "end": 3367, + "value": "," + }, + { + "type": "whitespace", + "start": 3367, + "end": 3368, + "value": " " + }, + { + "type": "operator", + "start": 3368, + "end": 3369, + "value": "%" + }, + { + "type": "brace", + "start": 3369, + "end": 3370, + "value": ")" + }, + { + "type": "whitespace", + "start": 3370, + "end": 3373, + "value": "\n " + }, + { + "type": "operator", + "start": 3373, + "end": 3375, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3375, + "end": 3376, + "value": " " + }, + { + "type": "word", + "start": 3376, + "end": 3380, + "value": "line" + }, + { + "type": "brace", + "start": 3380, + "end": 3381, + "value": "(" + }, + { + "type": "brace", + "start": 3381, + "end": 3382, + "value": "[" + }, + { + "type": "whitespace", + "start": 3382, + "end": 3390, + "value": "\n " + }, + { + "type": "number", + "start": 3390, + "end": 3408, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 3408, + "end": 3409, + "value": "," + }, + { + "type": "whitespace", + "start": 3409, + "end": 3417, + "value": "\n " + }, + { + "type": "operator", + "start": 3417, + "end": 3418, + "value": "-" + }, + { + "type": "number", + "start": 3418, + "end": 3437, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 3437, + "end": 3443, + "value": "\n " + }, + { + "type": "brace", + "start": 3443, + "end": 3444, + "value": "]" + }, + { + "type": "comma", + "start": 3444, + "end": 3445, + "value": "," + }, + { + "type": "whitespace", + "start": 3445, + "end": 3446, + "value": " " + }, + { + "type": "operator", + "start": 3446, + "end": 3447, + "value": "%" + }, + { + "type": "brace", + "start": 3447, + "end": 3448, + "value": ")" + }, + { + "type": "whitespace", + "start": 3448, + "end": 3451, + "value": "\n " + }, + { + "type": "operator", + "start": 3451, + "end": 3453, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3453, + "end": 3454, + "value": " " + }, + { + "type": "word", + "start": 3454, + "end": 3458, + "value": "line" + }, + { + "type": "brace", + "start": 3458, + "end": 3459, + "value": "(" + }, + { + "type": "brace", + "start": 3459, + "end": 3460, + "value": "[" + }, + { + "type": "whitespace", + "start": 3460, + "end": 3468, + "value": "\n " + }, + { + "type": "operator", + "start": 3468, + "end": 3469, + "value": "-" + }, + { + "type": "number", + "start": 3469, + "end": 3488, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 3488, + "end": 3489, + "value": "," + }, + { + "type": "whitespace", + "start": 3489, + "end": 3497, + "value": "\n " + }, + { + "type": "operator", + "start": 3497, + "end": 3498, + "value": "-" + }, + { + "type": "number", + "start": 3498, + "end": 3517, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 3517, + "end": 3523, + "value": "\n " + }, + { + "type": "brace", + "start": 3523, + "end": 3524, + "value": "]" + }, + { + "type": "comma", + "start": 3524, + "end": 3525, + "value": "," + }, + { + "type": "whitespace", + "start": 3525, + "end": 3526, + "value": " " + }, + { + "type": "operator", + "start": 3526, + "end": 3527, + "value": "%" + }, + { + "type": "brace", + "start": 3527, + "end": 3528, + "value": ")" + }, + { + "type": "whitespace", + "start": 3528, + "end": 3531, + "value": "\n " + }, + { + "type": "operator", + "start": 3531, + "end": 3533, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3533, + "end": 3534, + "value": " " + }, + { + "type": "word", + "start": 3534, + "end": 3538, + "value": "line" + }, + { + "type": "brace", + "start": 3538, + "end": 3539, + "value": "(" + }, + { + "type": "brace", + "start": 3539, + "end": 3540, + "value": "[" + }, + { + "type": "whitespace", + "start": 3540, + "end": 3548, + "value": "\n " + }, + { + "type": "operator", + "start": 3548, + "end": 3549, + "value": "-" + }, + { + "type": "number", + "start": 3549, + "end": 3567, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 3567, + "end": 3568, + "value": "," + }, + { + "type": "whitespace", + "start": 3568, + "end": 3576, + "value": "\n " + }, + { + "type": "operator", + "start": 3576, + "end": 3577, + "value": "-" + }, + { + "type": "number", + "start": 3577, + "end": 3596, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 3596, + "end": 3602, + "value": "\n " + }, + { + "type": "brace", + "start": 3602, + "end": 3603, + "value": "]" + }, + { + "type": "comma", + "start": 3603, + "end": 3604, + "value": "," + }, + { + "type": "whitespace", + "start": 3604, + "end": 3605, + "value": " " + }, + { + "type": "operator", + "start": 3605, + "end": 3606, + "value": "%" + }, + { + "type": "brace", + "start": 3606, + "end": 3607, + "value": ")" + }, + { + "type": "whitespace", + "start": 3607, + "end": 3610, + "value": "\n " + }, + { + "type": "operator", + "start": 3610, + "end": 3612, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3612, + "end": 3613, + "value": " " + }, + { + "type": "word", + "start": 3613, + "end": 3617, + "value": "line" + }, + { + "type": "brace", + "start": 3617, + "end": 3618, + "value": "(" + }, + { + "type": "brace", + "start": 3618, + "end": 3619, + "value": "[" + }, + { + "type": "whitespace", + "start": 3619, + "end": 3627, + "value": "\n " + }, + { + "type": "operator", + "start": 3627, + "end": 3628, + "value": "-" + }, + { + "type": "number", + "start": 3628, + "end": 3646, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 3646, + "end": 3647, + "value": "," + }, + { + "type": "whitespace", + "start": 3647, + "end": 3655, + "value": "\n " + }, + { + "type": "number", + "start": 3655, + "end": 3674, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 3674, + "end": 3680, + "value": "\n " + }, + { + "type": "brace", + "start": 3680, + "end": 3681, + "value": "]" + }, + { + "type": "comma", + "start": 3681, + "end": 3682, + "value": "," + }, + { + "type": "whitespace", + "start": 3682, + "end": 3683, + "value": " " + }, + { + "type": "operator", + "start": 3683, + "end": 3684, + "value": "%" + }, + { + "type": "brace", + "start": 3684, + "end": 3685, + "value": ")" + }, + { + "type": "whitespace", + "start": 3685, + "end": 3688, + "value": "\n " + }, + { + "type": "operator", + "start": 3688, + "end": 3690, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3690, + "end": 3691, + "value": " " + }, + { + "type": "word", + "start": 3691, + "end": 3695, + "value": "line" + }, + { + "type": "brace", + "start": 3695, + "end": 3696, + "value": "(" + }, + { + "type": "brace", + "start": 3696, + "end": 3697, + "value": "[" + }, + { + "type": "whitespace", + "start": 3697, + "end": 3705, + "value": "\n " + }, + { + "type": "operator", + "start": 3705, + "end": 3706, + "value": "-" + }, + { + "type": "number", + "start": 3706, + "end": 3724, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 3724, + "end": 3725, + "value": "," + }, + { + "type": "whitespace", + "start": 3725, + "end": 3733, + "value": "\n " + }, + { + "type": "operator", + "start": 3733, + "end": 3734, + "value": "-" + }, + { + "type": "number", + "start": 3734, + "end": 3753, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 3753, + "end": 3759, + "value": "\n " + }, + { + "type": "brace", + "start": 3759, + "end": 3760, + "value": "]" + }, + { + "type": "comma", + "start": 3760, + "end": 3761, + "value": "," + }, + { + "type": "whitespace", + "start": 3761, + "end": 3762, + "value": " " + }, + { + "type": "operator", + "start": 3762, + "end": 3763, + "value": "%" + }, + { + "type": "brace", + "start": 3763, + "end": 3764, + "value": ")" + }, + { + "type": "whitespace", + "start": 3764, + "end": 3767, + "value": "\n " + }, + { + "type": "operator", + "start": 3767, + "end": 3769, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3769, + "end": 3770, + "value": " " + }, + { + "type": "word", + "start": 3770, + "end": 3774, + "value": "line" + }, + { + "type": "brace", + "start": 3774, + "end": 3775, + "value": "(" + }, + { + "type": "brace", + "start": 3775, + "end": 3776, + "value": "[" + }, + { + "type": "whitespace", + "start": 3776, + "end": 3784, + "value": "\n " + }, + { + "type": "number", + "start": 3784, + "end": 3802, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 3802, + "end": 3803, + "value": "," + }, + { + "type": "whitespace", + "start": 3803, + "end": 3811, + "value": "\n " + }, + { + "type": "operator", + "start": 3811, + "end": 3812, + "value": "-" + }, + { + "type": "number", + "start": 3812, + "end": 3830, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 3830, + "end": 3836, + "value": "\n " + }, + { + "type": "brace", + "start": 3836, + "end": 3837, + "value": "]" + }, + { + "type": "comma", + "start": 3837, + "end": 3838, + "value": "," + }, + { + "type": "whitespace", + "start": 3838, + "end": 3839, + "value": " " + }, + { + "type": "operator", + "start": 3839, + "end": 3840, + "value": "%" + }, + { + "type": "brace", + "start": 3840, + "end": 3841, + "value": ")" + }, + { + "type": "whitespace", + "start": 3841, + "end": 3844, + "value": "\n " + }, + { + "type": "operator", + "start": 3844, + "end": 3846, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3846, + "end": 3847, + "value": " " + }, + { + "type": "word", + "start": 3847, + "end": 3851, + "value": "line" + }, + { + "type": "brace", + "start": 3851, + "end": 3852, + "value": "(" + }, + { + "type": "brace", + "start": 3852, + "end": 3853, + "value": "[" + }, + { + "type": "whitespace", + "start": 3853, + "end": 3861, + "value": "\n " + }, + { + "type": "operator", + "start": 3861, + "end": 3862, + "value": "-" + }, + { + "type": "number", + "start": 3862, + "end": 3880, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 3880, + "end": 3881, + "value": "," + }, + { + "type": "whitespace", + "start": 3881, + "end": 3889, + "value": "\n " + }, + { + "type": "number", + "start": 3889, + "end": 3907, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 3907, + "end": 3913, + "value": "\n " + }, + { + "type": "brace", + "start": 3913, + "end": 3914, + "value": "]" + }, + { + "type": "comma", + "start": 3914, + "end": 3915, + "value": "," + }, + { + "type": "whitespace", + "start": 3915, + "end": 3916, + "value": " " + }, + { + "type": "operator", + "start": 3916, + "end": 3917, + "value": "%" + }, + { + "type": "brace", + "start": 3917, + "end": 3918, + "value": ")" + }, + { + "type": "whitespace", + "start": 3918, + "end": 3921, + "value": "\n " + }, + { + "type": "operator", + "start": 3921, + "end": 3923, + "value": "|>" + }, + { + "type": "whitespace", + "start": 3923, + "end": 3924, + "value": " " + }, + { + "type": "word", + "start": 3924, + "end": 3928, + "value": "line" + }, + { + "type": "brace", + "start": 3928, + "end": 3929, + "value": "(" + }, + { + "type": "brace", + "start": 3929, + "end": 3930, + "value": "[" + }, + { + "type": "whitespace", + "start": 3930, + "end": 3938, + "value": "\n " + }, + { + "type": "operator", + "start": 3938, + "end": 3939, + "value": "-" + }, + { + "type": "number", + "start": 3939, + "end": 3957, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 3957, + "end": 3958, + "value": "," + }, + { + "type": "whitespace", + "start": 3958, + "end": 3966, + "value": "\n " + }, + { + "type": "number", + "start": 3966, + "end": 3984, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 3984, + "end": 3990, + "value": "\n " + }, + { + "type": "brace", + "start": 3990, + "end": 3991, + "value": "]" + }, + { + "type": "comma", + "start": 3991, + "end": 3992, + "value": "," + }, + { + "type": "whitespace", + "start": 3992, + "end": 3993, + "value": " " + }, + { + "type": "operator", + "start": 3993, + "end": 3994, + "value": "%" + }, + { + "type": "brace", + "start": 3994, + "end": 3995, + "value": ")" + }, + { + "type": "whitespace", + "start": 3995, + "end": 3998, + "value": "\n " + }, + { + "type": "operator", + "start": 3998, + "end": 4000, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4000, + "end": 4001, + "value": " " + }, + { + "type": "word", + "start": 4001, + "end": 4005, + "value": "line" + }, + { + "type": "brace", + "start": 4005, + "end": 4006, + "value": "(" + }, + { + "type": "brace", + "start": 4006, + "end": 4007, + "value": "[" + }, + { + "type": "whitespace", + "start": 4007, + "end": 4015, + "value": "\n " + }, + { + "type": "operator", + "start": 4015, + "end": 4016, + "value": "-" + }, + { + "type": "number", + "start": 4016, + "end": 4034, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 4034, + "end": 4035, + "value": "," + }, + { + "type": "whitespace", + "start": 4035, + "end": 4043, + "value": "\n " + }, + { + "type": "operator", + "start": 4043, + "end": 4044, + "value": "-" + }, + { + "type": "number", + "start": 4044, + "end": 4063, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 4063, + "end": 4069, + "value": "\n " + }, + { + "type": "brace", + "start": 4069, + "end": 4070, + "value": "]" + }, + { + "type": "comma", + "start": 4070, + "end": 4071, + "value": "," + }, + { + "type": "whitespace", + "start": 4071, + "end": 4072, + "value": " " + }, + { + "type": "operator", + "start": 4072, + "end": 4073, + "value": "%" + }, + { + "type": "brace", + "start": 4073, + "end": 4074, + "value": ")" + }, + { + "type": "whitespace", + "start": 4074, + "end": 4077, + "value": "\n " + }, + { + "type": "operator", + "start": 4077, + "end": 4079, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4079, + "end": 4080, + "value": " " + }, + { + "type": "word", + "start": 4080, + "end": 4084, + "value": "line" + }, + { + "type": "brace", + "start": 4084, + "end": 4085, + "value": "(" + }, + { + "type": "brace", + "start": 4085, + "end": 4086, + "value": "[" + }, + { + "type": "whitespace", + "start": 4086, + "end": 4094, + "value": "\n " + }, + { + "type": "number", + "start": 4094, + "end": 4113, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 4113, + "end": 4114, + "value": "," + }, + { + "type": "whitespace", + "start": 4114, + "end": 4122, + "value": "\n " + }, + { + "type": "number", + "start": 4122, + "end": 4141, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 4141, + "end": 4147, + "value": "\n " + }, + { + "type": "brace", + "start": 4147, + "end": 4148, + "value": "]" + }, + { + "type": "comma", + "start": 4148, + "end": 4149, + "value": "," + }, + { + "type": "whitespace", + "start": 4149, + "end": 4150, + "value": " " + }, + { + "type": "operator", + "start": 4150, + "end": 4151, + "value": "%" + }, + { + "type": "brace", + "start": 4151, + "end": 4152, + "value": ")" + }, + { + "type": "whitespace", + "start": 4152, + "end": 4155, + "value": "\n " + }, + { + "type": "operator", + "start": 4155, + "end": 4157, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4157, + "end": 4158, + "value": " " + }, + { + "type": "word", + "start": 4158, + "end": 4162, + "value": "line" + }, + { + "type": "brace", + "start": 4162, + "end": 4163, + "value": "(" + }, + { + "type": "brace", + "start": 4163, + "end": 4164, + "value": "[" + }, + { + "type": "whitespace", + "start": 4164, + "end": 4172, + "value": "\n " + }, + { + "type": "number", + "start": 4172, + "end": 4191, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 4191, + "end": 4192, + "value": "," + }, + { + "type": "whitespace", + "start": 4192, + "end": 4200, + "value": "\n " + }, + { + "type": "number", + "start": 4200, + "end": 4219, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 4219, + "end": 4225, + "value": "\n " + }, + { + "type": "brace", + "start": 4225, + "end": 4226, + "value": "]" + }, + { + "type": "comma", + "start": 4226, + "end": 4227, + "value": "," + }, + { + "type": "whitespace", + "start": 4227, + "end": 4228, + "value": " " + }, + { + "type": "operator", + "start": 4228, + "end": 4229, + "value": "%" + }, + { + "type": "brace", + "start": 4229, + "end": 4230, + "value": ")" + }, + { + "type": "whitespace", + "start": 4230, + "end": 4233, + "value": "\n " + }, + { + "type": "operator", + "start": 4233, + "end": 4235, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4235, + "end": 4236, + "value": " " + }, + { + "type": "word", + "start": 4236, + "end": 4240, + "value": "line" + }, + { + "type": "brace", + "start": 4240, + "end": 4241, + "value": "(" + }, + { + "type": "brace", + "start": 4241, + "end": 4242, + "value": "[" + }, + { + "type": "whitespace", + "start": 4242, + "end": 4250, + "value": "\n " + }, + { + "type": "operator", + "start": 4250, + "end": 4251, + "value": "-" + }, + { + "type": "number", + "start": 4251, + "end": 4270, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 4270, + "end": 4271, + "value": "," + }, + { + "type": "whitespace", + "start": 4271, + "end": 4279, + "value": "\n " + }, + { + "type": "number", + "start": 4279, + "end": 4297, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 4297, + "end": 4303, + "value": "\n " + }, + { + "type": "brace", + "start": 4303, + "end": 4304, + "value": "]" + }, + { + "type": "comma", + "start": 4304, + "end": 4305, + "value": "," + }, + { + "type": "whitespace", + "start": 4305, + "end": 4306, + "value": " " + }, + { + "type": "operator", + "start": 4306, + "end": 4307, + "value": "%" + }, + { + "type": "brace", + "start": 4307, + "end": 4308, + "value": ")" + }, + { + "type": "whitespace", + "start": 4308, + "end": 4311, + "value": "\n " + }, + { + "type": "operator", + "start": 4311, + "end": 4313, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4313, + "end": 4314, + "value": " " + }, + { + "type": "word", + "start": 4314, + "end": 4318, + "value": "line" + }, + { + "type": "brace", + "start": 4318, + "end": 4319, + "value": "(" + }, + { + "type": "brace", + "start": 4319, + "end": 4320, + "value": "[" + }, + { + "type": "whitespace", + "start": 4320, + "end": 4328, + "value": "\n " + }, + { + "type": "operator", + "start": 4328, + "end": 4329, + "value": "-" + }, + { + "type": "number", + "start": 4329, + "end": 4348, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 4348, + "end": 4349, + "value": "," + }, + { + "type": "whitespace", + "start": 4349, + "end": 4357, + "value": "\n " + }, + { + "type": "operator", + "start": 4357, + "end": 4358, + "value": "-" + }, + { + "type": "number", + "start": 4358, + "end": 4377, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 4377, + "end": 4383, + "value": "\n " + }, + { + "type": "brace", + "start": 4383, + "end": 4384, + "value": "]" + }, + { + "type": "comma", + "start": 4384, + "end": 4385, + "value": "," + }, + { + "type": "whitespace", + "start": 4385, + "end": 4386, + "value": " " + }, + { + "type": "operator", + "start": 4386, + "end": 4387, + "value": "%" + }, + { + "type": "brace", + "start": 4387, + "end": 4388, + "value": ")" + }, + { + "type": "whitespace", + "start": 4388, + "end": 4391, + "value": "\n " + }, + { + "type": "operator", + "start": 4391, + "end": 4393, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4393, + "end": 4394, + "value": " " + }, + { + "type": "word", + "start": 4394, + "end": 4398, + "value": "line" + }, + { + "type": "brace", + "start": 4398, + "end": 4399, + "value": "(" + }, + { + "type": "brace", + "start": 4399, + "end": 4400, + "value": "[" + }, + { + "type": "whitespace", + "start": 4400, + "end": 4408, + "value": "\n " + }, + { + "type": "number", + "start": 4408, + "end": 4426, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 4426, + "end": 4427, + "value": "," + }, + { + "type": "whitespace", + "start": 4427, + "end": 4435, + "value": "\n " + }, + { + "type": "operator", + "start": 4435, + "end": 4436, + "value": "-" + }, + { + "type": "number", + "start": 4436, + "end": 4455, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 4455, + "end": 4461, + "value": "\n " + }, + { + "type": "brace", + "start": 4461, + "end": 4462, + "value": "]" + }, + { + "type": "comma", + "start": 4462, + "end": 4463, + "value": "," + }, + { + "type": "whitespace", + "start": 4463, + "end": 4464, + "value": " " + }, + { + "type": "operator", + "start": 4464, + "end": 4465, + "value": "%" + }, + { + "type": "brace", + "start": 4465, + "end": 4466, + "value": ")" + }, + { + "type": "whitespace", + "start": 4466, + "end": 4469, + "value": "\n " + }, + { + "type": "operator", + "start": 4469, + "end": 4471, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4471, + "end": 4472, + "value": " " + }, + { + "type": "word", + "start": 4472, + "end": 4476, + "value": "line" + }, + { + "type": "brace", + "start": 4476, + "end": 4477, + "value": "(" + }, + { + "type": "brace", + "start": 4477, + "end": 4478, + "value": "[" + }, + { + "type": "whitespace", + "start": 4478, + "end": 4486, + "value": "\n " + }, + { + "type": "number", + "start": 4486, + "end": 4507, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 4507, + "end": 4508, + "value": "," + }, + { + "type": "whitespace", + "start": 4508, + "end": 4516, + "value": "\n " + }, + { + "type": "operator", + "start": 4516, + "end": 4517, + "value": "-" + }, + { + "type": "number", + "start": 4517, + "end": 4535, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 4535, + "end": 4541, + "value": "\n " + }, + { + "type": "brace", + "start": 4541, + "end": 4542, + "value": "]" + }, + { + "type": "comma", + "start": 4542, + "end": 4543, + "value": "," + }, + { + "type": "whitespace", + "start": 4543, + "end": 4544, + "value": " " + }, + { + "type": "operator", + "start": 4544, + "end": 4545, + "value": "%" + }, + { + "type": "brace", + "start": 4545, + "end": 4546, + "value": ")" + }, + { + "type": "whitespace", + "start": 4546, + "end": 4549, + "value": "\n " + }, + { + "type": "operator", + "start": 4549, + "end": 4551, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4551, + "end": 4552, + "value": " " + }, + { + "type": "word", + "start": 4552, + "end": 4556, + "value": "line" + }, + { + "type": "brace", + "start": 4556, + "end": 4557, + "value": "(" + }, + { + "type": "brace", + "start": 4557, + "end": 4558, + "value": "[" + }, + { + "type": "whitespace", + "start": 4558, + "end": 4566, + "value": "\n " + }, + { + "type": "number", + "start": 4566, + "end": 4584, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 4584, + "end": 4585, + "value": "," + }, + { + "type": "whitespace", + "start": 4585, + "end": 4593, + "value": "\n " + }, + { + "type": "operator", + "start": 4593, + "end": 4594, + "value": "-" + }, + { + "type": "number", + "start": 4594, + "end": 4612, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 4612, + "end": 4618, + "value": "\n " + }, + { + "type": "brace", + "start": 4618, + "end": 4619, + "value": "]" + }, + { + "type": "comma", + "start": 4619, + "end": 4620, + "value": "," + }, + { + "type": "whitespace", + "start": 4620, + "end": 4621, + "value": " " + }, + { + "type": "operator", + "start": 4621, + "end": 4622, + "value": "%" + }, + { + "type": "brace", + "start": 4622, + "end": 4623, + "value": ")" + }, + { + "type": "whitespace", + "start": 4623, + "end": 4626, + "value": "\n " + }, + { + "type": "operator", + "start": 4626, + "end": 4628, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4628, + "end": 4629, + "value": " " + }, + { + "type": "word", + "start": 4629, + "end": 4633, + "value": "line" + }, + { + "type": "brace", + "start": 4633, + "end": 4634, + "value": "(" + }, + { + "type": "brace", + "start": 4634, + "end": 4635, + "value": "[" + }, + { + "type": "whitespace", + "start": 4635, + "end": 4643, + "value": "\n " + }, + { + "type": "operator", + "start": 4643, + "end": 4644, + "value": "-" + }, + { + "type": "number", + "start": 4644, + "end": 4662, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 4662, + "end": 4663, + "value": "," + }, + { + "type": "whitespace", + "start": 4663, + "end": 4671, + "value": "\n " + }, + { + "type": "number", + "start": 4671, + "end": 4689, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 4689, + "end": 4695, + "value": "\n " + }, + { + "type": "brace", + "start": 4695, + "end": 4696, + "value": "]" + }, + { + "type": "comma", + "start": 4696, + "end": 4697, + "value": "," + }, + { + "type": "whitespace", + "start": 4697, + "end": 4698, + "value": " " + }, + { + "type": "operator", + "start": 4698, + "end": 4699, + "value": "%" + }, + { + "type": "brace", + "start": 4699, + "end": 4700, + "value": ")" + }, + { + "type": "whitespace", + "start": 4700, + "end": 4703, + "value": "\n " + }, + { + "type": "operator", + "start": 4703, + "end": 4705, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4705, + "end": 4706, + "value": " " + }, + { + "type": "word", + "start": 4706, + "end": 4710, + "value": "line" + }, + { + "type": "brace", + "start": 4710, + "end": 4711, + "value": "(" + }, + { + "type": "brace", + "start": 4711, + "end": 4712, + "value": "[" + }, + { + "type": "number", + "start": 4712, + "end": 4730, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 4730, + "end": 4731, + "value": "," + }, + { + "type": "whitespace", + "start": 4731, + "end": 4732, + "value": " " + }, + { + "type": "number", + "start": 4732, + "end": 4750, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 4750, + "end": 4751, + "value": "]" + }, + { + "type": "comma", + "start": 4751, + "end": 4752, + "value": "," + }, + { + "type": "whitespace", + "start": 4752, + "end": 4753, + "value": " " + }, + { + "type": "operator", + "start": 4753, + "end": 4754, + "value": "%" + }, + { + "type": "brace", + "start": 4754, + "end": 4755, + "value": ")" + }, + { + "type": "whitespace", + "start": 4755, + "end": 4758, + "value": "\n " + }, + { + "type": "operator", + "start": 4758, + "end": 4760, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4760, + "end": 4761, + "value": " " + }, + { + "type": "word", + "start": 4761, + "end": 4765, + "value": "line" + }, + { + "type": "brace", + "start": 4765, + "end": 4766, + "value": "(" + }, + { + "type": "brace", + "start": 4766, + "end": 4767, + "value": "[" + }, + { + "type": "whitespace", + "start": 4767, + "end": 4775, + "value": "\n " + }, + { + "type": "operator", + "start": 4775, + "end": 4776, + "value": "-" + }, + { + "type": "number", + "start": 4776, + "end": 4795, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 4795, + "end": 4796, + "value": "," + }, + { + "type": "whitespace", + "start": 4796, + "end": 4804, + "value": "\n " + }, + { + "type": "number", + "start": 4804, + "end": 4824, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 4824, + "end": 4830, + "value": "\n " + }, + { + "type": "brace", + "start": 4830, + "end": 4831, + "value": "]" + }, + { + "type": "comma", + "start": 4831, + "end": 4832, + "value": "," + }, + { + "type": "whitespace", + "start": 4832, + "end": 4833, + "value": " " + }, + { + "type": "operator", + "start": 4833, + "end": 4834, + "value": "%" + }, + { + "type": "brace", + "start": 4834, + "end": 4835, + "value": ")" + }, + { + "type": "whitespace", + "start": 4835, + "end": 4838, + "value": "\n " + }, + { + "type": "operator", + "start": 4838, + "end": 4840, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4840, + "end": 4841, + "value": " " + }, + { + "type": "word", + "start": 4841, + "end": 4845, + "value": "line" + }, + { + "type": "brace", + "start": 4845, + "end": 4846, + "value": "(" + }, + { + "type": "brace", + "start": 4846, + "end": 4847, + "value": "[" + }, + { + "type": "whitespace", + "start": 4847, + "end": 4855, + "value": "\n " + }, + { + "type": "operator", + "start": 4855, + "end": 4856, + "value": "-" + }, + { + "type": "number", + "start": 4856, + "end": 4874, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 4874, + "end": 4875, + "value": "," + }, + { + "type": "whitespace", + "start": 4875, + "end": 4883, + "value": "\n " + }, + { + "type": "operator", + "start": 4883, + "end": 4884, + "value": "-" + }, + { + "type": "number", + "start": 4884, + "end": 4903, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 4903, + "end": 4909, + "value": "\n " + }, + { + "type": "brace", + "start": 4909, + "end": 4910, + "value": "]" + }, + { + "type": "comma", + "start": 4910, + "end": 4911, + "value": "," + }, + { + "type": "whitespace", + "start": 4911, + "end": 4912, + "value": " " + }, + { + "type": "operator", + "start": 4912, + "end": 4913, + "value": "%" + }, + { + "type": "brace", + "start": 4913, + "end": 4914, + "value": ")" + }, + { + "type": "whitespace", + "start": 4914, + "end": 4917, + "value": "\n " + }, + { + "type": "operator", + "start": 4917, + "end": 4919, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4919, + "end": 4920, + "value": " " + }, + { + "type": "word", + "start": 4920, + "end": 4924, + "value": "line" + }, + { + "type": "brace", + "start": 4924, + "end": 4925, + "value": "(" + }, + { + "type": "brace", + "start": 4925, + "end": 4926, + "value": "[" + }, + { + "type": "whitespace", + "start": 4926, + "end": 4934, + "value": "\n " + }, + { + "type": "operator", + "start": 4934, + "end": 4935, + "value": "-" + }, + { + "type": "number", + "start": 4935, + "end": 4953, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 4953, + "end": 4954, + "value": "," + }, + { + "type": "whitespace", + "start": 4954, + "end": 4962, + "value": "\n " + }, + { + "type": "operator", + "start": 4962, + "end": 4963, + "value": "-" + }, + { + "type": "number", + "start": 4963, + "end": 4982, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 4982, + "end": 4988, + "value": "\n " + }, + { + "type": "brace", + "start": 4988, + "end": 4989, + "value": "]" + }, + { + "type": "comma", + "start": 4989, + "end": 4990, + "value": "," + }, + { + "type": "whitespace", + "start": 4990, + "end": 4991, + "value": " " + }, + { + "type": "operator", + "start": 4991, + "end": 4992, + "value": "%" + }, + { + "type": "brace", + "start": 4992, + "end": 4993, + "value": ")" + }, + { + "type": "whitespace", + "start": 4993, + "end": 4996, + "value": "\n " + }, + { + "type": "operator", + "start": 4996, + "end": 4998, + "value": "|>" + }, + { + "type": "whitespace", + "start": 4998, + "end": 4999, + "value": " " + }, + { + "type": "word", + "start": 4999, + "end": 5003, + "value": "line" + }, + { + "type": "brace", + "start": 5003, + "end": 5004, + "value": "(" + }, + { + "type": "brace", + "start": 5004, + "end": 5005, + "value": "[" + }, + { + "type": "number", + "start": 5005, + "end": 5022, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 5022, + "end": 5023, + "value": "," + }, + { + "type": "whitespace", + "start": 5023, + "end": 5024, + "value": " " + }, + { + "type": "number", + "start": 5024, + "end": 5042, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 5042, + "end": 5043, + "value": "]" + }, + { + "type": "comma", + "start": 5043, + "end": 5044, + "value": "," + }, + { + "type": "whitespace", + "start": 5044, + "end": 5045, + "value": " " + }, + { + "type": "operator", + "start": 5045, + "end": 5046, + "value": "%" + }, + { + "type": "brace", + "start": 5046, + "end": 5047, + "value": ")" + }, + { + "type": "whitespace", + "start": 5047, + "end": 5050, + "value": "\n " + }, + { + "type": "operator", + "start": 5050, + "end": 5052, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5052, + "end": 5053, + "value": " " + }, + { + "type": "word", + "start": 5053, + "end": 5057, + "value": "line" + }, + { + "type": "brace", + "start": 5057, + "end": 5058, + "value": "(" + }, + { + "type": "brace", + "start": 5058, + "end": 5059, + "value": "[" + }, + { + "type": "whitespace", + "start": 5059, + "end": 5067, + "value": "\n " + }, + { + "type": "number", + "start": 5067, + "end": 5086, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 5086, + "end": 5087, + "value": "," + }, + { + "type": "whitespace", + "start": 5087, + "end": 5095, + "value": "\n " + }, + { + "type": "operator", + "start": 5095, + "end": 5096, + "value": "-" + }, + { + "type": "number", + "start": 5096, + "end": 5115, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 5115, + "end": 5121, + "value": "\n " + }, + { + "type": "brace", + "start": 5121, + "end": 5122, + "value": "]" + }, + { + "type": "comma", + "start": 5122, + "end": 5123, + "value": "," + }, + { + "type": "whitespace", + "start": 5123, + "end": 5124, + "value": " " + }, + { + "type": "operator", + "start": 5124, + "end": 5125, + "value": "%" + }, + { + "type": "brace", + "start": 5125, + "end": 5126, + "value": ")" + }, + { + "type": "whitespace", + "start": 5126, + "end": 5129, + "value": "\n " + }, + { + "type": "operator", + "start": 5129, + "end": 5131, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5131, + "end": 5132, + "value": " " + }, + { + "type": "word", + "start": 5132, + "end": 5136, + "value": "line" + }, + { + "type": "brace", + "start": 5136, + "end": 5137, + "value": "(" + }, + { + "type": "brace", + "start": 5137, + "end": 5138, + "value": "[" + }, + { + "type": "number", + "start": 5138, + "end": 5156, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 5156, + "end": 5157, + "value": "," + }, + { + "type": "whitespace", + "start": 5157, + "end": 5158, + "value": " " + }, + { + "type": "number", + "start": 5158, + "end": 5175, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 5175, + "end": 5176, + "value": "]" + }, + { + "type": "comma", + "start": 5176, + "end": 5177, + "value": "," + }, + { + "type": "whitespace", + "start": 5177, + "end": 5178, + "value": " " + }, + { + "type": "operator", + "start": 5178, + "end": 5179, + "value": "%" + }, + { + "type": "brace", + "start": 5179, + "end": 5180, + "value": ")" + }, + { + "type": "whitespace", + "start": 5180, + "end": 5183, + "value": "\n " + }, + { + "type": "operator", + "start": 5183, + "end": 5185, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5185, + "end": 5186, + "value": " " + }, + { + "type": "word", + "start": 5186, + "end": 5190, + "value": "line" + }, + { + "type": "brace", + "start": 5190, + "end": 5191, + "value": "(" + }, + { + "type": "brace", + "start": 5191, + "end": 5192, + "value": "[" + }, + { + "type": "whitespace", + "start": 5192, + "end": 5200, + "value": "\n " + }, + { + "type": "number", + "start": 5200, + "end": 5219, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 5219, + "end": 5220, + "value": "," + }, + { + "type": "whitespace", + "start": 5220, + "end": 5228, + "value": "\n " + }, + { + "type": "operator", + "start": 5228, + "end": 5229, + "value": "-" + }, + { + "type": "number", + "start": 5229, + "end": 5247, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 5247, + "end": 5253, + "value": "\n " + }, + { + "type": "brace", + "start": 5253, + "end": 5254, + "value": "]" + }, + { + "type": "comma", + "start": 5254, + "end": 5255, + "value": "," + }, + { + "type": "whitespace", + "start": 5255, + "end": 5256, + "value": " " + }, + { + "type": "operator", + "start": 5256, + "end": 5257, + "value": "%" + }, + { + "type": "brace", + "start": 5257, + "end": 5258, + "value": ")" + }, + { + "type": "whitespace", + "start": 5258, + "end": 5261, + "value": "\n " + }, + { + "type": "operator", + "start": 5261, + "end": 5263, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5263, + "end": 5264, + "value": " " + }, + { + "type": "word", + "start": 5264, + "end": 5268, + "value": "line" + }, + { + "type": "brace", + "start": 5268, + "end": 5269, + "value": "(" + }, + { + "type": "brace", + "start": 5269, + "end": 5270, + "value": "[" + }, + { + "type": "number", + "start": 5270, + "end": 5288, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 5288, + "end": 5289, + "value": "," + }, + { + "type": "whitespace", + "start": 5289, + "end": 5290, + "value": " " + }, + { + "type": "number", + "start": 5290, + "end": 5308, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 5308, + "end": 5309, + "value": "]" + }, + { + "type": "comma", + "start": 5309, + "end": 5310, + "value": "," + }, + { + "type": "whitespace", + "start": 5310, + "end": 5311, + "value": " " + }, + { + "type": "operator", + "start": 5311, + "end": 5312, + "value": "%" + }, + { + "type": "brace", + "start": 5312, + "end": 5313, + "value": ")" + }, + { + "type": "whitespace", + "start": 5313, + "end": 5316, + "value": "\n " + }, + { + "type": "operator", + "start": 5316, + "end": 5318, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5318, + "end": 5319, + "value": " " + }, + { + "type": "word", + "start": 5319, + "end": 5323, + "value": "line" + }, + { + "type": "brace", + "start": 5323, + "end": 5324, + "value": "(" + }, + { + "type": "brace", + "start": 5324, + "end": 5325, + "value": "[" + }, + { + "type": "whitespace", + "start": 5325, + "end": 5333, + "value": "\n " + }, + { + "type": "number", + "start": 5333, + "end": 5351, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 5351, + "end": 5352, + "value": "," + }, + { + "type": "whitespace", + "start": 5352, + "end": 5360, + "value": "\n " + }, + { + "type": "number", + "start": 5360, + "end": 5379, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 5379, + "end": 5385, + "value": "\n " + }, + { + "type": "brace", + "start": 5385, + "end": 5386, + "value": "]" + }, + { + "type": "comma", + "start": 5386, + "end": 5387, + "value": "," + }, + { + "type": "whitespace", + "start": 5387, + "end": 5388, + "value": " " + }, + { + "type": "operator", + "start": 5388, + "end": 5389, + "value": "%" + }, + { + "type": "brace", + "start": 5389, + "end": 5390, + "value": ")" + }, + { + "type": "whitespace", + "start": 5390, + "end": 5393, + "value": "\n " + }, + { + "type": "operator", + "start": 5393, + "end": 5395, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5395, + "end": 5396, + "value": " " + }, + { + "type": "word", + "start": 5396, + "end": 5400, + "value": "line" + }, + { + "type": "brace", + "start": 5400, + "end": 5401, + "value": "(" + }, + { + "type": "brace", + "start": 5401, + "end": 5402, + "value": "[" + }, + { + "type": "number", + "start": 5402, + "end": 5420, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 5420, + "end": 5421, + "value": "," + }, + { + "type": "whitespace", + "start": 5421, + "end": 5422, + "value": " " + }, + { + "type": "number", + "start": 5422, + "end": 5440, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 5440, + "end": 5441, + "value": "]" + }, + { + "type": "comma", + "start": 5441, + "end": 5442, + "value": "," + }, + { + "type": "whitespace", + "start": 5442, + "end": 5443, + "value": " " + }, + { + "type": "operator", + "start": 5443, + "end": 5444, + "value": "%" + }, + { + "type": "brace", + "start": 5444, + "end": 5445, + "value": ")" + }, + { + "type": "whitespace", + "start": 5445, + "end": 5448, + "value": "\n " + }, + { + "type": "operator", + "start": 5448, + "end": 5450, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5450, + "end": 5451, + "value": " " + }, + { + "type": "word", + "start": 5451, + "end": 5455, + "value": "line" + }, + { + "type": "brace", + "start": 5455, + "end": 5456, + "value": "(" + }, + { + "type": "brace", + "start": 5456, + "end": 5457, + "value": "[" + }, + { + "type": "whitespace", + "start": 5457, + "end": 5465, + "value": "\n " + }, + { + "type": "operator", + "start": 5465, + "end": 5466, + "value": "-" + }, + { + "type": "number", + "start": 5466, + "end": 5485, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 5485, + "end": 5486, + "value": "," + }, + { + "type": "whitespace", + "start": 5486, + "end": 5494, + "value": "\n " + }, + { + "type": "operator", + "start": 5494, + "end": 5495, + "value": "-" + }, + { + "type": "number", + "start": 5495, + "end": 5513, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 5513, + "end": 5519, + "value": "\n " + }, + { + "type": "brace", + "start": 5519, + "end": 5520, + "value": "]" + }, + { + "type": "comma", + "start": 5520, + "end": 5521, + "value": "," + }, + { + "type": "whitespace", + "start": 5521, + "end": 5522, + "value": " " + }, + { + "type": "operator", + "start": 5522, + "end": 5523, + "value": "%" + }, + { + "type": "brace", + "start": 5523, + "end": 5524, + "value": ")" + }, + { + "type": "whitespace", + "start": 5524, + "end": 5527, + "value": "\n " + }, + { + "type": "operator", + "start": 5527, + "end": 5529, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5529, + "end": 5530, + "value": " " + }, + { + "type": "word", + "start": 5530, + "end": 5534, + "value": "line" + }, + { + "type": "brace", + "start": 5534, + "end": 5535, + "value": "(" + }, + { + "type": "brace", + "start": 5535, + "end": 5536, + "value": "[" + }, + { + "type": "whitespace", + "start": 5536, + "end": 5544, + "value": "\n " + }, + { + "type": "number", + "start": 5544, + "end": 5562, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 5562, + "end": 5563, + "value": "," + }, + { + "type": "whitespace", + "start": 5563, + "end": 5571, + "value": "\n " + }, + { + "type": "operator", + "start": 5571, + "end": 5572, + "value": "-" + }, + { + "type": "number", + "start": 5572, + "end": 5590, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 5590, + "end": 5596, + "value": "\n " + }, + { + "type": "brace", + "start": 5596, + "end": 5597, + "value": "]" + }, + { + "type": "comma", + "start": 5597, + "end": 5598, + "value": "," + }, + { + "type": "whitespace", + "start": 5598, + "end": 5599, + "value": " " + }, + { + "type": "operator", + "start": 5599, + "end": 5600, + "value": "%" + }, + { + "type": "brace", + "start": 5600, + "end": 5601, + "value": ")" + }, + { + "type": "whitespace", + "start": 5601, + "end": 5604, + "value": "\n " + }, + { + "type": "operator", + "start": 5604, + "end": 5606, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5606, + "end": 5607, + "value": " " + }, + { + "type": "word", + "start": 5607, + "end": 5611, + "value": "line" + }, + { + "type": "brace", + "start": 5611, + "end": 5612, + "value": "(" + }, + { + "type": "brace", + "start": 5612, + "end": 5613, + "value": "[" + }, + { + "type": "whitespace", + "start": 5613, + "end": 5621, + "value": "\n " + }, + { + "type": "number", + "start": 5621, + "end": 5639, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 5639, + "end": 5640, + "value": "," + }, + { + "type": "whitespace", + "start": 5640, + "end": 5648, + "value": "\n " + }, + { + "type": "operator", + "start": 5648, + "end": 5649, + "value": "-" + }, + { + "type": "number", + "start": 5649, + "end": 5667, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 5667, + "end": 5673, + "value": "\n " + }, + { + "type": "brace", + "start": 5673, + "end": 5674, + "value": "]" + }, + { + "type": "comma", + "start": 5674, + "end": 5675, + "value": "," + }, + { + "type": "whitespace", + "start": 5675, + "end": 5676, + "value": " " + }, + { + "type": "operator", + "start": 5676, + "end": 5677, + "value": "%" + }, + { + "type": "brace", + "start": 5677, + "end": 5678, + "value": ")" + }, + { + "type": "whitespace", + "start": 5678, + "end": 5681, + "value": "\n " + }, + { + "type": "operator", + "start": 5681, + "end": 5683, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5683, + "end": 5684, + "value": " " + }, + { + "type": "word", + "start": 5684, + "end": 5688, + "value": "line" + }, + { + "type": "brace", + "start": 5688, + "end": 5689, + "value": "(" + }, + { + "type": "brace", + "start": 5689, + "end": 5690, + "value": "[" + }, + { + "type": "whitespace", + "start": 5690, + "end": 5698, + "value": "\n " + }, + { + "type": "operator", + "start": 5698, + "end": 5699, + "value": "-" + }, + { + "type": "number", + "start": 5699, + "end": 5717, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 5717, + "end": 5718, + "value": "," + }, + { + "type": "whitespace", + "start": 5718, + "end": 5726, + "value": "\n " + }, + { + "type": "number", + "start": 5726, + "end": 5744, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 5744, + "end": 5750, + "value": "\n " + }, + { + "type": "brace", + "start": 5750, + "end": 5751, + "value": "]" + }, + { + "type": "comma", + "start": 5751, + "end": 5752, + "value": "," + }, + { + "type": "whitespace", + "start": 5752, + "end": 5753, + "value": " " + }, + { + "type": "operator", + "start": 5753, + "end": 5754, + "value": "%" + }, + { + "type": "brace", + "start": 5754, + "end": 5755, + "value": ")" + }, + { + "type": "whitespace", + "start": 5755, + "end": 5758, + "value": "\n " + }, + { + "type": "operator", + "start": 5758, + "end": 5760, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5760, + "end": 5761, + "value": " " + }, + { + "type": "word", + "start": 5761, + "end": 5765, + "value": "line" + }, + { + "type": "brace", + "start": 5765, + "end": 5766, + "value": "(" + }, + { + "type": "brace", + "start": 5766, + "end": 5767, + "value": "[" + }, + { + "type": "whitespace", + "start": 5767, + "end": 5775, + "value": "\n " + }, + { + "type": "number", + "start": 5775, + "end": 5793, + "value": "0.9464450621708211" + }, + { + "type": "comma", + "start": 5793, + "end": 5794, + "value": "," + }, + { + "type": "whitespace", + "start": 5794, + "end": 5802, + "value": "\n " + }, + { + "type": "operator", + "start": 5802, + "end": 5803, + "value": "-" + }, + { + "type": "number", + "start": 5803, + "end": 5821, + "value": "0.2684908127803667" + }, + { + "type": "whitespace", + "start": 5821, + "end": 5827, + "value": "\n " + }, + { + "type": "brace", + "start": 5827, + "end": 5828, + "value": "]" + }, + { + "type": "comma", + "start": 5828, + "end": 5829, + "value": "," + }, + { + "type": "whitespace", + "start": 5829, + "end": 5830, + "value": " " + }, + { + "type": "operator", + "start": 5830, + "end": 5831, + "value": "%" + }, + { + "type": "brace", + "start": 5831, + "end": 5832, + "value": ")" + }, + { + "type": "whitespace", + "start": 5832, + "end": 5835, + "value": "\n " + }, + { + "type": "operator", + "start": 5835, + "end": 5837, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5837, + "end": 5838, + "value": " " + }, + { + "type": "word", + "start": 5838, + "end": 5842, + "value": "line" + }, + { + "type": "brace", + "start": 5842, + "end": 5843, + "value": "(" + }, + { + "type": "brace", + "start": 5843, + "end": 5844, + "value": "[" + }, + { + "type": "number", + "start": 5844, + "end": 5862, + "value": "0.5241732366617591" + }, + { + "type": "comma", + "start": 5862, + "end": 5863, + "value": "," + }, + { + "type": "whitespace", + "start": 5863, + "end": 5864, + "value": " " + }, + { + "type": "number", + "start": 5864, + "end": 5882, + "value": "0.9011437416408563" + }, + { + "type": "brace", + "start": 5882, + "end": 5883, + "value": "]" + }, + { + "type": "comma", + "start": 5883, + "end": 5884, + "value": "," + }, + { + "type": "whitespace", + "start": 5884, + "end": 5885, + "value": " " + }, + { + "type": "operator", + "start": 5885, + "end": 5886, + "value": "%" + }, + { + "type": "brace", + "start": 5886, + "end": 5887, + "value": ")" + }, + { + "type": "whitespace", + "start": 5887, + "end": 5890, + "value": "\n " + }, + { + "type": "operator", + "start": 5890, + "end": 5892, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5892, + "end": 5893, + "value": " " + }, + { + "type": "word", + "start": 5893, + "end": 5897, + "value": "line" + }, + { + "type": "brace", + "start": 5897, + "end": 5898, + "value": "(" + }, + { + "type": "brace", + "start": 5898, + "end": 5899, + "value": "[" + }, + { + "type": "whitespace", + "start": 5899, + "end": 5907, + "value": "\n " + }, + { + "type": "operator", + "start": 5907, + "end": 5908, + "value": "-" + }, + { + "type": "number", + "start": 5908, + "end": 5927, + "value": "0.14255393713960607" + }, + { + "type": "comma", + "start": 5927, + "end": 5928, + "value": "," + }, + { + "type": "whitespace", + "start": 5928, + "end": 5936, + "value": "\n " + }, + { + "type": "operator", + "start": 5936, + "end": 5937, + "value": "-" + }, + { + "type": "number", + "start": 5937, + "end": 5955, + "value": "0.5194262624564814" + }, + { + "type": "whitespace", + "start": 5955, + "end": 5961, + "value": "\n " + }, + { + "type": "brace", + "start": 5961, + "end": 5962, + "value": "]" + }, + { + "type": "comma", + "start": 5962, + "end": 5963, + "value": "," + }, + { + "type": "whitespace", + "start": 5963, + "end": 5964, + "value": " " + }, + { + "type": "operator", + "start": 5964, + "end": 5965, + "value": "%" + }, + { + "type": "brace", + "start": 5965, + "end": 5966, + "value": ")" + }, + { + "type": "whitespace", + "start": 5966, + "end": 5969, + "value": "\n " + }, + { + "type": "operator", + "start": 5969, + "end": 5971, + "value": "|>" + }, + { + "type": "whitespace", + "start": 5971, + "end": 5972, + "value": " " + }, + { + "type": "word", + "start": 5972, + "end": 5976, + "value": "line" + }, + { + "type": "brace", + "start": 5976, + "end": 5977, + "value": "(" + }, + { + "type": "brace", + "start": 5977, + "end": 5978, + "value": "[" + }, + { + "type": "whitespace", + "start": 5978, + "end": 5986, + "value": "\n " + }, + { + "type": "operator", + "start": 5986, + "end": 5987, + "value": "-" + }, + { + "type": "number", + "start": 5987, + "end": 6005, + "value": "0.4287123231350338" + }, + { + "type": "comma", + "start": 6005, + "end": 6006, + "value": "," + }, + { + "type": "whitespace", + "start": 6006, + "end": 6014, + "value": "\n " + }, + { + "type": "operator", + "start": 6014, + "end": 6015, + "value": "-" + }, + { + "type": "number", + "start": 6015, + "end": 6033, + "value": "0.4223564528725028" + }, + { + "type": "whitespace", + "start": 6033, + "end": 6039, + "value": "\n " + }, + { + "type": "brace", + "start": 6039, + "end": 6040, + "value": "]" + }, + { + "type": "comma", + "start": 6040, + "end": 6041, + "value": "," + }, + { + "type": "whitespace", + "start": 6041, + "end": 6042, + "value": " " + }, + { + "type": "operator", + "start": 6042, + "end": 6043, + "value": "%" + }, + { + "type": "brace", + "start": 6043, + "end": 6044, + "value": ")" + }, + { + "type": "whitespace", + "start": 6044, + "end": 6047, + "value": "\n " + }, + { + "type": "operator", + "start": 6047, + "end": 6049, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6049, + "end": 6050, + "value": " " + }, + { + "type": "word", + "start": 6050, + "end": 6054, + "value": "line" + }, + { + "type": "brace", + "start": 6054, + "end": 6055, + "value": "(" + }, + { + "type": "brace", + "start": 6055, + "end": 6056, + "value": "[" + }, + { + "type": "whitespace", + "start": 6056, + "end": 6064, + "value": "\n " + }, + { + "type": "operator", + "start": 6064, + "end": 6065, + "value": "-" + }, + { + "type": "number", + "start": 6065, + "end": 6084, + "value": "0.09316367294024519" + }, + { + "type": "comma", + "start": 6084, + "end": 6085, + "value": "," + }, + { + "type": "whitespace", + "start": 6085, + "end": 6093, + "value": "\n " + }, + { + "type": "operator", + "start": 6093, + "end": 6094, + "value": "-" + }, + { + "type": "number", + "start": 6094, + "end": 6112, + "value": "0.9063127021008246" + }, + { + "type": "whitespace", + "start": 6112, + "end": 6118, + "value": "\n " + }, + { + "type": "brace", + "start": 6118, + "end": 6119, + "value": "]" + }, + { + "type": "comma", + "start": 6119, + "end": 6120, + "value": "," + }, + { + "type": "whitespace", + "start": 6120, + "end": 6121, + "value": " " + }, + { + "type": "operator", + "start": 6121, + "end": 6122, + "value": "%" + }, + { + "type": "brace", + "start": 6122, + "end": 6123, + "value": ")" + }, + { + "type": "whitespace", + "start": 6123, + "end": 6126, + "value": "\n " + }, + { + "type": "operator", + "start": 6126, + "end": 6128, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6128, + "end": 6129, + "value": " " + }, + { + "type": "word", + "start": 6129, + "end": 6133, + "value": "line" + }, + { + "type": "brace", + "start": 6133, + "end": 6134, + "value": "(" + }, + { + "type": "brace", + "start": 6134, + "end": 6135, + "value": "[" + }, + { + "type": "whitespace", + "start": 6135, + "end": 6143, + "value": "\n " + }, + { + "type": "operator", + "start": 6143, + "end": 6144, + "value": "-" + }, + { + "type": "number", + "start": 6144, + "end": 6162, + "value": "0.2767766535558669" + }, + { + "type": "comma", + "start": 6162, + "end": 6163, + "value": "," + }, + { + "type": "whitespace", + "start": 6163, + "end": 6171, + "value": "\n " + }, + { + "type": "number", + "start": 6171, + "end": 6189, + "value": "0.6816248114129131" + }, + { + "type": "whitespace", + "start": 6189, + "end": 6195, + "value": "\n " + }, + { + "type": "brace", + "start": 6195, + "end": 6196, + "value": "]" + }, + { + "type": "comma", + "start": 6196, + "end": 6197, + "value": "," + }, + { + "type": "whitespace", + "start": 6197, + "end": 6198, + "value": " " + }, + { + "type": "operator", + "start": 6198, + "end": 6199, + "value": "%" + }, + { + "type": "brace", + "start": 6199, + "end": 6200, + "value": ")" + }, + { + "type": "whitespace", + "start": 6200, + "end": 6203, + "value": "\n " + }, + { + "type": "operator", + "start": 6203, + "end": 6205, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6205, + "end": 6206, + "value": " " + }, + { + "type": "word", + "start": 6206, + "end": 6210, + "value": "line" + }, + { + "type": "brace", + "start": 6210, + "end": 6211, + "value": "(" + }, + { + "type": "brace", + "start": 6211, + "end": 6212, + "value": "[" + }, + { + "type": "whitespace", + "start": 6212, + "end": 6220, + "value": "\n " + }, + { + "type": "number", + "start": 6220, + "end": 6238, + "value": "0.9796762495562534" + }, + { + "type": "comma", + "start": 6238, + "end": 6239, + "value": "," + }, + { + "type": "whitespace", + "start": 6239, + "end": 6247, + "value": "\n " + }, + { + "type": "operator", + "start": 6247, + "end": 6248, + "value": "-" + }, + { + "type": "number", + "start": 6248, + "end": 6266, + "value": "0.0822145668330625" + }, + { + "type": "whitespace", + "start": 6266, + "end": 6272, + "value": "\n " + }, + { + "type": "brace", + "start": 6272, + "end": 6273, + "value": "]" + }, + { + "type": "comma", + "start": 6273, + "end": 6274, + "value": "," + }, + { + "type": "whitespace", + "start": 6274, + "end": 6275, + "value": " " + }, + { + "type": "operator", + "start": 6275, + "end": 6276, + "value": "%" + }, + { + "type": "brace", + "start": 6276, + "end": 6277, + "value": ")" + }, + { + "type": "whitespace", + "start": 6277, + "end": 6280, + "value": "\n " + }, + { + "type": "operator", + "start": 6280, + "end": 6282, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6282, + "end": 6283, + "value": " " + }, + { + "type": "word", + "start": 6283, + "end": 6287, + "value": "line" + }, + { + "type": "brace", + "start": 6287, + "end": 6288, + "value": "(" + }, + { + "type": "brace", + "start": 6288, + "end": 6289, + "value": "[" + }, + { + "type": "whitespace", + "start": 6289, + "end": 6297, + "value": "\n " + }, + { + "type": "operator", + "start": 6297, + "end": 6298, + "value": "-" + }, + { + "type": "number", + "start": 6298, + "end": 6316, + "value": "0.8666513070867441" + }, + { + "type": "comma", + "start": 6316, + "end": 6317, + "value": "," + }, + { + "type": "whitespace", + "start": 6317, + "end": 6325, + "value": "\n " + }, + { + "type": "operator", + "start": 6325, + "end": 6326, + "value": "-" + }, + { + "type": "number", + "start": 6326, + "end": 6343, + "value": "0.301053160242023" + }, + { + "type": "whitespace", + "start": 6343, + "end": 6349, + "value": "\n " + }, + { + "type": "brace", + "start": 6349, + "end": 6350, + "value": "]" + }, + { + "type": "comma", + "start": 6350, + "end": 6351, + "value": "," + }, + { + "type": "whitespace", + "start": 6351, + "end": 6352, + "value": " " + }, + { + "type": "operator", + "start": 6352, + "end": 6353, + "value": "%" + }, + { + "type": "brace", + "start": 6353, + "end": 6354, + "value": ")" + }, + { + "type": "whitespace", + "start": 6354, + "end": 6357, + "value": "\n " + }, + { + "type": "operator", + "start": 6357, + "end": 6359, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6359, + "end": 6360, + "value": " " + }, + { + "type": "word", + "start": 6360, + "end": 6364, + "value": "line" + }, + { + "type": "brace", + "start": 6364, + "end": 6365, + "value": "(" + }, + { + "type": "brace", + "start": 6365, + "end": 6366, + "value": "[" + }, + { + "type": "whitespace", + "start": 6366, + "end": 6374, + "value": "\n " + }, + { + "type": "number", + "start": 6374, + "end": 6391, + "value": "0.537415656028112" + }, + { + "type": "comma", + "start": 6391, + "end": 6392, + "value": "," + }, + { + "type": "whitespace", + "start": 6392, + "end": 6400, + "value": "\n " + }, + { + "type": "number", + "start": 6400, + "end": 6420, + "value": "0.020272692875002774" + }, + { + "type": "whitespace", + "start": 6420, + "end": 6426, + "value": "\n " + }, + { + "type": "brace", + "start": 6426, + "end": 6427, + "value": "]" + }, + { + "type": "comma", + "start": 6427, + "end": 6428, + "value": "," + }, + { + "type": "whitespace", + "start": 6428, + "end": 6429, + "value": " " + }, + { + "type": "operator", + "start": 6429, + "end": 6430, + "value": "%" + }, + { + "type": "brace", + "start": 6430, + "end": 6431, + "value": ")" + }, + { + "type": "whitespace", + "start": 6431, + "end": 6434, + "value": "\n " + }, + { + "type": "operator", + "start": 6434, + "end": 6436, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6436, + "end": 6437, + "value": " " + }, + { + "type": "word", + "start": 6437, + "end": 6441, + "value": "line" + }, + { + "type": "brace", + "start": 6441, + "end": 6442, + "value": "(" + }, + { + "type": "brace", + "start": 6442, + "end": 6443, + "value": "[" + }, + { + "type": "whitespace", + "start": 6443, + "end": 6451, + "value": "\n " + }, + { + "type": "number", + "start": 6451, + "end": 6469, + "value": "0.9332396256457531" + }, + { + "type": "comma", + "start": 6469, + "end": 6470, + "value": "," + }, + { + "type": "whitespace", + "start": 6470, + "end": 6478, + "value": "\n " + }, + { + "type": "operator", + "start": 6478, + "end": 6479, + "value": "-" + }, + { + "type": "number", + "start": 6479, + "end": 6497, + "value": "0.6228175690649898" + }, + { + "type": "whitespace", + "start": 6497, + "end": 6503, + "value": "\n " + }, + { + "type": "brace", + "start": 6503, + "end": 6504, + "value": "]" + }, + { + "type": "comma", + "start": 6504, + "end": 6505, + "value": "," + }, + { + "type": "whitespace", + "start": 6505, + "end": 6506, + "value": " " + }, + { + "type": "operator", + "start": 6506, + "end": 6507, + "value": "%" + }, + { + "type": "brace", + "start": 6507, + "end": 6508, + "value": ")" + }, + { + "type": "whitespace", + "start": 6508, + "end": 6511, + "value": "\n " + }, + { + "type": "operator", + "start": 6511, + "end": 6513, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6513, + "end": 6514, + "value": " " + }, + { + "type": "word", + "start": 6514, + "end": 6518, + "value": "line" + }, + { + "type": "brace", + "start": 6518, + "end": 6519, + "value": "(" + }, + { + "type": "brace", + "start": 6519, + "end": 6520, + "value": "[" + }, + { + "type": "whitespace", + "start": 6520, + "end": 6528, + "value": "\n " + }, + { + "type": "number", + "start": 6528, + "end": 6547, + "value": "0.18052415837320734" + }, + { + "type": "comma", + "start": 6547, + "end": 6548, + "value": "," + }, + { + "type": "whitespace", + "start": 6548, + "end": 6556, + "value": "\n " + }, + { + "type": "operator", + "start": 6556, + "end": 6557, + "value": "-" + }, + { + "type": "number", + "start": 6557, + "end": 6576, + "value": "0.36894384647296197" + }, + { + "type": "whitespace", + "start": 6576, + "end": 6582, + "value": "\n " + }, + { + "type": "brace", + "start": 6582, + "end": 6583, + "value": "]" + }, + { + "type": "comma", + "start": 6583, + "end": 6584, + "value": "," + }, + { + "type": "whitespace", + "start": 6584, + "end": 6585, + "value": " " + }, + { + "type": "operator", + "start": 6585, + "end": 6586, + "value": "%" + }, + { + "type": "brace", + "start": 6586, + "end": 6587, + "value": ")" + }, + { + "type": "whitespace", + "start": 6587, + "end": 6590, + "value": "\n " + }, + { + "type": "operator", + "start": 6590, + "end": 6592, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6592, + "end": 6593, + "value": " " + }, + { + "type": "word", + "start": 6593, + "end": 6597, + "value": "line" + }, + { + "type": "brace", + "start": 6597, + "end": 6598, + "value": "(" + }, + { + "type": "brace", + "start": 6598, + "end": 6599, + "value": "[" + }, + { + "type": "number", + "start": 6599, + "end": 6617, + "value": "0.5384372634075449" + }, + { + "type": "comma", + "start": 6617, + "end": 6618, + "value": "," + }, + { + "type": "whitespace", + "start": 6618, + "end": 6619, + "value": " " + }, + { + "type": "number", + "start": 6619, + "end": 6637, + "value": "0.2377565050887107" + }, + { + "type": "brace", + "start": 6637, + "end": 6638, + "value": "]" + }, + { + "type": "comma", + "start": 6638, + "end": 6639, + "value": "," + }, + { + "type": "whitespace", + "start": 6639, + "end": 6640, + "value": " " + }, + { + "type": "operator", + "start": 6640, + "end": 6641, + "value": "%" + }, + { + "type": "brace", + "start": 6641, + "end": 6642, + "value": ")" + }, + { + "type": "whitespace", + "start": 6642, + "end": 6645, + "value": "\n " + }, + { + "type": "operator", + "start": 6645, + "end": 6647, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6647, + "end": 6648, + "value": " " + }, + { + "type": "word", + "start": 6648, + "end": 6652, + "value": "line" + }, + { + "type": "brace", + "start": 6652, + "end": 6653, + "value": "(" + }, + { + "type": "brace", + "start": 6653, + "end": 6654, + "value": "[" + }, + { + "type": "whitespace", + "start": 6654, + "end": 6662, + "value": "\n " + }, + { + "type": "number", + "start": 6662, + "end": 6681, + "value": "0.39043436929278874" + }, + { + "type": "comma", + "start": 6681, + "end": 6682, + "value": "," + }, + { + "type": "whitespace", + "start": 6682, + "end": 6690, + "value": "\n " + }, + { + "type": "number", + "start": 6690, + "end": 6709, + "value": "0.14273182483160451" + }, + { + "type": "whitespace", + "start": 6709, + "end": 6715, + "value": "\n " + }, + { + "type": "brace", + "start": 6715, + "end": 6716, + "value": "]" + }, + { + "type": "comma", + "start": 6716, + "end": 6717, + "value": "," + }, + { + "type": "whitespace", + "start": 6717, + "end": 6718, + "value": " " + }, + { + "type": "operator", + "start": 6718, + "end": 6719, + "value": "%" + }, + { + "type": "brace", + "start": 6719, + "end": 6720, + "value": ")" + }, + { + "type": "whitespace", + "start": 6720, + "end": 6723, + "value": "\n " + }, + { + "type": "operator", + "start": 6723, + "end": 6725, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6725, + "end": 6726, + "value": " " + }, + { + "type": "word", + "start": 6726, + "end": 6730, + "value": "line" + }, + { + "type": "brace", + "start": 6730, + "end": 6731, + "value": "(" + }, + { + "type": "brace", + "start": 6731, + "end": 6732, + "value": "[" + }, + { + "type": "whitespace", + "start": 6732, + "end": 6740, + "value": "\n " + }, + { + "type": "number", + "start": 6740, + "end": 6759, + "value": "0.09782890412897283" + }, + { + "type": "comma", + "start": 6759, + "end": 6760, + "value": "," + }, + { + "type": "whitespace", + "start": 6760, + "end": 6768, + "value": "\n " + }, + { + "type": "number", + "start": 6768, + "end": 6786, + "value": "0.9907667536909659" + }, + { + "type": "whitespace", + "start": 6786, + "end": 6792, + "value": "\n " + }, + { + "type": "brace", + "start": 6792, + "end": 6793, + "value": "]" + }, + { + "type": "comma", + "start": 6793, + "end": 6794, + "value": "," + }, + { + "type": "whitespace", + "start": 6794, + "end": 6795, + "value": " " + }, + { + "type": "operator", + "start": 6795, + "end": 6796, + "value": "%" + }, + { + "type": "brace", + "start": 6796, + "end": 6797, + "value": ")" + }, + { + "type": "whitespace", + "start": 6797, + "end": 6800, + "value": "\n " + }, + { + "type": "operator", + "start": 6800, + "end": 6802, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6802, + "end": 6803, + "value": " " + }, + { + "type": "word", + "start": 6803, + "end": 6807, + "value": "line" + }, + { + "type": "brace", + "start": 6807, + "end": 6808, + "value": "(" + }, + { + "type": "brace", + "start": 6808, + "end": 6809, + "value": "[" + }, + { + "type": "whitespace", + "start": 6809, + "end": 6817, + "value": "\n " + }, + { + "type": "number", + "start": 6817, + "end": 6835, + "value": "0.5286610085921146" + }, + { + "type": "comma", + "start": 6835, + "end": 6836, + "value": "," + }, + { + "type": "whitespace", + "start": 6836, + "end": 6844, + "value": "\n " + }, + { + "type": "operator", + "start": 6844, + "end": 6845, + "value": "-" + }, + { + "type": "number", + "start": 6845, + "end": 6863, + "value": "0.7924508308419256" + }, + { + "type": "whitespace", + "start": 6863, + "end": 6869, + "value": "\n " + }, + { + "type": "brace", + "start": 6869, + "end": 6870, + "value": "]" + }, + { + "type": "comma", + "start": 6870, + "end": 6871, + "value": "," + }, + { + "type": "whitespace", + "start": 6871, + "end": 6872, + "value": " " + }, + { + "type": "operator", + "start": 6872, + "end": 6873, + "value": "%" + }, + { + "type": "brace", + "start": 6873, + "end": 6874, + "value": ")" + }, + { + "type": "whitespace", + "start": 6874, + "end": 6877, + "value": "\n " + }, + { + "type": "operator", + "start": 6877, + "end": 6879, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6879, + "end": 6880, + "value": " " + }, + { + "type": "word", + "start": 6880, + "end": 6884, + "value": "line" + }, + { + "type": "brace", + "start": 6884, + "end": 6885, + "value": "(" + }, + { + "type": "brace", + "start": 6885, + "end": 6886, + "value": "[" + }, + { + "type": "whitespace", + "start": 6886, + "end": 6894, + "value": "\n " + }, + { + "type": "number", + "start": 6894, + "end": 6912, + "value": "0.3789978184503342" + }, + { + "type": "comma", + "start": 6912, + "end": 6913, + "value": "," + }, + { + "type": "whitespace", + "start": 6913, + "end": 6921, + "value": "\n " + }, + { + "type": "number", + "start": 6921, + "end": 6940, + "value": "0.12396120576838676" + }, + { + "type": "whitespace", + "start": 6940, + "end": 6946, + "value": "\n " + }, + { + "type": "brace", + "start": 6946, + "end": 6947, + "value": "]" + }, + { + "type": "comma", + "start": 6947, + "end": 6948, + "value": "," + }, + { + "type": "whitespace", + "start": 6948, + "end": 6949, + "value": " " + }, + { + "type": "operator", + "start": 6949, + "end": 6950, + "value": "%" + }, + { + "type": "brace", + "start": 6950, + "end": 6951, + "value": ")" + }, + { + "type": "whitespace", + "start": 6951, + "end": 6954, + "value": "\n " + }, + { + "type": "operator", + "start": 6954, + "end": 6956, + "value": "|>" + }, + { + "type": "whitespace", + "start": 6956, + "end": 6957, + "value": " " + }, + { + "type": "word", + "start": 6957, + "end": 6961, + "value": "line" + }, + { + "type": "brace", + "start": 6961, + "end": 6962, + "value": "(" + }, + { + "type": "brace", + "start": 6962, + "end": 6963, + "value": "[" + }, + { + "type": "whitespace", + "start": 6963, + "end": 6971, + "value": "\n " + }, + { + "type": "operator", + "start": 6971, + "end": 6972, + "value": "-" + }, + { + "type": "number", + "start": 6972, + "end": 6990, + "value": "0.9484912744890612" + }, + { + "type": "comma", + "start": 6990, + "end": 6991, + "value": "," + }, + { + "type": "whitespace", + "start": 6991, + "end": 6999, + "value": "\n " + }, + { + "type": "number", + "start": 6999, + "end": 7017, + "value": "0.6729649846476855" + }, + { + "type": "whitespace", + "start": 7017, + "end": 7023, + "value": "\n " + }, + { + "type": "brace", + "start": 7023, + "end": 7024, + "value": "]" + }, + { + "type": "comma", + "start": 7024, + "end": 7025, + "value": "," + }, + { + "type": "whitespace", + "start": 7025, + "end": 7026, + "value": " " + }, + { + "type": "operator", + "start": 7026, + "end": 7027, + "value": "%" + }, + { + "type": "brace", + "start": 7027, + "end": 7028, + "value": ")" + }, + { + "type": "whitespace", + "start": 7028, + "end": 7031, + "value": "\n " + }, + { + "type": "operator", + "start": 7031, + "end": 7033, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7033, + "end": 7034, + "value": " " + }, + { + "type": "word", + "start": 7034, + "end": 7038, + "value": "line" + }, + { + "type": "brace", + "start": 7038, + "end": 7039, + "value": "(" + }, + { + "type": "brace", + "start": 7039, + "end": 7040, + "value": "[" + }, + { + "type": "whitespace", + "start": 7040, + "end": 7048, + "value": "\n " + }, + { + "type": "number", + "start": 7048, + "end": 7066, + "value": "0.7451758753425153" + }, + { + "type": "comma", + "start": 7066, + "end": 7067, + "value": "," + }, + { + "type": "whitespace", + "start": 7067, + "end": 7075, + "value": "\n " + }, + { + "type": "operator", + "start": 7075, + "end": 7076, + "value": "-" + }, + { + "type": "number", + "start": 7076, + "end": 7095, + "value": "0.21318737562458967" + }, + { + "type": "whitespace", + "start": 7095, + "end": 7101, + "value": "\n " + }, + { + "type": "brace", + "start": 7101, + "end": 7102, + "value": "]" + }, + { + "type": "comma", + "start": 7102, + "end": 7103, + "value": "," + }, + { + "type": "whitespace", + "start": 7103, + "end": 7104, + "value": " " + }, + { + "type": "operator", + "start": 7104, + "end": 7105, + "value": "%" + }, + { + "type": "brace", + "start": 7105, + "end": 7106, + "value": ")" + }, + { + "type": "whitespace", + "start": 7106, + "end": 7109, + "value": "\n " + }, + { + "type": "operator", + "start": 7109, + "end": 7111, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7111, + "end": 7112, + "value": " " + }, + { + "type": "word", + "start": 7112, + "end": 7116, + "value": "line" + }, + { + "type": "brace", + "start": 7116, + "end": 7117, + "value": "(" + }, + { + "type": "brace", + "start": 7117, + "end": 7118, + "value": "[" + }, + { + "type": "whitespace", + "start": 7118, + "end": 7126, + "value": "\n " + }, + { + "type": "number", + "start": 7126, + "end": 7144, + "value": "0.1873200727251887" + }, + { + "type": "comma", + "start": 7144, + "end": 7145, + "value": "," + }, + { + "type": "whitespace", + "start": 7145, + "end": 7153, + "value": "\n " + }, + { + "type": "operator", + "start": 7153, + "end": 7154, + "value": "-" + }, + { + "type": "number", + "start": 7154, + "end": 7173, + "value": "0.15961374297992448" + }, + { + "type": "whitespace", + "start": 7173, + "end": 7179, + "value": "\n " + }, + { + "type": "brace", + "start": 7179, + "end": 7180, + "value": "]" + }, + { + "type": "comma", + "start": 7180, + "end": 7181, + "value": "," + }, + { + "type": "whitespace", + "start": 7181, + "end": 7182, + "value": " " + }, + { + "type": "operator", + "start": 7182, + "end": 7183, + "value": "%" + }, + { + "type": "brace", + "start": 7183, + "end": 7184, + "value": ")" + }, + { + "type": "whitespace", + "start": 7184, + "end": 7187, + "value": "\n " + }, + { + "type": "operator", + "start": 7187, + "end": 7189, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7189, + "end": 7190, + "value": " " + }, + { + "type": "word", + "start": 7190, + "end": 7194, + "value": "line" + }, + { + "type": "brace", + "start": 7194, + "end": 7195, + "value": "(" + }, + { + "type": "brace", + "start": 7195, + "end": 7196, + "value": "[" + }, + { + "type": "whitespace", + "start": 7196, + "end": 7204, + "value": "\n " + }, + { + "type": "operator", + "start": 7204, + "end": 7205, + "value": "-" + }, + { + "type": "number", + "start": 7205, + "end": 7224, + "value": "0.05729464924537564" + }, + { + "type": "comma", + "start": 7224, + "end": 7225, + "value": "," + }, + { + "type": "whitespace", + "start": 7225, + "end": 7233, + "value": "\n " + }, + { + "type": "operator", + "start": 7233, + "end": 7234, + "value": "-" + }, + { + "type": "number", + "start": 7234, + "end": 7252, + "value": "0.5436345558508746" + }, + { + "type": "whitespace", + "start": 7252, + "end": 7258, + "value": "\n " + }, + { + "type": "brace", + "start": 7258, + "end": 7259, + "value": "]" + }, + { + "type": "comma", + "start": 7259, + "end": 7260, + "value": "," + }, + { + "type": "whitespace", + "start": 7260, + "end": 7261, + "value": " " + }, + { + "type": "operator", + "start": 7261, + "end": 7262, + "value": "%" + }, + { + "type": "brace", + "start": 7262, + "end": 7263, + "value": ")" + }, + { + "type": "whitespace", + "start": 7263, + "end": 7266, + "value": "\n " + }, + { + "type": "operator", + "start": 7266, + "end": 7268, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7268, + "end": 7269, + "value": " " + }, + { + "type": "word", + "start": 7269, + "end": 7273, + "value": "line" + }, + { + "type": "brace", + "start": 7273, + "end": 7274, + "value": "(" + }, + { + "type": "brace", + "start": 7274, + "end": 7275, + "value": "[" + }, + { + "type": "whitespace", + "start": 7275, + "end": 7283, + "value": "\n " + }, + { + "type": "operator", + "start": 7283, + "end": 7284, + "value": "-" + }, + { + "type": "number", + "start": 7284, + "end": 7303, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 7303, + "end": 7304, + "value": "," + }, + { + "type": "whitespace", + "start": 7304, + "end": 7312, + "value": "\n " + }, + { + "type": "operator", + "start": 7312, + "end": 7313, + "value": "-" + }, + { + "type": "number", + "start": 7313, + "end": 7331, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 7331, + "end": 7337, + "value": "\n " + }, + { + "type": "brace", + "start": 7337, + "end": 7338, + "value": "]" + }, + { + "type": "comma", + "start": 7338, + "end": 7339, + "value": "," + }, + { + "type": "whitespace", + "start": 7339, + "end": 7340, + "value": " " + }, + { + "type": "operator", + "start": 7340, + "end": 7341, + "value": "%" + }, + { + "type": "brace", + "start": 7341, + "end": 7342, + "value": ")" + }, + { + "type": "whitespace", + "start": 7342, + "end": 7345, + "value": "\n " + }, + { + "type": "operator", + "start": 7345, + "end": 7347, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7347, + "end": 7348, + "value": " " + }, + { + "type": "word", + "start": 7348, + "end": 7352, + "value": "line" + }, + { + "type": "brace", + "start": 7352, + "end": 7353, + "value": "(" + }, + { + "type": "brace", + "start": 7353, + "end": 7354, + "value": "[" + }, + { + "type": "whitespace", + "start": 7354, + "end": 7362, + "value": "\n " + }, + { + "type": "operator", + "start": 7362, + "end": 7363, + "value": "-" + }, + { + "type": "number", + "start": 7363, + "end": 7382, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 7382, + "end": 7383, + "value": "," + }, + { + "type": "whitespace", + "start": 7383, + "end": 7391, + "value": "\n " + }, + { + "type": "operator", + "start": 7391, + "end": 7392, + "value": "-" + }, + { + "type": "number", + "start": 7392, + "end": 7410, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 7410, + "end": 7416, + "value": "\n " + }, + { + "type": "brace", + "start": 7416, + "end": 7417, + "value": "]" + }, + { + "type": "comma", + "start": 7417, + "end": 7418, + "value": "," + }, + { + "type": "whitespace", + "start": 7418, + "end": 7419, + "value": " " + }, + { + "type": "operator", + "start": 7419, + "end": 7420, + "value": "%" + }, + { + "type": "brace", + "start": 7420, + "end": 7421, + "value": ")" + }, + { + "type": "whitespace", + "start": 7421, + "end": 7424, + "value": "\n " + }, + { + "type": "operator", + "start": 7424, + "end": 7426, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7426, + "end": 7427, + "value": " " + }, + { + "type": "word", + "start": 7427, + "end": 7431, + "value": "line" + }, + { + "type": "brace", + "start": 7431, + "end": 7432, + "value": "(" + }, + { + "type": "brace", + "start": 7432, + "end": 7433, + "value": "[" + }, + { + "type": "number", + "start": 7433, + "end": 7451, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 7451, + "end": 7452, + "value": "," + }, + { + "type": "whitespace", + "start": 7452, + "end": 7453, + "value": " " + }, + { + "type": "number", + "start": 7453, + "end": 7471, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 7471, + "end": 7472, + "value": "]" + }, + { + "type": "comma", + "start": 7472, + "end": 7473, + "value": "," + }, + { + "type": "whitespace", + "start": 7473, + "end": 7474, + "value": " " + }, + { + "type": "operator", + "start": 7474, + "end": 7475, + "value": "%" + }, + { + "type": "brace", + "start": 7475, + "end": 7476, + "value": ")" + }, + { + "type": "whitespace", + "start": 7476, + "end": 7479, + "value": "\n " + }, + { + "type": "operator", + "start": 7479, + "end": 7481, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7481, + "end": 7482, + "value": " " + }, + { + "type": "word", + "start": 7482, + "end": 7486, + "value": "line" + }, + { + "type": "brace", + "start": 7486, + "end": 7487, + "value": "(" + }, + { + "type": "brace", + "start": 7487, + "end": 7488, + "value": "[" + }, + { + "type": "whitespace", + "start": 7488, + "end": 7496, + "value": "\n " + }, + { + "type": "operator", + "start": 7496, + "end": 7497, + "value": "-" + }, + { + "type": "number", + "start": 7497, + "end": 7515, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 7515, + "end": 7516, + "value": "," + }, + { + "type": "whitespace", + "start": 7516, + "end": 7524, + "value": "\n " + }, + { + "type": "number", + "start": 7524, + "end": 7543, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 7543, + "end": 7549, + "value": "\n " + }, + { + "type": "brace", + "start": 7549, + "end": 7550, + "value": "]" + }, + { + "type": "comma", + "start": 7550, + "end": 7551, + "value": "," + }, + { + "type": "whitespace", + "start": 7551, + "end": 7552, + "value": " " + }, + { + "type": "operator", + "start": 7552, + "end": 7553, + "value": "%" + }, + { + "type": "brace", + "start": 7553, + "end": 7554, + "value": ")" + }, + { + "type": "whitespace", + "start": 7554, + "end": 7557, + "value": "\n " + }, + { + "type": "operator", + "start": 7557, + "end": 7559, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7559, + "end": 7560, + "value": " " + }, + { + "type": "word", + "start": 7560, + "end": 7564, + "value": "line" + }, + { + "type": "brace", + "start": 7564, + "end": 7565, + "value": "(" + }, + { + "type": "brace", + "start": 7565, + "end": 7566, + "value": "[" + }, + { + "type": "whitespace", + "start": 7566, + "end": 7574, + "value": "\n " + }, + { + "type": "operator", + "start": 7574, + "end": 7575, + "value": "-" + }, + { + "type": "number", + "start": 7575, + "end": 7593, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 7593, + "end": 7594, + "value": "," + }, + { + "type": "whitespace", + "start": 7594, + "end": 7602, + "value": "\n " + }, + { + "type": "number", + "start": 7602, + "end": 7620, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 7620, + "end": 7626, + "value": "\n " + }, + { + "type": "brace", + "start": 7626, + "end": 7627, + "value": "]" + }, + { + "type": "comma", + "start": 7627, + "end": 7628, + "value": "," + }, + { + "type": "whitespace", + "start": 7628, + "end": 7629, + "value": " " + }, + { + "type": "operator", + "start": 7629, + "end": 7630, + "value": "%" + }, + { + "type": "brace", + "start": 7630, + "end": 7631, + "value": ")" + }, + { + "type": "whitespace", + "start": 7631, + "end": 7634, + "value": "\n " + }, + { + "type": "operator", + "start": 7634, + "end": 7636, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7636, + "end": 7637, + "value": " " + }, + { + "type": "word", + "start": 7637, + "end": 7641, + "value": "line" + }, + { + "type": "brace", + "start": 7641, + "end": 7642, + "value": "(" + }, + { + "type": "brace", + "start": 7642, + "end": 7643, + "value": "[" + }, + { + "type": "whitespace", + "start": 7643, + "end": 7651, + "value": "\n " + }, + { + "type": "operator", + "start": 7651, + "end": 7652, + "value": "-" + }, + { + "type": "number", + "start": 7652, + "end": 7670, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 7670, + "end": 7671, + "value": "," + }, + { + "type": "whitespace", + "start": 7671, + "end": 7679, + "value": "\n " + }, + { + "type": "number", + "start": 7679, + "end": 7697, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 7697, + "end": 7703, + "value": "\n " + }, + { + "type": "brace", + "start": 7703, + "end": 7704, + "value": "]" + }, + { + "type": "comma", + "start": 7704, + "end": 7705, + "value": "," + }, + { + "type": "whitespace", + "start": 7705, + "end": 7706, + "value": " " + }, + { + "type": "operator", + "start": 7706, + "end": 7707, + "value": "%" + }, + { + "type": "brace", + "start": 7707, + "end": 7708, + "value": ")" + }, + { + "type": "whitespace", + "start": 7708, + "end": 7711, + "value": "\n " + }, + { + "type": "operator", + "start": 7711, + "end": 7713, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7713, + "end": 7714, + "value": " " + }, + { + "type": "word", + "start": 7714, + "end": 7718, + "value": "line" + }, + { + "type": "brace", + "start": 7718, + "end": 7719, + "value": "(" + }, + { + "type": "brace", + "start": 7719, + "end": 7720, + "value": "[" + }, + { + "type": "whitespace", + "start": 7720, + "end": 7728, + "value": "\n " + }, + { + "type": "operator", + "start": 7728, + "end": 7729, + "value": "-" + }, + { + "type": "number", + "start": 7729, + "end": 7747, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 7747, + "end": 7748, + "value": "," + }, + { + "type": "whitespace", + "start": 7748, + "end": 7756, + "value": "\n " + }, + { + "type": "operator", + "start": 7756, + "end": 7757, + "value": "-" + }, + { + "type": "number", + "start": 7757, + "end": 7776, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 7776, + "end": 7782, + "value": "\n " + }, + { + "type": "brace", + "start": 7782, + "end": 7783, + "value": "]" + }, + { + "type": "comma", + "start": 7783, + "end": 7784, + "value": "," + }, + { + "type": "whitespace", + "start": 7784, + "end": 7785, + "value": " " + }, + { + "type": "operator", + "start": 7785, + "end": 7786, + "value": "%" + }, + { + "type": "brace", + "start": 7786, + "end": 7787, + "value": ")" + }, + { + "type": "whitespace", + "start": 7787, + "end": 7790, + "value": "\n " + }, + { + "type": "operator", + "start": 7790, + "end": 7792, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7792, + "end": 7793, + "value": " " + }, + { + "type": "word", + "start": 7793, + "end": 7797, + "value": "line" + }, + { + "type": "brace", + "start": 7797, + "end": 7798, + "value": "(" + }, + { + "type": "brace", + "start": 7798, + "end": 7799, + "value": "[" + }, + { + "type": "whitespace", + "start": 7799, + "end": 7807, + "value": "\n " + }, + { + "type": "number", + "start": 7807, + "end": 7826, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 7826, + "end": 7827, + "value": "," + }, + { + "type": "whitespace", + "start": 7827, + "end": 7835, + "value": "\n " + }, + { + "type": "number", + "start": 7835, + "end": 7854, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 7854, + "end": 7860, + "value": "\n " + }, + { + "type": "brace", + "start": 7860, + "end": 7861, + "value": "]" + }, + { + "type": "comma", + "start": 7861, + "end": 7862, + "value": "," + }, + { + "type": "whitespace", + "start": 7862, + "end": 7863, + "value": " " + }, + { + "type": "operator", + "start": 7863, + "end": 7864, + "value": "%" + }, + { + "type": "brace", + "start": 7864, + "end": 7865, + "value": ")" + }, + { + "type": "whitespace", + "start": 7865, + "end": 7868, + "value": "\n " + }, + { + "type": "operator", + "start": 7868, + "end": 7870, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7870, + "end": 7871, + "value": " " + }, + { + "type": "word", + "start": 7871, + "end": 7875, + "value": "line" + }, + { + "type": "brace", + "start": 7875, + "end": 7876, + "value": "(" + }, + { + "type": "brace", + "start": 7876, + "end": 7877, + "value": "[" + }, + { + "type": "whitespace", + "start": 7877, + "end": 7885, + "value": "\n " + }, + { + "type": "number", + "start": 7885, + "end": 7904, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 7904, + "end": 7905, + "value": "," + }, + { + "type": "whitespace", + "start": 7905, + "end": 7913, + "value": "\n " + }, + { + "type": "number", + "start": 7913, + "end": 7932, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 7932, + "end": 7938, + "value": "\n " + }, + { + "type": "brace", + "start": 7938, + "end": 7939, + "value": "]" + }, + { + "type": "comma", + "start": 7939, + "end": 7940, + "value": "," + }, + { + "type": "whitespace", + "start": 7940, + "end": 7941, + "value": " " + }, + { + "type": "operator", + "start": 7941, + "end": 7942, + "value": "%" + }, + { + "type": "brace", + "start": 7942, + "end": 7943, + "value": ")" + }, + { + "type": "whitespace", + "start": 7943, + "end": 7946, + "value": "\n " + }, + { + "type": "operator", + "start": 7946, + "end": 7948, + "value": "|>" + }, + { + "type": "whitespace", + "start": 7948, + "end": 7949, + "value": " " + }, + { + "type": "word", + "start": 7949, + "end": 7953, + "value": "line" + }, + { + "type": "brace", + "start": 7953, + "end": 7954, + "value": "(" + }, + { + "type": "brace", + "start": 7954, + "end": 7955, + "value": "[" + }, + { + "type": "whitespace", + "start": 7955, + "end": 7963, + "value": "\n " + }, + { + "type": "operator", + "start": 7963, + "end": 7964, + "value": "-" + }, + { + "type": "number", + "start": 7964, + "end": 7983, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 7983, + "end": 7984, + "value": "," + }, + { + "type": "whitespace", + "start": 7984, + "end": 7992, + "value": "\n " + }, + { + "type": "number", + "start": 7992, + "end": 8010, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 8010, + "end": 8016, + "value": "\n " + }, + { + "type": "brace", + "start": 8016, + "end": 8017, + "value": "]" + }, + { + "type": "comma", + "start": 8017, + "end": 8018, + "value": "," + }, + { + "type": "whitespace", + "start": 8018, + "end": 8019, + "value": " " + }, + { + "type": "operator", + "start": 8019, + "end": 8020, + "value": "%" + }, + { + "type": "brace", + "start": 8020, + "end": 8021, + "value": ")" + }, + { + "type": "whitespace", + "start": 8021, + "end": 8024, + "value": "\n " + }, + { + "type": "operator", + "start": 8024, + "end": 8026, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8026, + "end": 8027, + "value": " " + }, + { + "type": "word", + "start": 8027, + "end": 8031, + "value": "line" + }, + { + "type": "brace", + "start": 8031, + "end": 8032, + "value": "(" + }, + { + "type": "brace", + "start": 8032, + "end": 8033, + "value": "[" + }, + { + "type": "whitespace", + "start": 8033, + "end": 8041, + "value": "\n " + }, + { + "type": "operator", + "start": 8041, + "end": 8042, + "value": "-" + }, + { + "type": "number", + "start": 8042, + "end": 8061, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 8061, + "end": 8062, + "value": "," + }, + { + "type": "whitespace", + "start": 8062, + "end": 8070, + "value": "\n " + }, + { + "type": "operator", + "start": 8070, + "end": 8071, + "value": "-" + }, + { + "type": "number", + "start": 8071, + "end": 8090, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 8090, + "end": 8096, + "value": "\n " + }, + { + "type": "brace", + "start": 8096, + "end": 8097, + "value": "]" + }, + { + "type": "comma", + "start": 8097, + "end": 8098, + "value": "," + }, + { + "type": "whitespace", + "start": 8098, + "end": 8099, + "value": " " + }, + { + "type": "operator", + "start": 8099, + "end": 8100, + "value": "%" + }, + { + "type": "brace", + "start": 8100, + "end": 8101, + "value": ")" + }, + { + "type": "whitespace", + "start": 8101, + "end": 8104, + "value": "\n " + }, + { + "type": "operator", + "start": 8104, + "end": 8106, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8106, + "end": 8107, + "value": " " + }, + { + "type": "word", + "start": 8107, + "end": 8111, + "value": "line" + }, + { + "type": "brace", + "start": 8111, + "end": 8112, + "value": "(" + }, + { + "type": "brace", + "start": 8112, + "end": 8113, + "value": "[" + }, + { + "type": "whitespace", + "start": 8113, + "end": 8121, + "value": "\n " + }, + { + "type": "number", + "start": 8121, + "end": 8139, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 8139, + "end": 8140, + "value": "," + }, + { + "type": "whitespace", + "start": 8140, + "end": 8148, + "value": "\n " + }, + { + "type": "operator", + "start": 8148, + "end": 8149, + "value": "-" + }, + { + "type": "number", + "start": 8149, + "end": 8168, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 8168, + "end": 8174, + "value": "\n " + }, + { + "type": "brace", + "start": 8174, + "end": 8175, + "value": "]" + }, + { + "type": "comma", + "start": 8175, + "end": 8176, + "value": "," + }, + { + "type": "whitespace", + "start": 8176, + "end": 8177, + "value": " " + }, + { + "type": "operator", + "start": 8177, + "end": 8178, + "value": "%" + }, + { + "type": "brace", + "start": 8178, + "end": 8179, + "value": ")" + }, + { + "type": "whitespace", + "start": 8179, + "end": 8182, + "value": "\n " + }, + { + "type": "operator", + "start": 8182, + "end": 8184, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8184, + "end": 8185, + "value": " " + }, + { + "type": "word", + "start": 8185, + "end": 8189, + "value": "line" + }, + { + "type": "brace", + "start": 8189, + "end": 8190, + "value": "(" + }, + { + "type": "brace", + "start": 8190, + "end": 8191, + "value": "[" + }, + { + "type": "whitespace", + "start": 8191, + "end": 8199, + "value": "\n " + }, + { + "type": "number", + "start": 8199, + "end": 8220, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 8220, + "end": 8221, + "value": "," + }, + { + "type": "whitespace", + "start": 8221, + "end": 8229, + "value": "\n " + }, + { + "type": "operator", + "start": 8229, + "end": 8230, + "value": "-" + }, + { + "type": "number", + "start": 8230, + "end": 8248, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 8248, + "end": 8254, + "value": "\n " + }, + { + "type": "brace", + "start": 8254, + "end": 8255, + "value": "]" + }, + { + "type": "comma", + "start": 8255, + "end": 8256, + "value": "," + }, + { + "type": "whitespace", + "start": 8256, + "end": 8257, + "value": " " + }, + { + "type": "operator", + "start": 8257, + "end": 8258, + "value": "%" + }, + { + "type": "brace", + "start": 8258, + "end": 8259, + "value": ")" + }, + { + "type": "whitespace", + "start": 8259, + "end": 8262, + "value": "\n " + }, + { + "type": "operator", + "start": 8262, + "end": 8264, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8264, + "end": 8265, + "value": " " + }, + { + "type": "word", + "start": 8265, + "end": 8269, + "value": "line" + }, + { + "type": "brace", + "start": 8269, + "end": 8270, + "value": "(" + }, + { + "type": "brace", + "start": 8270, + "end": 8271, + "value": "[" + }, + { + "type": "whitespace", + "start": 8271, + "end": 8279, + "value": "\n " + }, + { + "type": "number", + "start": 8279, + "end": 8297, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 8297, + "end": 8298, + "value": "," + }, + { + "type": "whitespace", + "start": 8298, + "end": 8306, + "value": "\n " + }, + { + "type": "operator", + "start": 8306, + "end": 8307, + "value": "-" + }, + { + "type": "number", + "start": 8307, + "end": 8325, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 8325, + "end": 8331, + "value": "\n " + }, + { + "type": "brace", + "start": 8331, + "end": 8332, + "value": "]" + }, + { + "type": "comma", + "start": 8332, + "end": 8333, + "value": "," + }, + { + "type": "whitespace", + "start": 8333, + "end": 8334, + "value": " " + }, + { + "type": "operator", + "start": 8334, + "end": 8335, + "value": "%" + }, + { + "type": "brace", + "start": 8335, + "end": 8336, + "value": ")" + }, + { + "type": "whitespace", + "start": 8336, + "end": 8339, + "value": "\n " + }, + { + "type": "operator", + "start": 8339, + "end": 8341, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8341, + "end": 8342, + "value": " " + }, + { + "type": "word", + "start": 8342, + "end": 8346, + "value": "line" + }, + { + "type": "brace", + "start": 8346, + "end": 8347, + "value": "(" + }, + { + "type": "brace", + "start": 8347, + "end": 8348, + "value": "[" + }, + { + "type": "whitespace", + "start": 8348, + "end": 8356, + "value": "\n " + }, + { + "type": "operator", + "start": 8356, + "end": 8357, + "value": "-" + }, + { + "type": "number", + "start": 8357, + "end": 8375, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 8375, + "end": 8376, + "value": "," + }, + { + "type": "whitespace", + "start": 8376, + "end": 8384, + "value": "\n " + }, + { + "type": "number", + "start": 8384, + "end": 8402, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 8402, + "end": 8408, + "value": "\n " + }, + { + "type": "brace", + "start": 8408, + "end": 8409, + "value": "]" + }, + { + "type": "comma", + "start": 8409, + "end": 8410, + "value": "," + }, + { + "type": "whitespace", + "start": 8410, + "end": 8411, + "value": " " + }, + { + "type": "operator", + "start": 8411, + "end": 8412, + "value": "%" + }, + { + "type": "brace", + "start": 8412, + "end": 8413, + "value": ")" + }, + { + "type": "whitespace", + "start": 8413, + "end": 8416, + "value": "\n " + }, + { + "type": "operator", + "start": 8416, + "end": 8418, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8418, + "end": 8419, + "value": " " + }, + { + "type": "word", + "start": 8419, + "end": 8423, + "value": "line" + }, + { + "type": "brace", + "start": 8423, + "end": 8424, + "value": "(" + }, + { + "type": "brace", + "start": 8424, + "end": 8425, + "value": "[" + }, + { + "type": "number", + "start": 8425, + "end": 8443, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 8443, + "end": 8444, + "value": "," + }, + { + "type": "whitespace", + "start": 8444, + "end": 8445, + "value": " " + }, + { + "type": "number", + "start": 8445, + "end": 8463, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 8463, + "end": 8464, + "value": "]" + }, + { + "type": "comma", + "start": 8464, + "end": 8465, + "value": "," + }, + { + "type": "whitespace", + "start": 8465, + "end": 8466, + "value": " " + }, + { + "type": "operator", + "start": 8466, + "end": 8467, + "value": "%" + }, + { + "type": "brace", + "start": 8467, + "end": 8468, + "value": ")" + }, + { + "type": "whitespace", + "start": 8468, + "end": 8471, + "value": "\n " + }, + { + "type": "operator", + "start": 8471, + "end": 8473, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8473, + "end": 8474, + "value": " " + }, + { + "type": "word", + "start": 8474, + "end": 8478, + "value": "line" + }, + { + "type": "brace", + "start": 8478, + "end": 8479, + "value": "(" + }, + { + "type": "brace", + "start": 8479, + "end": 8480, + "value": "[" + }, + { + "type": "whitespace", + "start": 8480, + "end": 8488, + "value": "\n " + }, + { + "type": "operator", + "start": 8488, + "end": 8489, + "value": "-" + }, + { + "type": "number", + "start": 8489, + "end": 8508, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 8508, + "end": 8509, + "value": "," + }, + { + "type": "whitespace", + "start": 8509, + "end": 8517, + "value": "\n " + }, + { + "type": "number", + "start": 8517, + "end": 8537, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 8537, + "end": 8543, + "value": "\n " + }, + { + "type": "brace", + "start": 8543, + "end": 8544, + "value": "]" + }, + { + "type": "comma", + "start": 8544, + "end": 8545, + "value": "," + }, + { + "type": "whitespace", + "start": 8545, + "end": 8546, + "value": " " + }, + { + "type": "operator", + "start": 8546, + "end": 8547, + "value": "%" + }, + { + "type": "brace", + "start": 8547, + "end": 8548, + "value": ")" + }, + { + "type": "whitespace", + "start": 8548, + "end": 8551, + "value": "\n " + }, + { + "type": "operator", + "start": 8551, + "end": 8553, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8553, + "end": 8554, + "value": " " + }, + { + "type": "word", + "start": 8554, + "end": 8558, + "value": "line" + }, + { + "type": "brace", + "start": 8558, + "end": 8559, + "value": "(" + }, + { + "type": "brace", + "start": 8559, + "end": 8560, + "value": "[" + }, + { + "type": "whitespace", + "start": 8560, + "end": 8568, + "value": "\n " + }, + { + "type": "operator", + "start": 8568, + "end": 8569, + "value": "-" + }, + { + "type": "number", + "start": 8569, + "end": 8587, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 8587, + "end": 8588, + "value": "," + }, + { + "type": "whitespace", + "start": 8588, + "end": 8596, + "value": "\n " + }, + { + "type": "operator", + "start": 8596, + "end": 8597, + "value": "-" + }, + { + "type": "number", + "start": 8597, + "end": 8616, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 8616, + "end": 8622, + "value": "\n " + }, + { + "type": "brace", + "start": 8622, + "end": 8623, + "value": "]" + }, + { + "type": "comma", + "start": 8623, + "end": 8624, + "value": "," + }, + { + "type": "whitespace", + "start": 8624, + "end": 8625, + "value": " " + }, + { + "type": "operator", + "start": 8625, + "end": 8626, + "value": "%" + }, + { + "type": "brace", + "start": 8626, + "end": 8627, + "value": ")" + }, + { + "type": "whitespace", + "start": 8627, + "end": 8630, + "value": "\n " + }, + { + "type": "operator", + "start": 8630, + "end": 8632, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8632, + "end": 8633, + "value": " " + }, + { + "type": "word", + "start": 8633, + "end": 8637, + "value": "line" + }, + { + "type": "brace", + "start": 8637, + "end": 8638, + "value": "(" + }, + { + "type": "brace", + "start": 8638, + "end": 8639, + "value": "[" + }, + { + "type": "whitespace", + "start": 8639, + "end": 8647, + "value": "\n " + }, + { + "type": "operator", + "start": 8647, + "end": 8648, + "value": "-" + }, + { + "type": "number", + "start": 8648, + "end": 8666, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 8666, + "end": 8667, + "value": "," + }, + { + "type": "whitespace", + "start": 8667, + "end": 8675, + "value": "\n " + }, + { + "type": "operator", + "start": 8675, + "end": 8676, + "value": "-" + }, + { + "type": "number", + "start": 8676, + "end": 8695, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 8695, + "end": 8701, + "value": "\n " + }, + { + "type": "brace", + "start": 8701, + "end": 8702, + "value": "]" + }, + { + "type": "comma", + "start": 8702, + "end": 8703, + "value": "," + }, + { + "type": "whitespace", + "start": 8703, + "end": 8704, + "value": " " + }, + { + "type": "operator", + "start": 8704, + "end": 8705, + "value": "%" + }, + { + "type": "brace", + "start": 8705, + "end": 8706, + "value": ")" + }, + { + "type": "whitespace", + "start": 8706, + "end": 8709, + "value": "\n " + }, + { + "type": "operator", + "start": 8709, + "end": 8711, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8711, + "end": 8712, + "value": " " + }, + { + "type": "word", + "start": 8712, + "end": 8716, + "value": "line" + }, + { + "type": "brace", + "start": 8716, + "end": 8717, + "value": "(" + }, + { + "type": "brace", + "start": 8717, + "end": 8718, + "value": "[" + }, + { + "type": "number", + "start": 8718, + "end": 8735, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 8735, + "end": 8736, + "value": "," + }, + { + "type": "whitespace", + "start": 8736, + "end": 8737, + "value": " " + }, + { + "type": "number", + "start": 8737, + "end": 8755, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 8755, + "end": 8756, + "value": "]" + }, + { + "type": "comma", + "start": 8756, + "end": 8757, + "value": "," + }, + { + "type": "whitespace", + "start": 8757, + "end": 8758, + "value": " " + }, + { + "type": "operator", + "start": 8758, + "end": 8759, + "value": "%" + }, + { + "type": "brace", + "start": 8759, + "end": 8760, + "value": ")" + }, + { + "type": "whitespace", + "start": 8760, + "end": 8763, + "value": "\n " + }, + { + "type": "operator", + "start": 8763, + "end": 8765, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8765, + "end": 8766, + "value": " " + }, + { + "type": "word", + "start": 8766, + "end": 8770, + "value": "line" + }, + { + "type": "brace", + "start": 8770, + "end": 8771, + "value": "(" + }, + { + "type": "brace", + "start": 8771, + "end": 8772, + "value": "[" + }, + { + "type": "whitespace", + "start": 8772, + "end": 8780, + "value": "\n " + }, + { + "type": "number", + "start": 8780, + "end": 8799, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 8799, + "end": 8800, + "value": "," + }, + { + "type": "whitespace", + "start": 8800, + "end": 8808, + "value": "\n " + }, + { + "type": "operator", + "start": 8808, + "end": 8809, + "value": "-" + }, + { + "type": "number", + "start": 8809, + "end": 8828, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 8828, + "end": 8834, + "value": "\n " + }, + { + "type": "brace", + "start": 8834, + "end": 8835, + "value": "]" + }, + { + "type": "comma", + "start": 8835, + "end": 8836, + "value": "," + }, + { + "type": "whitespace", + "start": 8836, + "end": 8837, + "value": " " + }, + { + "type": "operator", + "start": 8837, + "end": 8838, + "value": "%" + }, + { + "type": "brace", + "start": 8838, + "end": 8839, + "value": ")" + }, + { + "type": "whitespace", + "start": 8839, + "end": 8842, + "value": "\n " + }, + { + "type": "operator", + "start": 8842, + "end": 8844, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8844, + "end": 8845, + "value": " " + }, + { + "type": "word", + "start": 8845, + "end": 8849, + "value": "line" + }, + { + "type": "brace", + "start": 8849, + "end": 8850, + "value": "(" + }, + { + "type": "brace", + "start": 8850, + "end": 8851, + "value": "[" + }, + { + "type": "number", + "start": 8851, + "end": 8869, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 8869, + "end": 8870, + "value": "," + }, + { + "type": "whitespace", + "start": 8870, + "end": 8871, + "value": " " + }, + { + "type": "number", + "start": 8871, + "end": 8888, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 8888, + "end": 8889, + "value": "]" + }, + { + "type": "comma", + "start": 8889, + "end": 8890, + "value": "," + }, + { + "type": "whitespace", + "start": 8890, + "end": 8891, + "value": " " + }, + { + "type": "operator", + "start": 8891, + "end": 8892, + "value": "%" + }, + { + "type": "brace", + "start": 8892, + "end": 8893, + "value": ")" + }, + { + "type": "whitespace", + "start": 8893, + "end": 8896, + "value": "\n " + }, + { + "type": "operator", + "start": 8896, + "end": 8898, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8898, + "end": 8899, + "value": " " + }, + { + "type": "word", + "start": 8899, + "end": 8903, + "value": "line" + }, + { + "type": "brace", + "start": 8903, + "end": 8904, + "value": "(" + }, + { + "type": "brace", + "start": 8904, + "end": 8905, + "value": "[" + }, + { + "type": "whitespace", + "start": 8905, + "end": 8913, + "value": "\n " + }, + { + "type": "number", + "start": 8913, + "end": 8932, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 8932, + "end": 8933, + "value": "," + }, + { + "type": "whitespace", + "start": 8933, + "end": 8941, + "value": "\n " + }, + { + "type": "operator", + "start": 8941, + "end": 8942, + "value": "-" + }, + { + "type": "number", + "start": 8942, + "end": 8960, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 8960, + "end": 8966, + "value": "\n " + }, + { + "type": "brace", + "start": 8966, + "end": 8967, + "value": "]" + }, + { + "type": "comma", + "start": 8967, + "end": 8968, + "value": "," + }, + { + "type": "whitespace", + "start": 8968, + "end": 8969, + "value": " " + }, + { + "type": "operator", + "start": 8969, + "end": 8970, + "value": "%" + }, + { + "type": "brace", + "start": 8970, + "end": 8971, + "value": ")" + }, + { + "type": "whitespace", + "start": 8971, + "end": 8974, + "value": "\n " + }, + { + "type": "operator", + "start": 8974, + "end": 8976, + "value": "|>" + }, + { + "type": "whitespace", + "start": 8976, + "end": 8977, + "value": " " + }, + { + "type": "word", + "start": 8977, + "end": 8981, + "value": "line" + }, + { + "type": "brace", + "start": 8981, + "end": 8982, + "value": "(" + }, + { + "type": "brace", + "start": 8982, + "end": 8983, + "value": "[" + }, + { + "type": "number", + "start": 8983, + "end": 9001, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 9001, + "end": 9002, + "value": "," + }, + { + "type": "whitespace", + "start": 9002, + "end": 9003, + "value": " " + }, + { + "type": "number", + "start": 9003, + "end": 9021, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 9021, + "end": 9022, + "value": "]" + }, + { + "type": "comma", + "start": 9022, + "end": 9023, + "value": "," + }, + { + "type": "whitespace", + "start": 9023, + "end": 9024, + "value": " " + }, + { + "type": "operator", + "start": 9024, + "end": 9025, + "value": "%" + }, + { + "type": "brace", + "start": 9025, + "end": 9026, + "value": ")" + }, + { + "type": "whitespace", + "start": 9026, + "end": 9029, + "value": "\n " + }, + { + "type": "operator", + "start": 9029, + "end": 9031, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9031, + "end": 9032, + "value": " " + }, + { + "type": "word", + "start": 9032, + "end": 9036, + "value": "line" + }, + { + "type": "brace", + "start": 9036, + "end": 9037, + "value": "(" + }, + { + "type": "brace", + "start": 9037, + "end": 9038, + "value": "[" + }, + { + "type": "whitespace", + "start": 9038, + "end": 9046, + "value": "\n " + }, + { + "type": "number", + "start": 9046, + "end": 9064, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 9064, + "end": 9065, + "value": "," + }, + { + "type": "whitespace", + "start": 9065, + "end": 9073, + "value": "\n " + }, + { + "type": "number", + "start": 9073, + "end": 9092, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 9092, + "end": 9098, + "value": "\n " + }, + { + "type": "brace", + "start": 9098, + "end": 9099, + "value": "]" + }, + { + "type": "comma", + "start": 9099, + "end": 9100, + "value": "," + }, + { + "type": "whitespace", + "start": 9100, + "end": 9101, + "value": " " + }, + { + "type": "operator", + "start": 9101, + "end": 9102, + "value": "%" + }, + { + "type": "brace", + "start": 9102, + "end": 9103, + "value": ")" + }, + { + "type": "whitespace", + "start": 9103, + "end": 9106, + "value": "\n " + }, + { + "type": "operator", + "start": 9106, + "end": 9108, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9108, + "end": 9109, + "value": " " + }, + { + "type": "word", + "start": 9109, + "end": 9113, + "value": "line" + }, + { + "type": "brace", + "start": 9113, + "end": 9114, + "value": "(" + }, + { + "type": "brace", + "start": 9114, + "end": 9115, + "value": "[" + }, + { + "type": "number", + "start": 9115, + "end": 9133, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 9133, + "end": 9134, + "value": "," + }, + { + "type": "whitespace", + "start": 9134, + "end": 9135, + "value": " " + }, + { + "type": "number", + "start": 9135, + "end": 9153, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 9153, + "end": 9154, + "value": "]" + }, + { + "type": "comma", + "start": 9154, + "end": 9155, + "value": "," + }, + { + "type": "whitespace", + "start": 9155, + "end": 9156, + "value": " " + }, + { + "type": "operator", + "start": 9156, + "end": 9157, + "value": "%" + }, + { + "type": "brace", + "start": 9157, + "end": 9158, + "value": ")" + }, + { + "type": "whitespace", + "start": 9158, + "end": 9161, + "value": "\n " + }, + { + "type": "operator", + "start": 9161, + "end": 9163, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9163, + "end": 9164, + "value": " " + }, + { + "type": "word", + "start": 9164, + "end": 9168, + "value": "line" + }, + { + "type": "brace", + "start": 9168, + "end": 9169, + "value": "(" + }, + { + "type": "brace", + "start": 9169, + "end": 9170, + "value": "[" + }, + { + "type": "whitespace", + "start": 9170, + "end": 9178, + "value": "\n " + }, + { + "type": "operator", + "start": 9178, + "end": 9179, + "value": "-" + }, + { + "type": "number", + "start": 9179, + "end": 9198, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 9198, + "end": 9199, + "value": "," + }, + { + "type": "whitespace", + "start": 9199, + "end": 9207, + "value": "\n " + }, + { + "type": "operator", + "start": 9207, + "end": 9208, + "value": "-" + }, + { + "type": "number", + "start": 9208, + "end": 9226, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 9226, + "end": 9232, + "value": "\n " + }, + { + "type": "brace", + "start": 9232, + "end": 9233, + "value": "]" + }, + { + "type": "comma", + "start": 9233, + "end": 9234, + "value": "," + }, + { + "type": "whitespace", + "start": 9234, + "end": 9235, + "value": " " + }, + { + "type": "operator", + "start": 9235, + "end": 9236, + "value": "%" + }, + { + "type": "brace", + "start": 9236, + "end": 9237, + "value": ")" + }, + { + "type": "whitespace", + "start": 9237, + "end": 9240, + "value": "\n " + }, + { + "type": "operator", + "start": 9240, + "end": 9242, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9242, + "end": 9243, + "value": " " + }, + { + "type": "word", + "start": 9243, + "end": 9247, + "value": "line" + }, + { + "type": "brace", + "start": 9247, + "end": 9248, + "value": "(" + }, + { + "type": "brace", + "start": 9248, + "end": 9249, + "value": "[" + }, + { + "type": "whitespace", + "start": 9249, + "end": 9257, + "value": "\n " + }, + { + "type": "number", + "start": 9257, + "end": 9275, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 9275, + "end": 9276, + "value": "," + }, + { + "type": "whitespace", + "start": 9276, + "end": 9284, + "value": "\n " + }, + { + "type": "operator", + "start": 9284, + "end": 9285, + "value": "-" + }, + { + "type": "number", + "start": 9285, + "end": 9303, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 9303, + "end": 9309, + "value": "\n " + }, + { + "type": "brace", + "start": 9309, + "end": 9310, + "value": "]" + }, + { + "type": "comma", + "start": 9310, + "end": 9311, + "value": "," + }, + { + "type": "whitespace", + "start": 9311, + "end": 9312, + "value": " " + }, + { + "type": "operator", + "start": 9312, + "end": 9313, + "value": "%" + }, + { + "type": "brace", + "start": 9313, + "end": 9314, + "value": ")" + }, + { + "type": "whitespace", + "start": 9314, + "end": 9317, + "value": "\n " + }, + { + "type": "operator", + "start": 9317, + "end": 9319, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9319, + "end": 9320, + "value": " " + }, + { + "type": "word", + "start": 9320, + "end": 9324, + "value": "line" + }, + { + "type": "brace", + "start": 9324, + "end": 9325, + "value": "(" + }, + { + "type": "brace", + "start": 9325, + "end": 9326, + "value": "[" + }, + { + "type": "whitespace", + "start": 9326, + "end": 9334, + "value": "\n " + }, + { + "type": "operator", + "start": 9334, + "end": 9335, + "value": "-" + }, + { + "type": "number", + "start": 9335, + "end": 9353, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 9353, + "end": 9354, + "value": "," + }, + { + "type": "whitespace", + "start": 9354, + "end": 9362, + "value": "\n " + }, + { + "type": "operator", + "start": 9362, + "end": 9363, + "value": "-" + }, + { + "type": "number", + "start": 9363, + "end": 9381, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 9381, + "end": 9387, + "value": "\n " + }, + { + "type": "brace", + "start": 9387, + "end": 9388, + "value": "]" + }, + { + "type": "comma", + "start": 9388, + "end": 9389, + "value": "," + }, + { + "type": "whitespace", + "start": 9389, + "end": 9390, + "value": " " + }, + { + "type": "operator", + "start": 9390, + "end": 9391, + "value": "%" + }, + { + "type": "brace", + "start": 9391, + "end": 9392, + "value": ")" + }, + { + "type": "whitespace", + "start": 9392, + "end": 9395, + "value": "\n " + }, + { + "type": "operator", + "start": 9395, + "end": 9397, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9397, + "end": 9398, + "value": " " + }, + { + "type": "word", + "start": 9398, + "end": 9402, + "value": "line" + }, + { + "type": "brace", + "start": 9402, + "end": 9403, + "value": "(" + }, + { + "type": "brace", + "start": 9403, + "end": 9404, + "value": "[" + }, + { + "type": "whitespace", + "start": 9404, + "end": 9412, + "value": "\n " + }, + { + "type": "number", + "start": 9412, + "end": 9432, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 9432, + "end": 9433, + "value": "," + }, + { + "type": "whitespace", + "start": 9433, + "end": 9441, + "value": "\n " + }, + { + "type": "operator", + "start": 9441, + "end": 9442, + "value": "-" + }, + { + "type": "number", + "start": 9442, + "end": 9461, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 9461, + "end": 9467, + "value": "\n " + }, + { + "type": "brace", + "start": 9467, + "end": 9468, + "value": "]" + }, + { + "type": "comma", + "start": 9468, + "end": 9469, + "value": "," + }, + { + "type": "whitespace", + "start": 9469, + "end": 9470, + "value": " " + }, + { + "type": "operator", + "start": 9470, + "end": 9471, + "value": "%" + }, + { + "type": "brace", + "start": 9471, + "end": 9472, + "value": ")" + }, + { + "type": "whitespace", + "start": 9472, + "end": 9475, + "value": "\n " + }, + { + "type": "operator", + "start": 9475, + "end": 9477, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9477, + "end": 9478, + "value": " " + }, + { + "type": "word", + "start": 9478, + "end": 9482, + "value": "line" + }, + { + "type": "brace", + "start": 9482, + "end": 9483, + "value": "(" + }, + { + "type": "brace", + "start": 9483, + "end": 9484, + "value": "[" + }, + { + "type": "whitespace", + "start": 9484, + "end": 9492, + "value": "\n " + }, + { + "type": "number", + "start": 9492, + "end": 9511, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 9511, + "end": 9512, + "value": "," + }, + { + "type": "whitespace", + "start": 9512, + "end": 9520, + "value": "\n " + }, + { + "type": "operator", + "start": 9520, + "end": 9521, + "value": "-" + }, + { + "type": "number", + "start": 9521, + "end": 9540, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 9540, + "end": 9546, + "value": "\n " + }, + { + "type": "brace", + "start": 9546, + "end": 9547, + "value": "]" + }, + { + "type": "comma", + "start": 9547, + "end": 9548, + "value": "," + }, + { + "type": "whitespace", + "start": 9548, + "end": 9549, + "value": " " + }, + { + "type": "operator", + "start": 9549, + "end": 9550, + "value": "%" + }, + { + "type": "brace", + "start": 9550, + "end": 9551, + "value": ")" + }, + { + "type": "whitespace", + "start": 9551, + "end": 9554, + "value": "\n " + }, + { + "type": "operator", + "start": 9554, + "end": 9556, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9556, + "end": 9557, + "value": " " + }, + { + "type": "word", + "start": 9557, + "end": 9561, + "value": "line" + }, + { + "type": "brace", + "start": 9561, + "end": 9562, + "value": "(" + }, + { + "type": "brace", + "start": 9562, + "end": 9563, + "value": "[" + }, + { + "type": "whitespace", + "start": 9563, + "end": 9571, + "value": "\n " + }, + { + "type": "number", + "start": 9571, + "end": 9589, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 9589, + "end": 9590, + "value": "," + }, + { + "type": "whitespace", + "start": 9590, + "end": 9598, + "value": "\n " + }, + { + "type": "operator", + "start": 9598, + "end": 9599, + "value": "-" + }, + { + "type": "number", + "start": 9599, + "end": 9618, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 9618, + "end": 9624, + "value": "\n " + }, + { + "type": "brace", + "start": 9624, + "end": 9625, + "value": "]" + }, + { + "type": "comma", + "start": 9625, + "end": 9626, + "value": "," + }, + { + "type": "whitespace", + "start": 9626, + "end": 9627, + "value": " " + }, + { + "type": "operator", + "start": 9627, + "end": 9628, + "value": "%" + }, + { + "type": "brace", + "start": 9628, + "end": 9629, + "value": ")" + }, + { + "type": "whitespace", + "start": 9629, + "end": 9632, + "value": "\n " + }, + { + "type": "operator", + "start": 9632, + "end": 9634, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9634, + "end": 9635, + "value": " " + }, + { + "type": "word", + "start": 9635, + "end": 9639, + "value": "line" + }, + { + "type": "brace", + "start": 9639, + "end": 9640, + "value": "(" + }, + { + "type": "brace", + "start": 9640, + "end": 9641, + "value": "[" + }, + { + "type": "whitespace", + "start": 9641, + "end": 9649, + "value": "\n " + }, + { + "type": "operator", + "start": 9649, + "end": 9650, + "value": "-" + }, + { + "type": "number", + "start": 9650, + "end": 9668, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 9668, + "end": 9669, + "value": "," + }, + { + "type": "whitespace", + "start": 9669, + "end": 9677, + "value": "\n " + }, + { + "type": "operator", + "start": 9677, + "end": 9678, + "value": "-" + }, + { + "type": "number", + "start": 9678, + "end": 9696, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 9696, + "end": 9702, + "value": "\n " + }, + { + "type": "brace", + "start": 9702, + "end": 9703, + "value": "]" + }, + { + "type": "comma", + "start": 9703, + "end": 9704, + "value": "," + }, + { + "type": "whitespace", + "start": 9704, + "end": 9705, + "value": " " + }, + { + "type": "operator", + "start": 9705, + "end": 9706, + "value": "%" + }, + { + "type": "brace", + "start": 9706, + "end": 9707, + "value": ")" + }, + { + "type": "whitespace", + "start": 9707, + "end": 9710, + "value": "\n " + }, + { + "type": "operator", + "start": 9710, + "end": 9712, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9712, + "end": 9713, + "value": " " + }, + { + "type": "word", + "start": 9713, + "end": 9717, + "value": "line" + }, + { + "type": "brace", + "start": 9717, + "end": 9718, + "value": "(" + }, + { + "type": "brace", + "start": 9718, + "end": 9719, + "value": "[" + }, + { + "type": "number", + "start": 9719, + "end": 9737, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 9737, + "end": 9738, + "value": "," + }, + { + "type": "whitespace", + "start": 9738, + "end": 9739, + "value": " " + }, + { + "type": "number", + "start": 9739, + "end": 9757, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 9757, + "end": 9758, + "value": "]" + }, + { + "type": "comma", + "start": 9758, + "end": 9759, + "value": "," + }, + { + "type": "whitespace", + "start": 9759, + "end": 9760, + "value": " " + }, + { + "type": "operator", + "start": 9760, + "end": 9761, + "value": "%" + }, + { + "type": "brace", + "start": 9761, + "end": 9762, + "value": ")" + }, + { + "type": "whitespace", + "start": 9762, + "end": 9765, + "value": "\n " + }, + { + "type": "operator", + "start": 9765, + "end": 9767, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9767, + "end": 9768, + "value": " " + }, + { + "type": "word", + "start": 9768, + "end": 9772, + "value": "line" + }, + { + "type": "brace", + "start": 9772, + "end": 9773, + "value": "(" + }, + { + "type": "brace", + "start": 9773, + "end": 9774, + "value": "[" + }, + { + "type": "whitespace", + "start": 9774, + "end": 9782, + "value": "\n " + }, + { + "type": "number", + "start": 9782, + "end": 9800, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 9800, + "end": 9801, + "value": "," + }, + { + "type": "whitespace", + "start": 9801, + "end": 9809, + "value": "\n " + }, + { + "type": "number", + "start": 9809, + "end": 9828, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 9828, + "end": 9834, + "value": "\n " + }, + { + "type": "brace", + "start": 9834, + "end": 9835, + "value": "]" + }, + { + "type": "comma", + "start": 9835, + "end": 9836, + "value": "," + }, + { + "type": "whitespace", + "start": 9836, + "end": 9837, + "value": " " + }, + { + "type": "operator", + "start": 9837, + "end": 9838, + "value": "%" + }, + { + "type": "brace", + "start": 9838, + "end": 9839, + "value": ")" + }, + { + "type": "whitespace", + "start": 9839, + "end": 9842, + "value": "\n " + }, + { + "type": "operator", + "start": 9842, + "end": 9844, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9844, + "end": 9845, + "value": " " + }, + { + "type": "word", + "start": 9845, + "end": 9849, + "value": "line" + }, + { + "type": "brace", + "start": 9849, + "end": 9850, + "value": "(" + }, + { + "type": "brace", + "start": 9850, + "end": 9851, + "value": "[" + }, + { + "type": "whitespace", + "start": 9851, + "end": 9859, + "value": "\n " + }, + { + "type": "operator", + "start": 9859, + "end": 9860, + "value": "-" + }, + { + "type": "number", + "start": 9860, + "end": 9879, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 9879, + "end": 9880, + "value": "," + }, + { + "type": "whitespace", + "start": 9880, + "end": 9888, + "value": "\n " + }, + { + "type": "number", + "start": 9888, + "end": 9906, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 9906, + "end": 9912, + "value": "\n " + }, + { + "type": "brace", + "start": 9912, + "end": 9913, + "value": "]" + }, + { + "type": "comma", + "start": 9913, + "end": 9914, + "value": "," + }, + { + "type": "whitespace", + "start": 9914, + "end": 9915, + "value": " " + }, + { + "type": "operator", + "start": 9915, + "end": 9916, + "value": "%" + }, + { + "type": "brace", + "start": 9916, + "end": 9917, + "value": ")" + }, + { + "type": "whitespace", + "start": 9917, + "end": 9920, + "value": "\n " + }, + { + "type": "operator", + "start": 9920, + "end": 9922, + "value": "|>" + }, + { + "type": "whitespace", + "start": 9922, + "end": 9923, + "value": " " + }, + { + "type": "word", + "start": 9923, + "end": 9927, + "value": "line" + }, + { + "type": "brace", + "start": 9927, + "end": 9928, + "value": "(" + }, + { + "type": "brace", + "start": 9928, + "end": 9929, + "value": "[" + }, + { + "type": "whitespace", + "start": 9929, + "end": 9937, + "value": "\n " + }, + { + "type": "operator", + "start": 9937, + "end": 9938, + "value": "-" + }, + { + "type": "number", + "start": 9938, + "end": 9957, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 9957, + "end": 9958, + "value": "," + }, + { + "type": "whitespace", + "start": 9958, + "end": 9966, + "value": "\n " + }, + { + "type": "operator", + "start": 9966, + "end": 9967, + "value": "-" + }, + { + "type": "number", + "start": 9967, + "end": 9986, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 9986, + "end": 9992, + "value": "\n " + }, + { + "type": "brace", + "start": 9992, + "end": 9993, + "value": "]" + }, + { + "type": "comma", + "start": 9993, + "end": 9994, + "value": "," + }, + { + "type": "whitespace", + "start": 9994, + "end": 9995, + "value": " " + }, + { + "type": "operator", + "start": 9995, + "end": 9996, + "value": "%" + }, + { + "type": "brace", + "start": 9996, + "end": 9997, + "value": ")" + }, + { + "type": "whitespace", + "start": 9997, + "end": 10000, + "value": "\n " + }, + { + "type": "operator", + "start": 10000, + "end": 10002, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10002, + "end": 10003, + "value": " " + }, + { + "type": "word", + "start": 10003, + "end": 10007, + "value": "line" + }, + { + "type": "brace", + "start": 10007, + "end": 10008, + "value": "(" + }, + { + "type": "brace", + "start": 10008, + "end": 10009, + "value": "[" + }, + { + "type": "whitespace", + "start": 10009, + "end": 10017, + "value": "\n " + }, + { + "type": "number", + "start": 10017, + "end": 10036, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 10036, + "end": 10037, + "value": "," + }, + { + "type": "whitespace", + "start": 10037, + "end": 10045, + "value": "\n " + }, + { + "type": "operator", + "start": 10045, + "end": 10046, + "value": "-" + }, + { + "type": "number", + "start": 10046, + "end": 10064, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 10064, + "end": 10070, + "value": "\n " + }, + { + "type": "brace", + "start": 10070, + "end": 10071, + "value": "]" + }, + { + "type": "comma", + "start": 10071, + "end": 10072, + "value": "," + }, + { + "type": "whitespace", + "start": 10072, + "end": 10073, + "value": " " + }, + { + "type": "operator", + "start": 10073, + "end": 10074, + "value": "%" + }, + { + "type": "brace", + "start": 10074, + "end": 10075, + "value": ")" + }, + { + "type": "whitespace", + "start": 10075, + "end": 10078, + "value": "\n " + }, + { + "type": "operator", + "start": 10078, + "end": 10080, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10080, + "end": 10081, + "value": " " + }, + { + "type": "word", + "start": 10081, + "end": 10085, + "value": "line" + }, + { + "type": "brace", + "start": 10085, + "end": 10086, + "value": "(" + }, + { + "type": "brace", + "start": 10086, + "end": 10087, + "value": "[" + }, + { + "type": "whitespace", + "start": 10087, + "end": 10095, + "value": "\n " + }, + { + "type": "operator", + "start": 10095, + "end": 10096, + "value": "-" + }, + { + "type": "number", + "start": 10096, + "end": 10114, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 10114, + "end": 10115, + "value": "," + }, + { + "type": "whitespace", + "start": 10115, + "end": 10123, + "value": "\n " + }, + { + "type": "number", + "start": 10123, + "end": 10142, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 10142, + "end": 10148, + "value": "\n " + }, + { + "type": "brace", + "start": 10148, + "end": 10149, + "value": "]" + }, + { + "type": "comma", + "start": 10149, + "end": 10150, + "value": "," + }, + { + "type": "whitespace", + "start": 10150, + "end": 10151, + "value": " " + }, + { + "type": "operator", + "start": 10151, + "end": 10152, + "value": "%" + }, + { + "type": "brace", + "start": 10152, + "end": 10153, + "value": ")" + }, + { + "type": "whitespace", + "start": 10153, + "end": 10156, + "value": "\n " + }, + { + "type": "operator", + "start": 10156, + "end": 10158, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10158, + "end": 10159, + "value": " " + }, + { + "type": "word", + "start": 10159, + "end": 10163, + "value": "line" + }, + { + "type": "brace", + "start": 10163, + "end": 10164, + "value": "(" + }, + { + "type": "brace", + "start": 10164, + "end": 10165, + "value": "[" + }, + { + "type": "number", + "start": 10165, + "end": 10183, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 10183, + "end": 10184, + "value": "," + }, + { + "type": "whitespace", + "start": 10184, + "end": 10185, + "value": " " + }, + { + "type": "number", + "start": 10185, + "end": 10203, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 10203, + "end": 10204, + "value": "]" + }, + { + "type": "comma", + "start": 10204, + "end": 10205, + "value": "," + }, + { + "type": "whitespace", + "start": 10205, + "end": 10206, + "value": " " + }, + { + "type": "operator", + "start": 10206, + "end": 10207, + "value": "%" + }, + { + "type": "brace", + "start": 10207, + "end": 10208, + "value": ")" + }, + { + "type": "whitespace", + "start": 10208, + "end": 10211, + "value": "\n " + }, + { + "type": "operator", + "start": 10211, + "end": 10213, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10213, + "end": 10214, + "value": " " + }, + { + "type": "word", + "start": 10214, + "end": 10218, + "value": "line" + }, + { + "type": "brace", + "start": 10218, + "end": 10219, + "value": "(" + }, + { + "type": "brace", + "start": 10219, + "end": 10220, + "value": "[" + }, + { + "type": "whitespace", + "start": 10220, + "end": 10228, + "value": "\n " + }, + { + "type": "operator", + "start": 10228, + "end": 10229, + "value": "-" + }, + { + "type": "number", + "start": 10229, + "end": 10247, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 10247, + "end": 10248, + "value": "," + }, + { + "type": "whitespace", + "start": 10248, + "end": 10256, + "value": "\n " + }, + { + "type": "operator", + "start": 10256, + "end": 10257, + "value": "-" + }, + { + "type": "number", + "start": 10257, + "end": 10276, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 10276, + "end": 10282, + "value": "\n " + }, + { + "type": "brace", + "start": 10282, + "end": 10283, + "value": "]" + }, + { + "type": "comma", + "start": 10283, + "end": 10284, + "value": "," + }, + { + "type": "whitespace", + "start": 10284, + "end": 10285, + "value": " " + }, + { + "type": "operator", + "start": 10285, + "end": 10286, + "value": "%" + }, + { + "type": "brace", + "start": 10286, + "end": 10287, + "value": ")" + }, + { + "type": "whitespace", + "start": 10287, + "end": 10290, + "value": "\n " + }, + { + "type": "operator", + "start": 10290, + "end": 10292, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10292, + "end": 10293, + "value": " " + }, + { + "type": "word", + "start": 10293, + "end": 10297, + "value": "line" + }, + { + "type": "brace", + "start": 10297, + "end": 10298, + "value": "(" + }, + { + "type": "brace", + "start": 10298, + "end": 10299, + "value": "[" + }, + { + "type": "whitespace", + "start": 10299, + "end": 10307, + "value": "\n " + }, + { + "type": "number", + "start": 10307, + "end": 10325, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 10325, + "end": 10326, + "value": "," + }, + { + "type": "whitespace", + "start": 10326, + "end": 10334, + "value": "\n " + }, + { + "type": "operator", + "start": 10334, + "end": 10335, + "value": "-" + }, + { + "type": "number", + "start": 10335, + "end": 10353, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 10353, + "end": 10359, + "value": "\n " + }, + { + "type": "brace", + "start": 10359, + "end": 10360, + "value": "]" + }, + { + "type": "comma", + "start": 10360, + "end": 10361, + "value": "," + }, + { + "type": "whitespace", + "start": 10361, + "end": 10362, + "value": " " + }, + { + "type": "operator", + "start": 10362, + "end": 10363, + "value": "%" + }, + { + "type": "brace", + "start": 10363, + "end": 10364, + "value": ")" + }, + { + "type": "whitespace", + "start": 10364, + "end": 10367, + "value": "\n " + }, + { + "type": "operator", + "start": 10367, + "end": 10369, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10369, + "end": 10370, + "value": " " + }, + { + "type": "word", + "start": 10370, + "end": 10374, + "value": "line" + }, + { + "type": "brace", + "start": 10374, + "end": 10375, + "value": "(" + }, + { + "type": "brace", + "start": 10375, + "end": 10376, + "value": "[" + }, + { + "type": "whitespace", + "start": 10376, + "end": 10384, + "value": "\n " + }, + { + "type": "number", + "start": 10384, + "end": 10402, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 10402, + "end": 10403, + "value": "," + }, + { + "type": "whitespace", + "start": 10403, + "end": 10411, + "value": "\n " + }, + { + "type": "operator", + "start": 10411, + "end": 10412, + "value": "-" + }, + { + "type": "number", + "start": 10412, + "end": 10430, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 10430, + "end": 10436, + "value": "\n " + }, + { + "type": "brace", + "start": 10436, + "end": 10437, + "value": "]" + }, + { + "type": "comma", + "start": 10437, + "end": 10438, + "value": "," + }, + { + "type": "whitespace", + "start": 10438, + "end": 10439, + "value": " " + }, + { + "type": "operator", + "start": 10439, + "end": 10440, + "value": "%" + }, + { + "type": "brace", + "start": 10440, + "end": 10441, + "value": ")" + }, + { + "type": "whitespace", + "start": 10441, + "end": 10444, + "value": "\n " + }, + { + "type": "operator", + "start": 10444, + "end": 10446, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10446, + "end": 10447, + "value": " " + }, + { + "type": "word", + "start": 10447, + "end": 10451, + "value": "line" + }, + { + "type": "brace", + "start": 10451, + "end": 10452, + "value": "(" + }, + { + "type": "brace", + "start": 10452, + "end": 10453, + "value": "[" + }, + { + "type": "number", + "start": 10453, + "end": 10471, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 10471, + "end": 10472, + "value": "," + }, + { + "type": "whitespace", + "start": 10472, + "end": 10473, + "value": " " + }, + { + "type": "number", + "start": 10473, + "end": 10491, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 10491, + "end": 10492, + "value": "]" + }, + { + "type": "comma", + "start": 10492, + "end": 10493, + "value": "," + }, + { + "type": "whitespace", + "start": 10493, + "end": 10494, + "value": " " + }, + { + "type": "operator", + "start": 10494, + "end": 10495, + "value": "%" + }, + { + "type": "brace", + "start": 10495, + "end": 10496, + "value": ")" + }, + { + "type": "whitespace", + "start": 10496, + "end": 10499, + "value": "\n " + }, + { + "type": "operator", + "start": 10499, + "end": 10501, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10501, + "end": 10502, + "value": " " + }, + { + "type": "word", + "start": 10502, + "end": 10506, + "value": "line" + }, + { + "type": "brace", + "start": 10506, + "end": 10507, + "value": "(" + }, + { + "type": "brace", + "start": 10507, + "end": 10508, + "value": "[" + }, + { + "type": "whitespace", + "start": 10508, + "end": 10516, + "value": "\n " + }, + { + "type": "operator", + "start": 10516, + "end": 10517, + "value": "-" + }, + { + "type": "number", + "start": 10517, + "end": 10535, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 10535, + "end": 10536, + "value": "," + }, + { + "type": "whitespace", + "start": 10536, + "end": 10544, + "value": "\n " + }, + { + "type": "number", + "start": 10544, + "end": 10562, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 10562, + "end": 10568, + "value": "\n " + }, + { + "type": "brace", + "start": 10568, + "end": 10569, + "value": "]" + }, + { + "type": "comma", + "start": 10569, + "end": 10570, + "value": "," + }, + { + "type": "whitespace", + "start": 10570, + "end": 10571, + "value": " " + }, + { + "type": "operator", + "start": 10571, + "end": 10572, + "value": "%" + }, + { + "type": "brace", + "start": 10572, + "end": 10573, + "value": ")" + }, + { + "type": "whitespace", + "start": 10573, + "end": 10576, + "value": "\n " + }, + { + "type": "operator", + "start": 10576, + "end": 10578, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10578, + "end": 10579, + "value": " " + }, + { + "type": "word", + "start": 10579, + "end": 10583, + "value": "line" + }, + { + "type": "brace", + "start": 10583, + "end": 10584, + "value": "(" + }, + { + "type": "brace", + "start": 10584, + "end": 10585, + "value": "[" + }, + { + "type": "number", + "start": 10585, + "end": 10603, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 10603, + "end": 10604, + "value": "," + }, + { + "type": "whitespace", + "start": 10604, + "end": 10605, + "value": " " + }, + { + "type": "number", + "start": 10605, + "end": 10623, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 10623, + "end": 10624, + "value": "]" + }, + { + "type": "comma", + "start": 10624, + "end": 10625, + "value": "," + }, + { + "type": "whitespace", + "start": 10625, + "end": 10626, + "value": " " + }, + { + "type": "operator", + "start": 10626, + "end": 10627, + "value": "%" + }, + { + "type": "brace", + "start": 10627, + "end": 10628, + "value": ")" + }, + { + "type": "whitespace", + "start": 10628, + "end": 10631, + "value": "\n " + }, + { + "type": "operator", + "start": 10631, + "end": 10633, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10633, + "end": 10634, + "value": " " + }, + { + "type": "word", + "start": 10634, + "end": 10638, + "value": "line" + }, + { + "type": "brace", + "start": 10638, + "end": 10639, + "value": "(" + }, + { + "type": "brace", + "start": 10639, + "end": 10640, + "value": "[" + }, + { + "type": "whitespace", + "start": 10640, + "end": 10648, + "value": "\n " + }, + { + "type": "number", + "start": 10648, + "end": 10666, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 10666, + "end": 10667, + "value": "," + }, + { + "type": "whitespace", + "start": 10667, + "end": 10675, + "value": "\n " + }, + { + "type": "number", + "start": 10675, + "end": 10694, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 10694, + "end": 10700, + "value": "\n " + }, + { + "type": "brace", + "start": 10700, + "end": 10701, + "value": "]" + }, + { + "type": "comma", + "start": 10701, + "end": 10702, + "value": "," + }, + { + "type": "whitespace", + "start": 10702, + "end": 10703, + "value": " " + }, + { + "type": "operator", + "start": 10703, + "end": 10704, + "value": "%" + }, + { + "type": "brace", + "start": 10704, + "end": 10705, + "value": ")" + }, + { + "type": "whitespace", + "start": 10705, + "end": 10708, + "value": "\n " + }, + { + "type": "operator", + "start": 10708, + "end": 10710, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10710, + "end": 10711, + "value": " " + }, + { + "type": "word", + "start": 10711, + "end": 10715, + "value": "line" + }, + { + "type": "brace", + "start": 10715, + "end": 10716, + "value": "(" + }, + { + "type": "brace", + "start": 10716, + "end": 10717, + "value": "[" + }, + { + "type": "whitespace", + "start": 10717, + "end": 10725, + "value": "\n " + }, + { + "type": "operator", + "start": 10725, + "end": 10726, + "value": "-" + }, + { + "type": "number", + "start": 10726, + "end": 10744, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 10744, + "end": 10745, + "value": "," + }, + { + "type": "whitespace", + "start": 10745, + "end": 10753, + "value": "\n " + }, + { + "type": "operator", + "start": 10753, + "end": 10754, + "value": "-" + }, + { + "type": "number", + "start": 10754, + "end": 10771, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 10771, + "end": 10777, + "value": "\n " + }, + { + "type": "brace", + "start": 10777, + "end": 10778, + "value": "]" + }, + { + "type": "comma", + "start": 10778, + "end": 10779, + "value": "," + }, + { + "type": "whitespace", + "start": 10779, + "end": 10780, + "value": " " + }, + { + "type": "operator", + "start": 10780, + "end": 10781, + "value": "%" + }, + { + "type": "brace", + "start": 10781, + "end": 10782, + "value": ")" + }, + { + "type": "whitespace", + "start": 10782, + "end": 10785, + "value": "\n " + }, + { + "type": "operator", + "start": 10785, + "end": 10787, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10787, + "end": 10788, + "value": " " + }, + { + "type": "word", + "start": 10788, + "end": 10792, + "value": "line" + }, + { + "type": "brace", + "start": 10792, + "end": 10793, + "value": "(" + }, + { + "type": "brace", + "start": 10793, + "end": 10794, + "value": "[" + }, + { + "type": "whitespace", + "start": 10794, + "end": 10802, + "value": "\n " + }, + { + "type": "number", + "start": 10802, + "end": 10820, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 10820, + "end": 10821, + "value": "," + }, + { + "type": "whitespace", + "start": 10821, + "end": 10829, + "value": "\n " + }, + { + "type": "operator", + "start": 10829, + "end": 10830, + "value": "-" + }, + { + "type": "number", + "start": 10830, + "end": 10849, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 10849, + "end": 10855, + "value": "\n " + }, + { + "type": "brace", + "start": 10855, + "end": 10856, + "value": "]" + }, + { + "type": "comma", + "start": 10856, + "end": 10857, + "value": "," + }, + { + "type": "whitespace", + "start": 10857, + "end": 10858, + "value": " " + }, + { + "type": "operator", + "start": 10858, + "end": 10859, + "value": "%" + }, + { + "type": "brace", + "start": 10859, + "end": 10860, + "value": ")" + }, + { + "type": "whitespace", + "start": 10860, + "end": 10863, + "value": "\n " + }, + { + "type": "operator", + "start": 10863, + "end": 10865, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10865, + "end": 10866, + "value": " " + }, + { + "type": "word", + "start": 10866, + "end": 10870, + "value": "line" + }, + { + "type": "brace", + "start": 10870, + "end": 10871, + "value": "(" + }, + { + "type": "brace", + "start": 10871, + "end": 10872, + "value": "[" + }, + { + "type": "whitespace", + "start": 10872, + "end": 10880, + "value": "\n " + }, + { + "type": "operator", + "start": 10880, + "end": 10881, + "value": "-" + }, + { + "type": "number", + "start": 10881, + "end": 10900, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 10900, + "end": 10901, + "value": "," + }, + { + "type": "whitespace", + "start": 10901, + "end": 10909, + "value": "\n " + }, + { + "type": "operator", + "start": 10909, + "end": 10910, + "value": "-" + }, + { + "type": "number", + "start": 10910, + "end": 10929, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 10929, + "end": 10935, + "value": "\n " + }, + { + "type": "brace", + "start": 10935, + "end": 10936, + "value": "]" + }, + { + "type": "comma", + "start": 10936, + "end": 10937, + "value": "," + }, + { + "type": "whitespace", + "start": 10937, + "end": 10938, + "value": " " + }, + { + "type": "operator", + "start": 10938, + "end": 10939, + "value": "%" + }, + { + "type": "brace", + "start": 10939, + "end": 10940, + "value": ")" + }, + { + "type": "whitespace", + "start": 10940, + "end": 10943, + "value": "\n " + }, + { + "type": "operator", + "start": 10943, + "end": 10945, + "value": "|>" + }, + { + "type": "whitespace", + "start": 10945, + "end": 10946, + "value": " " + }, + { + "type": "word", + "start": 10946, + "end": 10950, + "value": "line" + }, + { + "type": "brace", + "start": 10950, + "end": 10951, + "value": "(" + }, + { + "type": "brace", + "start": 10951, + "end": 10952, + "value": "[" + }, + { + "type": "whitespace", + "start": 10952, + "end": 10960, + "value": "\n " + }, + { + "type": "operator", + "start": 10960, + "end": 10961, + "value": "-" + }, + { + "type": "number", + "start": 10961, + "end": 10979, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 10979, + "end": 10980, + "value": "," + }, + { + "type": "whitespace", + "start": 10980, + "end": 10988, + "value": "\n " + }, + { + "type": "operator", + "start": 10988, + "end": 10989, + "value": "-" + }, + { + "type": "number", + "start": 10989, + "end": 11008, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 11008, + "end": 11014, + "value": "\n " + }, + { + "type": "brace", + "start": 11014, + "end": 11015, + "value": "]" + }, + { + "type": "comma", + "start": 11015, + "end": 11016, + "value": "," + }, + { + "type": "whitespace", + "start": 11016, + "end": 11017, + "value": " " + }, + { + "type": "operator", + "start": 11017, + "end": 11018, + "value": "%" + }, + { + "type": "brace", + "start": 11018, + "end": 11019, + "value": ")" + }, + { + "type": "whitespace", + "start": 11019, + "end": 11022, + "value": "\n " + }, + { + "type": "operator", + "start": 11022, + "end": 11024, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11024, + "end": 11025, + "value": " " + }, + { + "type": "word", + "start": 11025, + "end": 11029, + "value": "line" + }, + { + "type": "brace", + "start": 11029, + "end": 11030, + "value": "(" + }, + { + "type": "brace", + "start": 11030, + "end": 11031, + "value": "[" + }, + { + "type": "whitespace", + "start": 11031, + "end": 11039, + "value": "\n " + }, + { + "type": "operator", + "start": 11039, + "end": 11040, + "value": "-" + }, + { + "type": "number", + "start": 11040, + "end": 11058, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 11058, + "end": 11059, + "value": "," + }, + { + "type": "whitespace", + "start": 11059, + "end": 11067, + "value": "\n " + }, + { + "type": "number", + "start": 11067, + "end": 11086, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 11086, + "end": 11092, + "value": "\n " + }, + { + "type": "brace", + "start": 11092, + "end": 11093, + "value": "]" + }, + { + "type": "comma", + "start": 11093, + "end": 11094, + "value": "," + }, + { + "type": "whitespace", + "start": 11094, + "end": 11095, + "value": " " + }, + { + "type": "operator", + "start": 11095, + "end": 11096, + "value": "%" + }, + { + "type": "brace", + "start": 11096, + "end": 11097, + "value": ")" + }, + { + "type": "whitespace", + "start": 11097, + "end": 11100, + "value": "\n " + }, + { + "type": "operator", + "start": 11100, + "end": 11102, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11102, + "end": 11103, + "value": " " + }, + { + "type": "word", + "start": 11103, + "end": 11107, + "value": "line" + }, + { + "type": "brace", + "start": 11107, + "end": 11108, + "value": "(" + }, + { + "type": "brace", + "start": 11108, + "end": 11109, + "value": "[" + }, + { + "type": "whitespace", + "start": 11109, + "end": 11117, + "value": "\n " + }, + { + "type": "operator", + "start": 11117, + "end": 11118, + "value": "-" + }, + { + "type": "number", + "start": 11118, + "end": 11136, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 11136, + "end": 11137, + "value": "," + }, + { + "type": "whitespace", + "start": 11137, + "end": 11145, + "value": "\n " + }, + { + "type": "operator", + "start": 11145, + "end": 11146, + "value": "-" + }, + { + "type": "number", + "start": 11146, + "end": 11165, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 11165, + "end": 11171, + "value": "\n " + }, + { + "type": "brace", + "start": 11171, + "end": 11172, + "value": "]" + }, + { + "type": "comma", + "start": 11172, + "end": 11173, + "value": "," + }, + { + "type": "whitespace", + "start": 11173, + "end": 11174, + "value": " " + }, + { + "type": "operator", + "start": 11174, + "end": 11175, + "value": "%" + }, + { + "type": "brace", + "start": 11175, + "end": 11176, + "value": ")" + }, + { + "type": "whitespace", + "start": 11176, + "end": 11179, + "value": "\n " + }, + { + "type": "operator", + "start": 11179, + "end": 11181, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11181, + "end": 11182, + "value": " " + }, + { + "type": "word", + "start": 11182, + "end": 11186, + "value": "line" + }, + { + "type": "brace", + "start": 11186, + "end": 11187, + "value": "(" + }, + { + "type": "brace", + "start": 11187, + "end": 11188, + "value": "[" + }, + { + "type": "whitespace", + "start": 11188, + "end": 11196, + "value": "\n " + }, + { + "type": "number", + "start": 11196, + "end": 11214, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 11214, + "end": 11215, + "value": "," + }, + { + "type": "whitespace", + "start": 11215, + "end": 11223, + "value": "\n " + }, + { + "type": "operator", + "start": 11223, + "end": 11224, + "value": "-" + }, + { + "type": "number", + "start": 11224, + "end": 11242, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 11242, + "end": 11248, + "value": "\n " + }, + { + "type": "brace", + "start": 11248, + "end": 11249, + "value": "]" + }, + { + "type": "comma", + "start": 11249, + "end": 11250, + "value": "," + }, + { + "type": "whitespace", + "start": 11250, + "end": 11251, + "value": " " + }, + { + "type": "operator", + "start": 11251, + "end": 11252, + "value": "%" + }, + { + "type": "brace", + "start": 11252, + "end": 11253, + "value": ")" + }, + { + "type": "whitespace", + "start": 11253, + "end": 11256, + "value": "\n " + }, + { + "type": "operator", + "start": 11256, + "end": 11258, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11258, + "end": 11259, + "value": " " + }, + { + "type": "word", + "start": 11259, + "end": 11263, + "value": "line" + }, + { + "type": "brace", + "start": 11263, + "end": 11264, + "value": "(" + }, + { + "type": "brace", + "start": 11264, + "end": 11265, + "value": "[" + }, + { + "type": "whitespace", + "start": 11265, + "end": 11273, + "value": "\n " + }, + { + "type": "operator", + "start": 11273, + "end": 11274, + "value": "-" + }, + { + "type": "number", + "start": 11274, + "end": 11292, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 11292, + "end": 11293, + "value": "," + }, + { + "type": "whitespace", + "start": 11293, + "end": 11301, + "value": "\n " + }, + { + "type": "number", + "start": 11301, + "end": 11319, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 11319, + "end": 11325, + "value": "\n " + }, + { + "type": "brace", + "start": 11325, + "end": 11326, + "value": "]" + }, + { + "type": "comma", + "start": 11326, + "end": 11327, + "value": "," + }, + { + "type": "whitespace", + "start": 11327, + "end": 11328, + "value": " " + }, + { + "type": "operator", + "start": 11328, + "end": 11329, + "value": "%" + }, + { + "type": "brace", + "start": 11329, + "end": 11330, + "value": ")" + }, + { + "type": "whitespace", + "start": 11330, + "end": 11333, + "value": "\n " + }, + { + "type": "operator", + "start": 11333, + "end": 11335, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11335, + "end": 11336, + "value": " " + }, + { + "type": "word", + "start": 11336, + "end": 11340, + "value": "line" + }, + { + "type": "brace", + "start": 11340, + "end": 11341, + "value": "(" + }, + { + "type": "brace", + "start": 11341, + "end": 11342, + "value": "[" + }, + { + "type": "whitespace", + "start": 11342, + "end": 11350, + "value": "\n " + }, + { + "type": "operator", + "start": 11350, + "end": 11351, + "value": "-" + }, + { + "type": "number", + "start": 11351, + "end": 11369, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 11369, + "end": 11370, + "value": "," + }, + { + "type": "whitespace", + "start": 11370, + "end": 11378, + "value": "\n " + }, + { + "type": "number", + "start": 11378, + "end": 11396, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 11396, + "end": 11402, + "value": "\n " + }, + { + "type": "brace", + "start": 11402, + "end": 11403, + "value": "]" + }, + { + "type": "comma", + "start": 11403, + "end": 11404, + "value": "," + }, + { + "type": "whitespace", + "start": 11404, + "end": 11405, + "value": " " + }, + { + "type": "operator", + "start": 11405, + "end": 11406, + "value": "%" + }, + { + "type": "brace", + "start": 11406, + "end": 11407, + "value": ")" + }, + { + "type": "whitespace", + "start": 11407, + "end": 11410, + "value": "\n " + }, + { + "type": "operator", + "start": 11410, + "end": 11412, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11412, + "end": 11413, + "value": " " + }, + { + "type": "word", + "start": 11413, + "end": 11417, + "value": "line" + }, + { + "type": "brace", + "start": 11417, + "end": 11418, + "value": "(" + }, + { + "type": "brace", + "start": 11418, + "end": 11419, + "value": "[" + }, + { + "type": "whitespace", + "start": 11419, + "end": 11427, + "value": "\n " + }, + { + "type": "operator", + "start": 11427, + "end": 11428, + "value": "-" + }, + { + "type": "number", + "start": 11428, + "end": 11446, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 11446, + "end": 11447, + "value": "," + }, + { + "type": "whitespace", + "start": 11447, + "end": 11455, + "value": "\n " + }, + { + "type": "operator", + "start": 11455, + "end": 11456, + "value": "-" + }, + { + "type": "number", + "start": 11456, + "end": 11475, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 11475, + "end": 11481, + "value": "\n " + }, + { + "type": "brace", + "start": 11481, + "end": 11482, + "value": "]" + }, + { + "type": "comma", + "start": 11482, + "end": 11483, + "value": "," + }, + { + "type": "whitespace", + "start": 11483, + "end": 11484, + "value": " " + }, + { + "type": "operator", + "start": 11484, + "end": 11485, + "value": "%" + }, + { + "type": "brace", + "start": 11485, + "end": 11486, + "value": ")" + }, + { + "type": "whitespace", + "start": 11486, + "end": 11489, + "value": "\n " + }, + { + "type": "operator", + "start": 11489, + "end": 11491, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11491, + "end": 11492, + "value": " " + }, + { + "type": "word", + "start": 11492, + "end": 11496, + "value": "line" + }, + { + "type": "brace", + "start": 11496, + "end": 11497, + "value": "(" + }, + { + "type": "brace", + "start": 11497, + "end": 11498, + "value": "[" + }, + { + "type": "whitespace", + "start": 11498, + "end": 11506, + "value": "\n " + }, + { + "type": "number", + "start": 11506, + "end": 11525, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 11525, + "end": 11526, + "value": "," + }, + { + "type": "whitespace", + "start": 11526, + "end": 11534, + "value": "\n " + }, + { + "type": "number", + "start": 11534, + "end": 11553, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 11553, + "end": 11559, + "value": "\n " + }, + { + "type": "brace", + "start": 11559, + "end": 11560, + "value": "]" + }, + { + "type": "comma", + "start": 11560, + "end": 11561, + "value": "," + }, + { + "type": "whitespace", + "start": 11561, + "end": 11562, + "value": " " + }, + { + "type": "operator", + "start": 11562, + "end": 11563, + "value": "%" + }, + { + "type": "brace", + "start": 11563, + "end": 11564, + "value": ")" + }, + { + "type": "whitespace", + "start": 11564, + "end": 11567, + "value": "\n " + }, + { + "type": "operator", + "start": 11567, + "end": 11569, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11569, + "end": 11570, + "value": " " + }, + { + "type": "word", + "start": 11570, + "end": 11574, + "value": "line" + }, + { + "type": "brace", + "start": 11574, + "end": 11575, + "value": "(" + }, + { + "type": "brace", + "start": 11575, + "end": 11576, + "value": "[" + }, + { + "type": "whitespace", + "start": 11576, + "end": 11584, + "value": "\n " + }, + { + "type": "number", + "start": 11584, + "end": 11603, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 11603, + "end": 11604, + "value": "," + }, + { + "type": "whitespace", + "start": 11604, + "end": 11612, + "value": "\n " + }, + { + "type": "number", + "start": 11612, + "end": 11631, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 11631, + "end": 11637, + "value": "\n " + }, + { + "type": "brace", + "start": 11637, + "end": 11638, + "value": "]" + }, + { + "type": "comma", + "start": 11638, + "end": 11639, + "value": "," + }, + { + "type": "whitespace", + "start": 11639, + "end": 11640, + "value": " " + }, + { + "type": "operator", + "start": 11640, + "end": 11641, + "value": "%" + }, + { + "type": "brace", + "start": 11641, + "end": 11642, + "value": ")" + }, + { + "type": "whitespace", + "start": 11642, + "end": 11645, + "value": "\n " + }, + { + "type": "operator", + "start": 11645, + "end": 11647, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11647, + "end": 11648, + "value": " " + }, + { + "type": "word", + "start": 11648, + "end": 11652, + "value": "line" + }, + { + "type": "brace", + "start": 11652, + "end": 11653, + "value": "(" + }, + { + "type": "brace", + "start": 11653, + "end": 11654, + "value": "[" + }, + { + "type": "whitespace", + "start": 11654, + "end": 11662, + "value": "\n " + }, + { + "type": "operator", + "start": 11662, + "end": 11663, + "value": "-" + }, + { + "type": "number", + "start": 11663, + "end": 11682, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 11682, + "end": 11683, + "value": "," + }, + { + "type": "whitespace", + "start": 11683, + "end": 11691, + "value": "\n " + }, + { + "type": "number", + "start": 11691, + "end": 11709, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 11709, + "end": 11715, + "value": "\n " + }, + { + "type": "brace", + "start": 11715, + "end": 11716, + "value": "]" + }, + { + "type": "comma", + "start": 11716, + "end": 11717, + "value": "," + }, + { + "type": "whitespace", + "start": 11717, + "end": 11718, + "value": " " + }, + { + "type": "operator", + "start": 11718, + "end": 11719, + "value": "%" + }, + { + "type": "brace", + "start": 11719, + "end": 11720, + "value": ")" + }, + { + "type": "whitespace", + "start": 11720, + "end": 11723, + "value": "\n " + }, + { + "type": "operator", + "start": 11723, + "end": 11725, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11725, + "end": 11726, + "value": " " + }, + { + "type": "word", + "start": 11726, + "end": 11730, + "value": "line" + }, + { + "type": "brace", + "start": 11730, + "end": 11731, + "value": "(" + }, + { + "type": "brace", + "start": 11731, + "end": 11732, + "value": "[" + }, + { + "type": "whitespace", + "start": 11732, + "end": 11740, + "value": "\n " + }, + { + "type": "operator", + "start": 11740, + "end": 11741, + "value": "-" + }, + { + "type": "number", + "start": 11741, + "end": 11760, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 11760, + "end": 11761, + "value": "," + }, + { + "type": "whitespace", + "start": 11761, + "end": 11769, + "value": "\n " + }, + { + "type": "operator", + "start": 11769, + "end": 11770, + "value": "-" + }, + { + "type": "number", + "start": 11770, + "end": 11789, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 11789, + "end": 11795, + "value": "\n " + }, + { + "type": "brace", + "start": 11795, + "end": 11796, + "value": "]" + }, + { + "type": "comma", + "start": 11796, + "end": 11797, + "value": "," + }, + { + "type": "whitespace", + "start": 11797, + "end": 11798, + "value": " " + }, + { + "type": "operator", + "start": 11798, + "end": 11799, + "value": "%" + }, + { + "type": "brace", + "start": 11799, + "end": 11800, + "value": ")" + }, + { + "type": "whitespace", + "start": 11800, + "end": 11803, + "value": "\n " + }, + { + "type": "operator", + "start": 11803, + "end": 11805, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11805, + "end": 11806, + "value": " " + }, + { + "type": "word", + "start": 11806, + "end": 11810, + "value": "line" + }, + { + "type": "brace", + "start": 11810, + "end": 11811, + "value": "(" + }, + { + "type": "brace", + "start": 11811, + "end": 11812, + "value": "[" + }, + { + "type": "whitespace", + "start": 11812, + "end": 11820, + "value": "\n " + }, + { + "type": "number", + "start": 11820, + "end": 11838, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 11838, + "end": 11839, + "value": "," + }, + { + "type": "whitespace", + "start": 11839, + "end": 11847, + "value": "\n " + }, + { + "type": "operator", + "start": 11847, + "end": 11848, + "value": "-" + }, + { + "type": "number", + "start": 11848, + "end": 11867, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 11867, + "end": 11873, + "value": "\n " + }, + { + "type": "brace", + "start": 11873, + "end": 11874, + "value": "]" + }, + { + "type": "comma", + "start": 11874, + "end": 11875, + "value": "," + }, + { + "type": "whitespace", + "start": 11875, + "end": 11876, + "value": " " + }, + { + "type": "operator", + "start": 11876, + "end": 11877, + "value": "%" + }, + { + "type": "brace", + "start": 11877, + "end": 11878, + "value": ")" + }, + { + "type": "whitespace", + "start": 11878, + "end": 11881, + "value": "\n " + }, + { + "type": "operator", + "start": 11881, + "end": 11883, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11883, + "end": 11884, + "value": " " + }, + { + "type": "word", + "start": 11884, + "end": 11888, + "value": "line" + }, + { + "type": "brace", + "start": 11888, + "end": 11889, + "value": "(" + }, + { + "type": "brace", + "start": 11889, + "end": 11890, + "value": "[" + }, + { + "type": "whitespace", + "start": 11890, + "end": 11898, + "value": "\n " + }, + { + "type": "number", + "start": 11898, + "end": 11919, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 11919, + "end": 11920, + "value": "," + }, + { + "type": "whitespace", + "start": 11920, + "end": 11928, + "value": "\n " + }, + { + "type": "operator", + "start": 11928, + "end": 11929, + "value": "-" + }, + { + "type": "number", + "start": 11929, + "end": 11947, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 11947, + "end": 11953, + "value": "\n " + }, + { + "type": "brace", + "start": 11953, + "end": 11954, + "value": "]" + }, + { + "type": "comma", + "start": 11954, + "end": 11955, + "value": "," + }, + { + "type": "whitespace", + "start": 11955, + "end": 11956, + "value": " " + }, + { + "type": "operator", + "start": 11956, + "end": 11957, + "value": "%" + }, + { + "type": "brace", + "start": 11957, + "end": 11958, + "value": ")" + }, + { + "type": "whitespace", + "start": 11958, + "end": 11961, + "value": "\n " + }, + { + "type": "operator", + "start": 11961, + "end": 11963, + "value": "|>" + }, + { + "type": "whitespace", + "start": 11963, + "end": 11964, + "value": " " + }, + { + "type": "word", + "start": 11964, + "end": 11968, + "value": "line" + }, + { + "type": "brace", + "start": 11968, + "end": 11969, + "value": "(" + }, + { + "type": "brace", + "start": 11969, + "end": 11970, + "value": "[" + }, + { + "type": "whitespace", + "start": 11970, + "end": 11978, + "value": "\n " + }, + { + "type": "number", + "start": 11978, + "end": 11996, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 11996, + "end": 11997, + "value": "," + }, + { + "type": "whitespace", + "start": 11997, + "end": 12005, + "value": "\n " + }, + { + "type": "operator", + "start": 12005, + "end": 12006, + "value": "-" + }, + { + "type": "number", + "start": 12006, + "end": 12024, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 12024, + "end": 12030, + "value": "\n " + }, + { + "type": "brace", + "start": 12030, + "end": 12031, + "value": "]" + }, + { + "type": "comma", + "start": 12031, + "end": 12032, + "value": "," + }, + { + "type": "whitespace", + "start": 12032, + "end": 12033, + "value": " " + }, + { + "type": "operator", + "start": 12033, + "end": 12034, + "value": "%" + }, + { + "type": "brace", + "start": 12034, + "end": 12035, + "value": ")" + }, + { + "type": "whitespace", + "start": 12035, + "end": 12038, + "value": "\n " + }, + { + "type": "operator", + "start": 12038, + "end": 12040, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12040, + "end": 12041, + "value": " " + }, + { + "type": "word", + "start": 12041, + "end": 12045, + "value": "line" + }, + { + "type": "brace", + "start": 12045, + "end": 12046, + "value": "(" + }, + { + "type": "brace", + "start": 12046, + "end": 12047, + "value": "[" + }, + { + "type": "whitespace", + "start": 12047, + "end": 12055, + "value": "\n " + }, + { + "type": "operator", + "start": 12055, + "end": 12056, + "value": "-" + }, + { + "type": "number", + "start": 12056, + "end": 12074, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 12074, + "end": 12075, + "value": "," + }, + { + "type": "whitespace", + "start": 12075, + "end": 12083, + "value": "\n " + }, + { + "type": "number", + "start": 12083, + "end": 12101, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 12101, + "end": 12107, + "value": "\n " + }, + { + "type": "brace", + "start": 12107, + "end": 12108, + "value": "]" + }, + { + "type": "comma", + "start": 12108, + "end": 12109, + "value": "," + }, + { + "type": "whitespace", + "start": 12109, + "end": 12110, + "value": " " + }, + { + "type": "operator", + "start": 12110, + "end": 12111, + "value": "%" + }, + { + "type": "brace", + "start": 12111, + "end": 12112, + "value": ")" + }, + { + "type": "whitespace", + "start": 12112, + "end": 12115, + "value": "\n " + }, + { + "type": "operator", + "start": 12115, + "end": 12117, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12117, + "end": 12118, + "value": " " + }, + { + "type": "word", + "start": 12118, + "end": 12122, + "value": "line" + }, + { + "type": "brace", + "start": 12122, + "end": 12123, + "value": "(" + }, + { + "type": "brace", + "start": 12123, + "end": 12124, + "value": "[" + }, + { + "type": "number", + "start": 12124, + "end": 12142, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 12142, + "end": 12143, + "value": "," + }, + { + "type": "whitespace", + "start": 12143, + "end": 12144, + "value": " " + }, + { + "type": "number", + "start": 12144, + "end": 12162, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 12162, + "end": 12163, + "value": "]" + }, + { + "type": "comma", + "start": 12163, + "end": 12164, + "value": "," + }, + { + "type": "whitespace", + "start": 12164, + "end": 12165, + "value": " " + }, + { + "type": "operator", + "start": 12165, + "end": 12166, + "value": "%" + }, + { + "type": "brace", + "start": 12166, + "end": 12167, + "value": ")" + }, + { + "type": "whitespace", + "start": 12167, + "end": 12170, + "value": "\n " + }, + { + "type": "operator", + "start": 12170, + "end": 12172, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12172, + "end": 12173, + "value": " " + }, + { + "type": "word", + "start": 12173, + "end": 12177, + "value": "line" + }, + { + "type": "brace", + "start": 12177, + "end": 12178, + "value": "(" + }, + { + "type": "brace", + "start": 12178, + "end": 12179, + "value": "[" + }, + { + "type": "whitespace", + "start": 12179, + "end": 12187, + "value": "\n " + }, + { + "type": "operator", + "start": 12187, + "end": 12188, + "value": "-" + }, + { + "type": "number", + "start": 12188, + "end": 12207, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 12207, + "end": 12208, + "value": "," + }, + { + "type": "whitespace", + "start": 12208, + "end": 12216, + "value": "\n " + }, + { + "type": "number", + "start": 12216, + "end": 12236, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 12236, + "end": 12242, + "value": "\n " + }, + { + "type": "brace", + "start": 12242, + "end": 12243, + "value": "]" + }, + { + "type": "comma", + "start": 12243, + "end": 12244, + "value": "," + }, + { + "type": "whitespace", + "start": 12244, + "end": 12245, + "value": " " + }, + { + "type": "operator", + "start": 12245, + "end": 12246, + "value": "%" + }, + { + "type": "brace", + "start": 12246, + "end": 12247, + "value": ")" + }, + { + "type": "whitespace", + "start": 12247, + "end": 12250, + "value": "\n " + }, + { + "type": "operator", + "start": 12250, + "end": 12252, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12252, + "end": 12253, + "value": " " + }, + { + "type": "word", + "start": 12253, + "end": 12257, + "value": "line" + }, + { + "type": "brace", + "start": 12257, + "end": 12258, + "value": "(" + }, + { + "type": "brace", + "start": 12258, + "end": 12259, + "value": "[" + }, + { + "type": "whitespace", + "start": 12259, + "end": 12267, + "value": "\n " + }, + { + "type": "operator", + "start": 12267, + "end": 12268, + "value": "-" + }, + { + "type": "number", + "start": 12268, + "end": 12286, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 12286, + "end": 12287, + "value": "," + }, + { + "type": "whitespace", + "start": 12287, + "end": 12295, + "value": "\n " + }, + { + "type": "operator", + "start": 12295, + "end": 12296, + "value": "-" + }, + { + "type": "number", + "start": 12296, + "end": 12315, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 12315, + "end": 12321, + "value": "\n " + }, + { + "type": "brace", + "start": 12321, + "end": 12322, + "value": "]" + }, + { + "type": "comma", + "start": 12322, + "end": 12323, + "value": "," + }, + { + "type": "whitespace", + "start": 12323, + "end": 12324, + "value": " " + }, + { + "type": "operator", + "start": 12324, + "end": 12325, + "value": "%" + }, + { + "type": "brace", + "start": 12325, + "end": 12326, + "value": ")" + }, + { + "type": "whitespace", + "start": 12326, + "end": 12329, + "value": "\n " + }, + { + "type": "operator", + "start": 12329, + "end": 12331, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12331, + "end": 12332, + "value": " " + }, + { + "type": "word", + "start": 12332, + "end": 12336, + "value": "line" + }, + { + "type": "brace", + "start": 12336, + "end": 12337, + "value": "(" + }, + { + "type": "brace", + "start": 12337, + "end": 12338, + "value": "[" + }, + { + "type": "whitespace", + "start": 12338, + "end": 12346, + "value": "\n " + }, + { + "type": "operator", + "start": 12346, + "end": 12347, + "value": "-" + }, + { + "type": "number", + "start": 12347, + "end": 12365, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 12365, + "end": 12366, + "value": "," + }, + { + "type": "whitespace", + "start": 12366, + "end": 12374, + "value": "\n " + }, + { + "type": "operator", + "start": 12374, + "end": 12375, + "value": "-" + }, + { + "type": "number", + "start": 12375, + "end": 12394, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 12394, + "end": 12400, + "value": "\n " + }, + { + "type": "brace", + "start": 12400, + "end": 12401, + "value": "]" + }, + { + "type": "comma", + "start": 12401, + "end": 12402, + "value": "," + }, + { + "type": "whitespace", + "start": 12402, + "end": 12403, + "value": " " + }, + { + "type": "operator", + "start": 12403, + "end": 12404, + "value": "%" + }, + { + "type": "brace", + "start": 12404, + "end": 12405, + "value": ")" + }, + { + "type": "whitespace", + "start": 12405, + "end": 12408, + "value": "\n " + }, + { + "type": "operator", + "start": 12408, + "end": 12410, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12410, + "end": 12411, + "value": " " + }, + { + "type": "word", + "start": 12411, + "end": 12415, + "value": "line" + }, + { + "type": "brace", + "start": 12415, + "end": 12416, + "value": "(" + }, + { + "type": "brace", + "start": 12416, + "end": 12417, + "value": "[" + }, + { + "type": "number", + "start": 12417, + "end": 12434, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 12434, + "end": 12435, + "value": "," + }, + { + "type": "whitespace", + "start": 12435, + "end": 12436, + "value": " " + }, + { + "type": "number", + "start": 12436, + "end": 12454, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 12454, + "end": 12455, + "value": "]" + }, + { + "type": "comma", + "start": 12455, + "end": 12456, + "value": "," + }, + { + "type": "whitespace", + "start": 12456, + "end": 12457, + "value": " " + }, + { + "type": "operator", + "start": 12457, + "end": 12458, + "value": "%" + }, + { + "type": "brace", + "start": 12458, + "end": 12459, + "value": ")" + }, + { + "type": "whitespace", + "start": 12459, + "end": 12462, + "value": "\n " + }, + { + "type": "operator", + "start": 12462, + "end": 12464, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12464, + "end": 12465, + "value": " " + }, + { + "type": "word", + "start": 12465, + "end": 12469, + "value": "line" + }, + { + "type": "brace", + "start": 12469, + "end": 12470, + "value": "(" + }, + { + "type": "brace", + "start": 12470, + "end": 12471, + "value": "[" + }, + { + "type": "whitespace", + "start": 12471, + "end": 12479, + "value": "\n " + }, + { + "type": "number", + "start": 12479, + "end": 12498, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 12498, + "end": 12499, + "value": "," + }, + { + "type": "whitespace", + "start": 12499, + "end": 12507, + "value": "\n " + }, + { + "type": "operator", + "start": 12507, + "end": 12508, + "value": "-" + }, + { + "type": "number", + "start": 12508, + "end": 12527, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 12527, + "end": 12533, + "value": "\n " + }, + { + "type": "brace", + "start": 12533, + "end": 12534, + "value": "]" + }, + { + "type": "comma", + "start": 12534, + "end": 12535, + "value": "," + }, + { + "type": "whitespace", + "start": 12535, + "end": 12536, + "value": " " + }, + { + "type": "operator", + "start": 12536, + "end": 12537, + "value": "%" + }, + { + "type": "brace", + "start": 12537, + "end": 12538, + "value": ")" + }, + { + "type": "whitespace", + "start": 12538, + "end": 12541, + "value": "\n " + }, + { + "type": "operator", + "start": 12541, + "end": 12543, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12543, + "end": 12544, + "value": " " + }, + { + "type": "word", + "start": 12544, + "end": 12548, + "value": "line" + }, + { + "type": "brace", + "start": 12548, + "end": 12549, + "value": "(" + }, + { + "type": "brace", + "start": 12549, + "end": 12550, + "value": "[" + }, + { + "type": "number", + "start": 12550, + "end": 12568, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 12568, + "end": 12569, + "value": "," + }, + { + "type": "whitespace", + "start": 12569, + "end": 12570, + "value": " " + }, + { + "type": "number", + "start": 12570, + "end": 12587, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 12587, + "end": 12588, + "value": "]" + }, + { + "type": "comma", + "start": 12588, + "end": 12589, + "value": "," + }, + { + "type": "whitespace", + "start": 12589, + "end": 12590, + "value": " " + }, + { + "type": "operator", + "start": 12590, + "end": 12591, + "value": "%" + }, + { + "type": "brace", + "start": 12591, + "end": 12592, + "value": ")" + }, + { + "type": "whitespace", + "start": 12592, + "end": 12595, + "value": "\n " + }, + { + "type": "operator", + "start": 12595, + "end": 12597, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12597, + "end": 12598, + "value": " " + }, + { + "type": "word", + "start": 12598, + "end": 12602, + "value": "line" + }, + { + "type": "brace", + "start": 12602, + "end": 12603, + "value": "(" + }, + { + "type": "brace", + "start": 12603, + "end": 12604, + "value": "[" + }, + { + "type": "whitespace", + "start": 12604, + "end": 12612, + "value": "\n " + }, + { + "type": "number", + "start": 12612, + "end": 12631, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 12631, + "end": 12632, + "value": "," + }, + { + "type": "whitespace", + "start": 12632, + "end": 12640, + "value": "\n " + }, + { + "type": "operator", + "start": 12640, + "end": 12641, + "value": "-" + }, + { + "type": "number", + "start": 12641, + "end": 12659, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 12659, + "end": 12665, + "value": "\n " + }, + { + "type": "brace", + "start": 12665, + "end": 12666, + "value": "]" + }, + { + "type": "comma", + "start": 12666, + "end": 12667, + "value": "," + }, + { + "type": "whitespace", + "start": 12667, + "end": 12668, + "value": " " + }, + { + "type": "operator", + "start": 12668, + "end": 12669, + "value": "%" + }, + { + "type": "brace", + "start": 12669, + "end": 12670, + "value": ")" + }, + { + "type": "whitespace", + "start": 12670, + "end": 12673, + "value": "\n " + }, + { + "type": "operator", + "start": 12673, + "end": 12675, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12675, + "end": 12676, + "value": " " + }, + { + "type": "word", + "start": 12676, + "end": 12680, + "value": "line" + }, + { + "type": "brace", + "start": 12680, + "end": 12681, + "value": "(" + }, + { + "type": "brace", + "start": 12681, + "end": 12682, + "value": "[" + }, + { + "type": "number", + "start": 12682, + "end": 12700, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 12700, + "end": 12701, + "value": "," + }, + { + "type": "whitespace", + "start": 12701, + "end": 12702, + "value": " " + }, + { + "type": "number", + "start": 12702, + "end": 12720, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 12720, + "end": 12721, + "value": "]" + }, + { + "type": "comma", + "start": 12721, + "end": 12722, + "value": "," + }, + { + "type": "whitespace", + "start": 12722, + "end": 12723, + "value": " " + }, + { + "type": "operator", + "start": 12723, + "end": 12724, + "value": "%" + }, + { + "type": "brace", + "start": 12724, + "end": 12725, + "value": ")" + }, + { + "type": "whitespace", + "start": 12725, + "end": 12728, + "value": "\n " + }, + { + "type": "operator", + "start": 12728, + "end": 12730, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12730, + "end": 12731, + "value": " " + }, + { + "type": "word", + "start": 12731, + "end": 12735, + "value": "line" + }, + { + "type": "brace", + "start": 12735, + "end": 12736, + "value": "(" + }, + { + "type": "brace", + "start": 12736, + "end": 12737, + "value": "[" + }, + { + "type": "whitespace", + "start": 12737, + "end": 12745, + "value": "\n " + }, + { + "type": "number", + "start": 12745, + "end": 12763, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 12763, + "end": 12764, + "value": "," + }, + { + "type": "whitespace", + "start": 12764, + "end": 12772, + "value": "\n " + }, + { + "type": "number", + "start": 12772, + "end": 12791, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 12791, + "end": 12797, + "value": "\n " + }, + { + "type": "brace", + "start": 12797, + "end": 12798, + "value": "]" + }, + { + "type": "comma", + "start": 12798, + "end": 12799, + "value": "," + }, + { + "type": "whitespace", + "start": 12799, + "end": 12800, + "value": " " + }, + { + "type": "operator", + "start": 12800, + "end": 12801, + "value": "%" + }, + { + "type": "brace", + "start": 12801, + "end": 12802, + "value": ")" + }, + { + "type": "whitespace", + "start": 12802, + "end": 12805, + "value": "\n " + }, + { + "type": "operator", + "start": 12805, + "end": 12807, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12807, + "end": 12808, + "value": " " + }, + { + "type": "word", + "start": 12808, + "end": 12812, + "value": "line" + }, + { + "type": "brace", + "start": 12812, + "end": 12813, + "value": "(" + }, + { + "type": "brace", + "start": 12813, + "end": 12814, + "value": "[" + }, + { + "type": "number", + "start": 12814, + "end": 12832, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 12832, + "end": 12833, + "value": "," + }, + { + "type": "whitespace", + "start": 12833, + "end": 12834, + "value": " " + }, + { + "type": "number", + "start": 12834, + "end": 12852, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 12852, + "end": 12853, + "value": "]" + }, + { + "type": "comma", + "start": 12853, + "end": 12854, + "value": "," + }, + { + "type": "whitespace", + "start": 12854, + "end": 12855, + "value": " " + }, + { + "type": "operator", + "start": 12855, + "end": 12856, + "value": "%" + }, + { + "type": "brace", + "start": 12856, + "end": 12857, + "value": ")" + }, + { + "type": "whitespace", + "start": 12857, + "end": 12860, + "value": "\n " + }, + { + "type": "operator", + "start": 12860, + "end": 12862, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12862, + "end": 12863, + "value": " " + }, + { + "type": "word", + "start": 12863, + "end": 12867, + "value": "line" + }, + { + "type": "brace", + "start": 12867, + "end": 12868, + "value": "(" + }, + { + "type": "brace", + "start": 12868, + "end": 12869, + "value": "[" + }, + { + "type": "whitespace", + "start": 12869, + "end": 12877, + "value": "\n " + }, + { + "type": "operator", + "start": 12877, + "end": 12878, + "value": "-" + }, + { + "type": "number", + "start": 12878, + "end": 12896, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 12896, + "end": 12897, + "value": "," + }, + { + "type": "whitespace", + "start": 12897, + "end": 12905, + "value": "\n " + }, + { + "type": "number", + "start": 12905, + "end": 12924, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 12924, + "end": 12930, + "value": "\n " + }, + { + "type": "brace", + "start": 12930, + "end": 12931, + "value": "]" + }, + { + "type": "comma", + "start": 12931, + "end": 12932, + "value": "," + }, + { + "type": "whitespace", + "start": 12932, + "end": 12933, + "value": " " + }, + { + "type": "operator", + "start": 12933, + "end": 12934, + "value": "%" + }, + { + "type": "brace", + "start": 12934, + "end": 12935, + "value": ")" + }, + { + "type": "whitespace", + "start": 12935, + "end": 12938, + "value": "\n " + }, + { + "type": "operator", + "start": 12938, + "end": 12940, + "value": "|>" + }, + { + "type": "whitespace", + "start": 12940, + "end": 12941, + "value": " " + }, + { + "type": "word", + "start": 12941, + "end": 12945, + "value": "line" + }, + { + "type": "brace", + "start": 12945, + "end": 12946, + "value": "(" + }, + { + "type": "brace", + "start": 12946, + "end": 12947, + "value": "[" + }, + { + "type": "whitespace", + "start": 12947, + "end": 12955, + "value": "\n " + }, + { + "type": "operator", + "start": 12955, + "end": 12956, + "value": "-" + }, + { + "type": "number", + "start": 12956, + "end": 12974, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 12974, + "end": 12975, + "value": "," + }, + { + "type": "whitespace", + "start": 12975, + "end": 12983, + "value": "\n " + }, + { + "type": "number", + "start": 12983, + "end": 13001, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 13001, + "end": 13007, + "value": "\n " + }, + { + "type": "brace", + "start": 13007, + "end": 13008, + "value": "]" + }, + { + "type": "comma", + "start": 13008, + "end": 13009, + "value": "," + }, + { + "type": "whitespace", + "start": 13009, + "end": 13010, + "value": " " + }, + { + "type": "operator", + "start": 13010, + "end": 13011, + "value": "%" + }, + { + "type": "brace", + "start": 13011, + "end": 13012, + "value": ")" + }, + { + "type": "whitespace", + "start": 13012, + "end": 13015, + "value": "\n " + }, + { + "type": "operator", + "start": 13015, + "end": 13017, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13017, + "end": 13018, + "value": " " + }, + { + "type": "word", + "start": 13018, + "end": 13022, + "value": "line" + }, + { + "type": "brace", + "start": 13022, + "end": 13023, + "value": "(" + }, + { + "type": "brace", + "start": 13023, + "end": 13024, + "value": "[" + }, + { + "type": "whitespace", + "start": 13024, + "end": 13032, + "value": "\n " + }, + { + "type": "operator", + "start": 13032, + "end": 13033, + "value": "-" + }, + { + "type": "number", + "start": 13033, + "end": 13051, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 13051, + "end": 13052, + "value": "," + }, + { + "type": "whitespace", + "start": 13052, + "end": 13060, + "value": "\n " + }, + { + "type": "number", + "start": 13060, + "end": 13078, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 13078, + "end": 13084, + "value": "\n " + }, + { + "type": "brace", + "start": 13084, + "end": 13085, + "value": "]" + }, + { + "type": "comma", + "start": 13085, + "end": 13086, + "value": "," + }, + { + "type": "whitespace", + "start": 13086, + "end": 13087, + "value": " " + }, + { + "type": "operator", + "start": 13087, + "end": 13088, + "value": "%" + }, + { + "type": "brace", + "start": 13088, + "end": 13089, + "value": ")" + }, + { + "type": "whitespace", + "start": 13089, + "end": 13092, + "value": "\n " + }, + { + "type": "operator", + "start": 13092, + "end": 13094, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13094, + "end": 13095, + "value": " " + }, + { + "type": "word", + "start": 13095, + "end": 13099, + "value": "line" + }, + { + "type": "brace", + "start": 13099, + "end": 13100, + "value": "(" + }, + { + "type": "brace", + "start": 13100, + "end": 13101, + "value": "[" + }, + { + "type": "whitespace", + "start": 13101, + "end": 13109, + "value": "\n " + }, + { + "type": "operator", + "start": 13109, + "end": 13110, + "value": "-" + }, + { + "type": "number", + "start": 13110, + "end": 13128, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 13128, + "end": 13129, + "value": "," + }, + { + "type": "whitespace", + "start": 13129, + "end": 13137, + "value": "\n " + }, + { + "type": "operator", + "start": 13137, + "end": 13138, + "value": "-" + }, + { + "type": "number", + "start": 13138, + "end": 13157, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 13157, + "end": 13163, + "value": "\n " + }, + { + "type": "brace", + "start": 13163, + "end": 13164, + "value": "]" + }, + { + "type": "comma", + "start": 13164, + "end": 13165, + "value": "," + }, + { + "type": "whitespace", + "start": 13165, + "end": 13166, + "value": " " + }, + { + "type": "operator", + "start": 13166, + "end": 13167, + "value": "%" + }, + { + "type": "brace", + "start": 13167, + "end": 13168, + "value": ")" + }, + { + "type": "whitespace", + "start": 13168, + "end": 13171, + "value": "\n " + }, + { + "type": "operator", + "start": 13171, + "end": 13173, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13173, + "end": 13174, + "value": " " + }, + { + "type": "word", + "start": 13174, + "end": 13178, + "value": "line" + }, + { + "type": "brace", + "start": 13178, + "end": 13179, + "value": "(" + }, + { + "type": "brace", + "start": 13179, + "end": 13180, + "value": "[" + }, + { + "type": "whitespace", + "start": 13180, + "end": 13188, + "value": "\n " + }, + { + "type": "number", + "start": 13188, + "end": 13207, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 13207, + "end": 13208, + "value": "," + }, + { + "type": "whitespace", + "start": 13208, + "end": 13216, + "value": "\n " + }, + { + "type": "number", + "start": 13216, + "end": 13235, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 13235, + "end": 13241, + "value": "\n " + }, + { + "type": "brace", + "start": 13241, + "end": 13242, + "value": "]" + }, + { + "type": "comma", + "start": 13242, + "end": 13243, + "value": "," + }, + { + "type": "whitespace", + "start": 13243, + "end": 13244, + "value": " " + }, + { + "type": "operator", + "start": 13244, + "end": 13245, + "value": "%" + }, + { + "type": "brace", + "start": 13245, + "end": 13246, + "value": ")" + }, + { + "type": "whitespace", + "start": 13246, + "end": 13249, + "value": "\n " + }, + { + "type": "operator", + "start": 13249, + "end": 13251, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13251, + "end": 13252, + "value": " " + }, + { + "type": "word", + "start": 13252, + "end": 13256, + "value": "line" + }, + { + "type": "brace", + "start": 13256, + "end": 13257, + "value": "(" + }, + { + "type": "brace", + "start": 13257, + "end": 13258, + "value": "[" + }, + { + "type": "whitespace", + "start": 13258, + "end": 13266, + "value": "\n " + }, + { + "type": "number", + "start": 13266, + "end": 13285, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 13285, + "end": 13286, + "value": "," + }, + { + "type": "whitespace", + "start": 13286, + "end": 13294, + "value": "\n " + }, + { + "type": "number", + "start": 13294, + "end": 13313, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 13313, + "end": 13319, + "value": "\n " + }, + { + "type": "brace", + "start": 13319, + "end": 13320, + "value": "]" + }, + { + "type": "comma", + "start": 13320, + "end": 13321, + "value": "," + }, + { + "type": "whitespace", + "start": 13321, + "end": 13322, + "value": " " + }, + { + "type": "operator", + "start": 13322, + "end": 13323, + "value": "%" + }, + { + "type": "brace", + "start": 13323, + "end": 13324, + "value": ")" + }, + { + "type": "whitespace", + "start": 13324, + "end": 13327, + "value": "\n " + }, + { + "type": "operator", + "start": 13327, + "end": 13329, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13329, + "end": 13330, + "value": " " + }, + { + "type": "word", + "start": 13330, + "end": 13334, + "value": "line" + }, + { + "type": "brace", + "start": 13334, + "end": 13335, + "value": "(" + }, + { + "type": "brace", + "start": 13335, + "end": 13336, + "value": "[" + }, + { + "type": "whitespace", + "start": 13336, + "end": 13344, + "value": "\n " + }, + { + "type": "operator", + "start": 13344, + "end": 13345, + "value": "-" + }, + { + "type": "number", + "start": 13345, + "end": 13364, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 13364, + "end": 13365, + "value": "," + }, + { + "type": "whitespace", + "start": 13365, + "end": 13373, + "value": "\n " + }, + { + "type": "number", + "start": 13373, + "end": 13391, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 13391, + "end": 13397, + "value": "\n " + }, + { + "type": "brace", + "start": 13397, + "end": 13398, + "value": "]" + }, + { + "type": "comma", + "start": 13398, + "end": 13399, + "value": "," + }, + { + "type": "whitespace", + "start": 13399, + "end": 13400, + "value": " " + }, + { + "type": "operator", + "start": 13400, + "end": 13401, + "value": "%" + }, + { + "type": "brace", + "start": 13401, + "end": 13402, + "value": ")" + }, + { + "type": "whitespace", + "start": 13402, + "end": 13405, + "value": "\n " + }, + { + "type": "operator", + "start": 13405, + "end": 13407, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13407, + "end": 13408, + "value": " " + }, + { + "type": "word", + "start": 13408, + "end": 13412, + "value": "line" + }, + { + "type": "brace", + "start": 13412, + "end": 13413, + "value": "(" + }, + { + "type": "brace", + "start": 13413, + "end": 13414, + "value": "[" + }, + { + "type": "whitespace", + "start": 13414, + "end": 13422, + "value": "\n " + }, + { + "type": "operator", + "start": 13422, + "end": 13423, + "value": "-" + }, + { + "type": "number", + "start": 13423, + "end": 13442, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 13442, + "end": 13443, + "value": "," + }, + { + "type": "whitespace", + "start": 13443, + "end": 13451, + "value": "\n " + }, + { + "type": "operator", + "start": 13451, + "end": 13452, + "value": "-" + }, + { + "type": "number", + "start": 13452, + "end": 13471, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 13471, + "end": 13477, + "value": "\n " + }, + { + "type": "brace", + "start": 13477, + "end": 13478, + "value": "]" + }, + { + "type": "comma", + "start": 13478, + "end": 13479, + "value": "," + }, + { + "type": "whitespace", + "start": 13479, + "end": 13480, + "value": " " + }, + { + "type": "operator", + "start": 13480, + "end": 13481, + "value": "%" + }, + { + "type": "brace", + "start": 13481, + "end": 13482, + "value": ")" + }, + { + "type": "whitespace", + "start": 13482, + "end": 13485, + "value": "\n " + }, + { + "type": "operator", + "start": 13485, + "end": 13487, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13487, + "end": 13488, + "value": " " + }, + { + "type": "word", + "start": 13488, + "end": 13492, + "value": "line" + }, + { + "type": "brace", + "start": 13492, + "end": 13493, + "value": "(" + }, + { + "type": "brace", + "start": 13493, + "end": 13494, + "value": "[" + }, + { + "type": "whitespace", + "start": 13494, + "end": 13502, + "value": "\n " + }, + { + "type": "number", + "start": 13502, + "end": 13520, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 13520, + "end": 13521, + "value": "," + }, + { + "type": "whitespace", + "start": 13521, + "end": 13529, + "value": "\n " + }, + { + "type": "operator", + "start": 13529, + "end": 13530, + "value": "-" + }, + { + "type": "number", + "start": 13530, + "end": 13549, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 13549, + "end": 13555, + "value": "\n " + }, + { + "type": "brace", + "start": 13555, + "end": 13556, + "value": "]" + }, + { + "type": "comma", + "start": 13556, + "end": 13557, + "value": "," + }, + { + "type": "whitespace", + "start": 13557, + "end": 13558, + "value": " " + }, + { + "type": "operator", + "start": 13558, + "end": 13559, + "value": "%" + }, + { + "type": "brace", + "start": 13559, + "end": 13560, + "value": ")" + }, + { + "type": "whitespace", + "start": 13560, + "end": 13563, + "value": "\n " + }, + { + "type": "operator", + "start": 13563, + "end": 13565, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13565, + "end": 13566, + "value": " " + }, + { + "type": "word", + "start": 13566, + "end": 13570, + "value": "line" + }, + { + "type": "brace", + "start": 13570, + "end": 13571, + "value": "(" + }, + { + "type": "brace", + "start": 13571, + "end": 13572, + "value": "[" + }, + { + "type": "whitespace", + "start": 13572, + "end": 13580, + "value": "\n " + }, + { + "type": "number", + "start": 13580, + "end": 13601, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 13601, + "end": 13602, + "value": "," + }, + { + "type": "whitespace", + "start": 13602, + "end": 13610, + "value": "\n " + }, + { + "type": "operator", + "start": 13610, + "end": 13611, + "value": "-" + }, + { + "type": "number", + "start": 13611, + "end": 13629, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 13629, + "end": 13635, + "value": "\n " + }, + { + "type": "brace", + "start": 13635, + "end": 13636, + "value": "]" + }, + { + "type": "comma", + "start": 13636, + "end": 13637, + "value": "," + }, + { + "type": "whitespace", + "start": 13637, + "end": 13638, + "value": " " + }, + { + "type": "operator", + "start": 13638, + "end": 13639, + "value": "%" + }, + { + "type": "brace", + "start": 13639, + "end": 13640, + "value": ")" + }, + { + "type": "whitespace", + "start": 13640, + "end": 13643, + "value": "\n " + }, + { + "type": "operator", + "start": 13643, + "end": 13645, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13645, + "end": 13646, + "value": " " + }, + { + "type": "word", + "start": 13646, + "end": 13650, + "value": "line" + }, + { + "type": "brace", + "start": 13650, + "end": 13651, + "value": "(" + }, + { + "type": "brace", + "start": 13651, + "end": 13652, + "value": "[" + }, + { + "type": "whitespace", + "start": 13652, + "end": 13660, + "value": "\n " + }, + { + "type": "number", + "start": 13660, + "end": 13678, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 13678, + "end": 13679, + "value": "," + }, + { + "type": "whitespace", + "start": 13679, + "end": 13687, + "value": "\n " + }, + { + "type": "operator", + "start": 13687, + "end": 13688, + "value": "-" + }, + { + "type": "number", + "start": 13688, + "end": 13706, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 13706, + "end": 13712, + "value": "\n " + }, + { + "type": "brace", + "start": 13712, + "end": 13713, + "value": "]" + }, + { + "type": "comma", + "start": 13713, + "end": 13714, + "value": "," + }, + { + "type": "whitespace", + "start": 13714, + "end": 13715, + "value": " " + }, + { + "type": "operator", + "start": 13715, + "end": 13716, + "value": "%" + }, + { + "type": "brace", + "start": 13716, + "end": 13717, + "value": ")" + }, + { + "type": "whitespace", + "start": 13717, + "end": 13720, + "value": "\n " + }, + { + "type": "operator", + "start": 13720, + "end": 13722, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13722, + "end": 13723, + "value": " " + }, + { + "type": "word", + "start": 13723, + "end": 13727, + "value": "line" + }, + { + "type": "brace", + "start": 13727, + "end": 13728, + "value": "(" + }, + { + "type": "brace", + "start": 13728, + "end": 13729, + "value": "[" + }, + { + "type": "whitespace", + "start": 13729, + "end": 13737, + "value": "\n " + }, + { + "type": "operator", + "start": 13737, + "end": 13738, + "value": "-" + }, + { + "type": "number", + "start": 13738, + "end": 13756, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 13756, + "end": 13757, + "value": "," + }, + { + "type": "whitespace", + "start": 13757, + "end": 13765, + "value": "\n " + }, + { + "type": "number", + "start": 13765, + "end": 13783, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 13783, + "end": 13789, + "value": "\n " + }, + { + "type": "brace", + "start": 13789, + "end": 13790, + "value": "]" + }, + { + "type": "comma", + "start": 13790, + "end": 13791, + "value": "," + }, + { + "type": "whitespace", + "start": 13791, + "end": 13792, + "value": " " + }, + { + "type": "operator", + "start": 13792, + "end": 13793, + "value": "%" + }, + { + "type": "brace", + "start": 13793, + "end": 13794, + "value": ")" + }, + { + "type": "whitespace", + "start": 13794, + "end": 13797, + "value": "\n " + }, + { + "type": "operator", + "start": 13797, + "end": 13799, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13799, + "end": 13800, + "value": " " + }, + { + "type": "word", + "start": 13800, + "end": 13804, + "value": "line" + }, + { + "type": "brace", + "start": 13804, + "end": 13805, + "value": "(" + }, + { + "type": "brace", + "start": 13805, + "end": 13806, + "value": "[" + }, + { + "type": "number", + "start": 13806, + "end": 13824, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 13824, + "end": 13825, + "value": "," + }, + { + "type": "whitespace", + "start": 13825, + "end": 13826, + "value": " " + }, + { + "type": "number", + "start": 13826, + "end": 13844, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 13844, + "end": 13845, + "value": "]" + }, + { + "type": "comma", + "start": 13845, + "end": 13846, + "value": "," + }, + { + "type": "whitespace", + "start": 13846, + "end": 13847, + "value": " " + }, + { + "type": "operator", + "start": 13847, + "end": 13848, + "value": "%" + }, + { + "type": "brace", + "start": 13848, + "end": 13849, + "value": ")" + }, + { + "type": "whitespace", + "start": 13849, + "end": 13852, + "value": "\n " + }, + { + "type": "operator", + "start": 13852, + "end": 13854, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13854, + "end": 13855, + "value": " " + }, + { + "type": "word", + "start": 13855, + "end": 13859, + "value": "line" + }, + { + "type": "brace", + "start": 13859, + "end": 13860, + "value": "(" + }, + { + "type": "brace", + "start": 13860, + "end": 13861, + "value": "[" + }, + { + "type": "whitespace", + "start": 13861, + "end": 13869, + "value": "\n " + }, + { + "type": "operator", + "start": 13869, + "end": 13870, + "value": "-" + }, + { + "type": "number", + "start": 13870, + "end": 13889, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 13889, + "end": 13890, + "value": "," + }, + { + "type": "whitespace", + "start": 13890, + "end": 13898, + "value": "\n " + }, + { + "type": "number", + "start": 13898, + "end": 13918, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 13918, + "end": 13924, + "value": "\n " + }, + { + "type": "brace", + "start": 13924, + "end": 13925, + "value": "]" + }, + { + "type": "comma", + "start": 13925, + "end": 13926, + "value": "," + }, + { + "type": "whitespace", + "start": 13926, + "end": 13927, + "value": " " + }, + { + "type": "operator", + "start": 13927, + "end": 13928, + "value": "%" + }, + { + "type": "brace", + "start": 13928, + "end": 13929, + "value": ")" + }, + { + "type": "whitespace", + "start": 13929, + "end": 13932, + "value": "\n " + }, + { + "type": "operator", + "start": 13932, + "end": 13934, + "value": "|>" + }, + { + "type": "whitespace", + "start": 13934, + "end": 13935, + "value": " " + }, + { + "type": "word", + "start": 13935, + "end": 13939, + "value": "line" + }, + { + "type": "brace", + "start": 13939, + "end": 13940, + "value": "(" + }, + { + "type": "brace", + "start": 13940, + "end": 13941, + "value": "[" + }, + { + "type": "whitespace", + "start": 13941, + "end": 13949, + "value": "\n " + }, + { + "type": "operator", + "start": 13949, + "end": 13950, + "value": "-" + }, + { + "type": "number", + "start": 13950, + "end": 13968, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 13968, + "end": 13969, + "value": "," + }, + { + "type": "whitespace", + "start": 13969, + "end": 13977, + "value": "\n " + }, + { + "type": "operator", + "start": 13977, + "end": 13978, + "value": "-" + }, + { + "type": "number", + "start": 13978, + "end": 13997, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 13997, + "end": 14003, + "value": "\n " + }, + { + "type": "brace", + "start": 14003, + "end": 14004, + "value": "]" + }, + { + "type": "comma", + "start": 14004, + "end": 14005, + "value": "," + }, + { + "type": "whitespace", + "start": 14005, + "end": 14006, + "value": " " + }, + { + "type": "operator", + "start": 14006, + "end": 14007, + "value": "%" + }, + { + "type": "brace", + "start": 14007, + "end": 14008, + "value": ")" + }, + { + "type": "whitespace", + "start": 14008, + "end": 14011, + "value": "\n " + }, + { + "type": "operator", + "start": 14011, + "end": 14013, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14013, + "end": 14014, + "value": " " + }, + { + "type": "word", + "start": 14014, + "end": 14018, + "value": "line" + }, + { + "type": "brace", + "start": 14018, + "end": 14019, + "value": "(" + }, + { + "type": "brace", + "start": 14019, + "end": 14020, + "value": "[" + }, + { + "type": "whitespace", + "start": 14020, + "end": 14028, + "value": "\n " + }, + { + "type": "operator", + "start": 14028, + "end": 14029, + "value": "-" + }, + { + "type": "number", + "start": 14029, + "end": 14047, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 14047, + "end": 14048, + "value": "," + }, + { + "type": "whitespace", + "start": 14048, + "end": 14056, + "value": "\n " + }, + { + "type": "operator", + "start": 14056, + "end": 14057, + "value": "-" + }, + { + "type": "number", + "start": 14057, + "end": 14076, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 14076, + "end": 14082, + "value": "\n " + }, + { + "type": "brace", + "start": 14082, + "end": 14083, + "value": "]" + }, + { + "type": "comma", + "start": 14083, + "end": 14084, + "value": "," + }, + { + "type": "whitespace", + "start": 14084, + "end": 14085, + "value": " " + }, + { + "type": "operator", + "start": 14085, + "end": 14086, + "value": "%" + }, + { + "type": "brace", + "start": 14086, + "end": 14087, + "value": ")" + }, + { + "type": "whitespace", + "start": 14087, + "end": 14090, + "value": "\n " + }, + { + "type": "operator", + "start": 14090, + "end": 14092, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14092, + "end": 14093, + "value": " " + }, + { + "type": "word", + "start": 14093, + "end": 14097, + "value": "line" + }, + { + "type": "brace", + "start": 14097, + "end": 14098, + "value": "(" + }, + { + "type": "brace", + "start": 14098, + "end": 14099, + "value": "[" + }, + { + "type": "number", + "start": 14099, + "end": 14116, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 14116, + "end": 14117, + "value": "," + }, + { + "type": "whitespace", + "start": 14117, + "end": 14118, + "value": " " + }, + { + "type": "number", + "start": 14118, + "end": 14136, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 14136, + "end": 14137, + "value": "]" + }, + { + "type": "comma", + "start": 14137, + "end": 14138, + "value": "," + }, + { + "type": "whitespace", + "start": 14138, + "end": 14139, + "value": " " + }, + { + "type": "operator", + "start": 14139, + "end": 14140, + "value": "%" + }, + { + "type": "brace", + "start": 14140, + "end": 14141, + "value": ")" + }, + { + "type": "whitespace", + "start": 14141, + "end": 14144, + "value": "\n " + }, + { + "type": "operator", + "start": 14144, + "end": 14146, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14146, + "end": 14147, + "value": " " + }, + { + "type": "word", + "start": 14147, + "end": 14151, + "value": "line" + }, + { + "type": "brace", + "start": 14151, + "end": 14152, + "value": "(" + }, + { + "type": "brace", + "start": 14152, + "end": 14153, + "value": "[" + }, + { + "type": "whitespace", + "start": 14153, + "end": 14161, + "value": "\n " + }, + { + "type": "number", + "start": 14161, + "end": 14180, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 14180, + "end": 14181, + "value": "," + }, + { + "type": "whitespace", + "start": 14181, + "end": 14189, + "value": "\n " + }, + { + "type": "operator", + "start": 14189, + "end": 14190, + "value": "-" + }, + { + "type": "number", + "start": 14190, + "end": 14209, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 14209, + "end": 14215, + "value": "\n " + }, + { + "type": "brace", + "start": 14215, + "end": 14216, + "value": "]" + }, + { + "type": "comma", + "start": 14216, + "end": 14217, + "value": "," + }, + { + "type": "whitespace", + "start": 14217, + "end": 14218, + "value": " " + }, + { + "type": "operator", + "start": 14218, + "end": 14219, + "value": "%" + }, + { + "type": "brace", + "start": 14219, + "end": 14220, + "value": ")" + }, + { + "type": "whitespace", + "start": 14220, + "end": 14223, + "value": "\n " + }, + { + "type": "operator", + "start": 14223, + "end": 14225, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14225, + "end": 14226, + "value": " " + }, + { + "type": "word", + "start": 14226, + "end": 14230, + "value": "line" + }, + { + "type": "brace", + "start": 14230, + "end": 14231, + "value": "(" + }, + { + "type": "brace", + "start": 14231, + "end": 14232, + "value": "[" + }, + { + "type": "number", + "start": 14232, + "end": 14250, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 14250, + "end": 14251, + "value": "," + }, + { + "type": "whitespace", + "start": 14251, + "end": 14252, + "value": " " + }, + { + "type": "number", + "start": 14252, + "end": 14269, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 14269, + "end": 14270, + "value": "]" + }, + { + "type": "comma", + "start": 14270, + "end": 14271, + "value": "," + }, + { + "type": "whitespace", + "start": 14271, + "end": 14272, + "value": " " + }, + { + "type": "operator", + "start": 14272, + "end": 14273, + "value": "%" + }, + { + "type": "brace", + "start": 14273, + "end": 14274, + "value": ")" + }, + { + "type": "whitespace", + "start": 14274, + "end": 14277, + "value": "\n " + }, + { + "type": "operator", + "start": 14277, + "end": 14279, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14279, + "end": 14280, + "value": " " + }, + { + "type": "word", + "start": 14280, + "end": 14284, + "value": "line" + }, + { + "type": "brace", + "start": 14284, + "end": 14285, + "value": "(" + }, + { + "type": "brace", + "start": 14285, + "end": 14286, + "value": "[" + }, + { + "type": "whitespace", + "start": 14286, + "end": 14294, + "value": "\n " + }, + { + "type": "number", + "start": 14294, + "end": 14313, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 14313, + "end": 14314, + "value": "," + }, + { + "type": "whitespace", + "start": 14314, + "end": 14322, + "value": "\n " + }, + { + "type": "operator", + "start": 14322, + "end": 14323, + "value": "-" + }, + { + "type": "number", + "start": 14323, + "end": 14341, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 14341, + "end": 14347, + "value": "\n " + }, + { + "type": "brace", + "start": 14347, + "end": 14348, + "value": "]" + }, + { + "type": "comma", + "start": 14348, + "end": 14349, + "value": "," + }, + { + "type": "whitespace", + "start": 14349, + "end": 14350, + "value": " " + }, + { + "type": "operator", + "start": 14350, + "end": 14351, + "value": "%" + }, + { + "type": "brace", + "start": 14351, + "end": 14352, + "value": ")" + }, + { + "type": "whitespace", + "start": 14352, + "end": 14355, + "value": "\n " + }, + { + "type": "operator", + "start": 14355, + "end": 14357, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14357, + "end": 14358, + "value": " " + }, + { + "type": "word", + "start": 14358, + "end": 14362, + "value": "line" + }, + { + "type": "brace", + "start": 14362, + "end": 14363, + "value": "(" + }, + { + "type": "brace", + "start": 14363, + "end": 14364, + "value": "[" + }, + { + "type": "number", + "start": 14364, + "end": 14382, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 14382, + "end": 14383, + "value": "," + }, + { + "type": "whitespace", + "start": 14383, + "end": 14384, + "value": " " + }, + { + "type": "number", + "start": 14384, + "end": 14402, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 14402, + "end": 14403, + "value": "]" + }, + { + "type": "comma", + "start": 14403, + "end": 14404, + "value": "," + }, + { + "type": "whitespace", + "start": 14404, + "end": 14405, + "value": " " + }, + { + "type": "operator", + "start": 14405, + "end": 14406, + "value": "%" + }, + { + "type": "brace", + "start": 14406, + "end": 14407, + "value": ")" + }, + { + "type": "whitespace", + "start": 14407, + "end": 14410, + "value": "\n " + }, + { + "type": "operator", + "start": 14410, + "end": 14412, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14412, + "end": 14413, + "value": " " + }, + { + "type": "word", + "start": 14413, + "end": 14417, + "value": "line" + }, + { + "type": "brace", + "start": 14417, + "end": 14418, + "value": "(" + }, + { + "type": "brace", + "start": 14418, + "end": 14419, + "value": "[" + }, + { + "type": "whitespace", + "start": 14419, + "end": 14427, + "value": "\n " + }, + { + "type": "number", + "start": 14427, + "end": 14445, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 14445, + "end": 14446, + "value": "," + }, + { + "type": "whitespace", + "start": 14446, + "end": 14454, + "value": "\n " + }, + { + "type": "number", + "start": 14454, + "end": 14473, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 14473, + "end": 14479, + "value": "\n " + }, + { + "type": "brace", + "start": 14479, + "end": 14480, + "value": "]" + }, + { + "type": "comma", + "start": 14480, + "end": 14481, + "value": "," + }, + { + "type": "whitespace", + "start": 14481, + "end": 14482, + "value": " " + }, + { + "type": "operator", + "start": 14482, + "end": 14483, + "value": "%" + }, + { + "type": "brace", + "start": 14483, + "end": 14484, + "value": ")" + }, + { + "type": "whitespace", + "start": 14484, + "end": 14487, + "value": "\n " + }, + { + "type": "operator", + "start": 14487, + "end": 14489, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14489, + "end": 14490, + "value": " " + }, + { + "type": "word", + "start": 14490, + "end": 14494, + "value": "line" + }, + { + "type": "brace", + "start": 14494, + "end": 14495, + "value": "(" + }, + { + "type": "brace", + "start": 14495, + "end": 14496, + "value": "[" + }, + { + "type": "number", + "start": 14496, + "end": 14514, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 14514, + "end": 14515, + "value": "," + }, + { + "type": "whitespace", + "start": 14515, + "end": 14516, + "value": " " + }, + { + "type": "number", + "start": 14516, + "end": 14534, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 14534, + "end": 14535, + "value": "]" + }, + { + "type": "comma", + "start": 14535, + "end": 14536, + "value": "," + }, + { + "type": "whitespace", + "start": 14536, + "end": 14537, + "value": " " + }, + { + "type": "operator", + "start": 14537, + "end": 14538, + "value": "%" + }, + { + "type": "brace", + "start": 14538, + "end": 14539, + "value": ")" + }, + { + "type": "whitespace", + "start": 14539, + "end": 14542, + "value": "\n " + }, + { + "type": "operator", + "start": 14542, + "end": 14544, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14544, + "end": 14545, + "value": " " + }, + { + "type": "word", + "start": 14545, + "end": 14549, + "value": "line" + }, + { + "type": "brace", + "start": 14549, + "end": 14550, + "value": "(" + }, + { + "type": "brace", + "start": 14550, + "end": 14551, + "value": "[" + }, + { + "type": "whitespace", + "start": 14551, + "end": 14559, + "value": "\n " + }, + { + "type": "operator", + "start": 14559, + "end": 14560, + "value": "-" + }, + { + "type": "number", + "start": 14560, + "end": 14579, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 14579, + "end": 14580, + "value": "," + }, + { + "type": "whitespace", + "start": 14580, + "end": 14588, + "value": "\n " + }, + { + "type": "operator", + "start": 14588, + "end": 14589, + "value": "-" + }, + { + "type": "number", + "start": 14589, + "end": 14607, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 14607, + "end": 14613, + "value": "\n " + }, + { + "type": "brace", + "start": 14613, + "end": 14614, + "value": "]" + }, + { + "type": "comma", + "start": 14614, + "end": 14615, + "value": "," + }, + { + "type": "whitespace", + "start": 14615, + "end": 14616, + "value": " " + }, + { + "type": "operator", + "start": 14616, + "end": 14617, + "value": "%" + }, + { + "type": "brace", + "start": 14617, + "end": 14618, + "value": ")" + }, + { + "type": "whitespace", + "start": 14618, + "end": 14621, + "value": "\n " + }, + { + "type": "operator", + "start": 14621, + "end": 14623, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14623, + "end": 14624, + "value": " " + }, + { + "type": "word", + "start": 14624, + "end": 14628, + "value": "line" + }, + { + "type": "brace", + "start": 14628, + "end": 14629, + "value": "(" + }, + { + "type": "brace", + "start": 14629, + "end": 14630, + "value": "[" + }, + { + "type": "whitespace", + "start": 14630, + "end": 14638, + "value": "\n " + }, + { + "type": "number", + "start": 14638, + "end": 14656, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 14656, + "end": 14657, + "value": "," + }, + { + "type": "whitespace", + "start": 14657, + "end": 14665, + "value": "\n " + }, + { + "type": "operator", + "start": 14665, + "end": 14666, + "value": "-" + }, + { + "type": "number", + "start": 14666, + "end": 14684, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 14684, + "end": 14690, + "value": "\n " + }, + { + "type": "brace", + "start": 14690, + "end": 14691, + "value": "]" + }, + { + "type": "comma", + "start": 14691, + "end": 14692, + "value": "," + }, + { + "type": "whitespace", + "start": 14692, + "end": 14693, + "value": " " + }, + { + "type": "operator", + "start": 14693, + "end": 14694, + "value": "%" + }, + { + "type": "brace", + "start": 14694, + "end": 14695, + "value": ")" + }, + { + "type": "whitespace", + "start": 14695, + "end": 14698, + "value": "\n " + }, + { + "type": "operator", + "start": 14698, + "end": 14700, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14700, + "end": 14701, + "value": " " + }, + { + "type": "word", + "start": 14701, + "end": 14705, + "value": "line" + }, + { + "type": "brace", + "start": 14705, + "end": 14706, + "value": "(" + }, + { + "type": "brace", + "start": 14706, + "end": 14707, + "value": "[" + }, + { + "type": "whitespace", + "start": 14707, + "end": 14715, + "value": "\n " + }, + { + "type": "operator", + "start": 14715, + "end": 14716, + "value": "-" + }, + { + "type": "number", + "start": 14716, + "end": 14734, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 14734, + "end": 14735, + "value": "," + }, + { + "type": "whitespace", + "start": 14735, + "end": 14743, + "value": "\n " + }, + { + "type": "operator", + "start": 14743, + "end": 14744, + "value": "-" + }, + { + "type": "number", + "start": 14744, + "end": 14762, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 14762, + "end": 14768, + "value": "\n " + }, + { + "type": "brace", + "start": 14768, + "end": 14769, + "value": "]" + }, + { + "type": "comma", + "start": 14769, + "end": 14770, + "value": "," + }, + { + "type": "whitespace", + "start": 14770, + "end": 14771, + "value": " " + }, + { + "type": "operator", + "start": 14771, + "end": 14772, + "value": "%" + }, + { + "type": "brace", + "start": 14772, + "end": 14773, + "value": ")" + }, + { + "type": "whitespace", + "start": 14773, + "end": 14776, + "value": "\n " + }, + { + "type": "operator", + "start": 14776, + "end": 14778, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14778, + "end": 14779, + "value": " " + }, + { + "type": "word", + "start": 14779, + "end": 14783, + "value": "line" + }, + { + "type": "brace", + "start": 14783, + "end": 14784, + "value": "(" + }, + { + "type": "brace", + "start": 14784, + "end": 14785, + "value": "[" + }, + { + "type": "whitespace", + "start": 14785, + "end": 14793, + "value": "\n " + }, + { + "type": "number", + "start": 14793, + "end": 14813, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 14813, + "end": 14814, + "value": "," + }, + { + "type": "whitespace", + "start": 14814, + "end": 14822, + "value": "\n " + }, + { + "type": "operator", + "start": 14822, + "end": 14823, + "value": "-" + }, + { + "type": "number", + "start": 14823, + "end": 14842, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 14842, + "end": 14848, + "value": "\n " + }, + { + "type": "brace", + "start": 14848, + "end": 14849, + "value": "]" + }, + { + "type": "comma", + "start": 14849, + "end": 14850, + "value": "," + }, + { + "type": "whitespace", + "start": 14850, + "end": 14851, + "value": " " + }, + { + "type": "operator", + "start": 14851, + "end": 14852, + "value": "%" + }, + { + "type": "brace", + "start": 14852, + "end": 14853, + "value": ")" + }, + { + "type": "whitespace", + "start": 14853, + "end": 14856, + "value": "\n " + }, + { + "type": "operator", + "start": 14856, + "end": 14858, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14858, + "end": 14859, + "value": " " + }, + { + "type": "word", + "start": 14859, + "end": 14863, + "value": "line" + }, + { + "type": "brace", + "start": 14863, + "end": 14864, + "value": "(" + }, + { + "type": "brace", + "start": 14864, + "end": 14865, + "value": "[" + }, + { + "type": "whitespace", + "start": 14865, + "end": 14873, + "value": "\n " + }, + { + "type": "operator", + "start": 14873, + "end": 14874, + "value": "-" + }, + { + "type": "number", + "start": 14874, + "end": 14892, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 14892, + "end": 14893, + "value": "," + }, + { + "type": "whitespace", + "start": 14893, + "end": 14901, + "value": "\n " + }, + { + "type": "number", + "start": 14901, + "end": 14920, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 14920, + "end": 14926, + "value": "\n " + }, + { + "type": "brace", + "start": 14926, + "end": 14927, + "value": "]" + }, + { + "type": "comma", + "start": 14927, + "end": 14928, + "value": "," + }, + { + "type": "whitespace", + "start": 14928, + "end": 14929, + "value": " " + }, + { + "type": "operator", + "start": 14929, + "end": 14930, + "value": "%" + }, + { + "type": "brace", + "start": 14930, + "end": 14931, + "value": ")" + }, + { + "type": "whitespace", + "start": 14931, + "end": 14934, + "value": "\n " + }, + { + "type": "operator", + "start": 14934, + "end": 14936, + "value": "|>" + }, + { + "type": "whitespace", + "start": 14936, + "end": 14937, + "value": " " + }, + { + "type": "word", + "start": 14937, + "end": 14941, + "value": "line" + }, + { + "type": "brace", + "start": 14941, + "end": 14942, + "value": "(" + }, + { + "type": "brace", + "start": 14942, + "end": 14943, + "value": "[" + }, + { + "type": "whitespace", + "start": 14943, + "end": 14951, + "value": "\n " + }, + { + "type": "operator", + "start": 14951, + "end": 14952, + "value": "-" + }, + { + "type": "number", + "start": 14952, + "end": 14970, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 14970, + "end": 14971, + "value": "," + }, + { + "type": "whitespace", + "start": 14971, + "end": 14979, + "value": "\n " + }, + { + "type": "number", + "start": 14979, + "end": 14997, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 14997, + "end": 15003, + "value": "\n " + }, + { + "type": "brace", + "start": 15003, + "end": 15004, + "value": "]" + }, + { + "type": "comma", + "start": 15004, + "end": 15005, + "value": "," + }, + { + "type": "whitespace", + "start": 15005, + "end": 15006, + "value": " " + }, + { + "type": "operator", + "start": 15006, + "end": 15007, + "value": "%" + }, + { + "type": "brace", + "start": 15007, + "end": 15008, + "value": ")" + }, + { + "type": "whitespace", + "start": 15008, + "end": 15011, + "value": "\n " + }, + { + "type": "operator", + "start": 15011, + "end": 15013, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15013, + "end": 15014, + "value": " " + }, + { + "type": "word", + "start": 15014, + "end": 15018, + "value": "line" + }, + { + "type": "brace", + "start": 15018, + "end": 15019, + "value": "(" + }, + { + "type": "brace", + "start": 15019, + "end": 15020, + "value": "[" + }, + { + "type": "whitespace", + "start": 15020, + "end": 15028, + "value": "\n " + }, + { + "type": "operator", + "start": 15028, + "end": 15029, + "value": "-" + }, + { + "type": "number", + "start": 15029, + "end": 15047, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 15047, + "end": 15048, + "value": "," + }, + { + "type": "whitespace", + "start": 15048, + "end": 15056, + "value": "\n " + }, + { + "type": "number", + "start": 15056, + "end": 15074, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 15074, + "end": 15080, + "value": "\n " + }, + { + "type": "brace", + "start": 15080, + "end": 15081, + "value": "]" + }, + { + "type": "comma", + "start": 15081, + "end": 15082, + "value": "," + }, + { + "type": "whitespace", + "start": 15082, + "end": 15083, + "value": " " + }, + { + "type": "operator", + "start": 15083, + "end": 15084, + "value": "%" + }, + { + "type": "brace", + "start": 15084, + "end": 15085, + "value": ")" + }, + { + "type": "whitespace", + "start": 15085, + "end": 15088, + "value": "\n " + }, + { + "type": "operator", + "start": 15088, + "end": 15090, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15090, + "end": 15091, + "value": " " + }, + { + "type": "word", + "start": 15091, + "end": 15095, + "value": "line" + }, + { + "type": "brace", + "start": 15095, + "end": 15096, + "value": "(" + }, + { + "type": "brace", + "start": 15096, + "end": 15097, + "value": "[" + }, + { + "type": "whitespace", + "start": 15097, + "end": 15105, + "value": "\n " + }, + { + "type": "operator", + "start": 15105, + "end": 15106, + "value": "-" + }, + { + "type": "number", + "start": 15106, + "end": 15124, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 15124, + "end": 15125, + "value": "," + }, + { + "type": "whitespace", + "start": 15125, + "end": 15133, + "value": "\n " + }, + { + "type": "operator", + "start": 15133, + "end": 15134, + "value": "-" + }, + { + "type": "number", + "start": 15134, + "end": 15153, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 15153, + "end": 15159, + "value": "\n " + }, + { + "type": "brace", + "start": 15159, + "end": 15160, + "value": "]" + }, + { + "type": "comma", + "start": 15160, + "end": 15161, + "value": "," + }, + { + "type": "whitespace", + "start": 15161, + "end": 15162, + "value": " " + }, + { + "type": "operator", + "start": 15162, + "end": 15163, + "value": "%" + }, + { + "type": "brace", + "start": 15163, + "end": 15164, + "value": ")" + }, + { + "type": "whitespace", + "start": 15164, + "end": 15167, + "value": "\n " + }, + { + "type": "operator", + "start": 15167, + "end": 15169, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15169, + "end": 15170, + "value": " " + }, + { + "type": "word", + "start": 15170, + "end": 15174, + "value": "line" + }, + { + "type": "brace", + "start": 15174, + "end": 15175, + "value": "(" + }, + { + "type": "brace", + "start": 15175, + "end": 15176, + "value": "[" + }, + { + "type": "whitespace", + "start": 15176, + "end": 15184, + "value": "\n " + }, + { + "type": "number", + "start": 15184, + "end": 15203, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 15203, + "end": 15204, + "value": "," + }, + { + "type": "whitespace", + "start": 15204, + "end": 15212, + "value": "\n " + }, + { + "type": "number", + "start": 15212, + "end": 15231, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 15231, + "end": 15237, + "value": "\n " + }, + { + "type": "brace", + "start": 15237, + "end": 15238, + "value": "]" + }, + { + "type": "comma", + "start": 15238, + "end": 15239, + "value": "," + }, + { + "type": "whitespace", + "start": 15239, + "end": 15240, + "value": " " + }, + { + "type": "operator", + "start": 15240, + "end": 15241, + "value": "%" + }, + { + "type": "brace", + "start": 15241, + "end": 15242, + "value": ")" + }, + { + "type": "whitespace", + "start": 15242, + "end": 15245, + "value": "\n " + }, + { + "type": "operator", + "start": 15245, + "end": 15247, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15247, + "end": 15248, + "value": " " + }, + { + "type": "word", + "start": 15248, + "end": 15252, + "value": "line" + }, + { + "type": "brace", + "start": 15252, + "end": 15253, + "value": "(" + }, + { + "type": "brace", + "start": 15253, + "end": 15254, + "value": "[" + }, + { + "type": "whitespace", + "start": 15254, + "end": 15262, + "value": "\n " + }, + { + "type": "number", + "start": 15262, + "end": 15281, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 15281, + "end": 15282, + "value": "," + }, + { + "type": "whitespace", + "start": 15282, + "end": 15290, + "value": "\n " + }, + { + "type": "number", + "start": 15290, + "end": 15309, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 15309, + "end": 15315, + "value": "\n " + }, + { + "type": "brace", + "start": 15315, + "end": 15316, + "value": "]" + }, + { + "type": "comma", + "start": 15316, + "end": 15317, + "value": "," + }, + { + "type": "whitespace", + "start": 15317, + "end": 15318, + "value": " " + }, + { + "type": "operator", + "start": 15318, + "end": 15319, + "value": "%" + }, + { + "type": "brace", + "start": 15319, + "end": 15320, + "value": ")" + }, + { + "type": "whitespace", + "start": 15320, + "end": 15323, + "value": "\n " + }, + { + "type": "operator", + "start": 15323, + "end": 15325, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15325, + "end": 15326, + "value": " " + }, + { + "type": "word", + "start": 15326, + "end": 15330, + "value": "line" + }, + { + "type": "brace", + "start": 15330, + "end": 15331, + "value": "(" + }, + { + "type": "brace", + "start": 15331, + "end": 15332, + "value": "[" + }, + { + "type": "whitespace", + "start": 15332, + "end": 15340, + "value": "\n " + }, + { + "type": "operator", + "start": 15340, + "end": 15341, + "value": "-" + }, + { + "type": "number", + "start": 15341, + "end": 15360, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 15360, + "end": 15361, + "value": "," + }, + { + "type": "whitespace", + "start": 15361, + "end": 15369, + "value": "\n " + }, + { + "type": "number", + "start": 15369, + "end": 15387, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 15387, + "end": 15393, + "value": "\n " + }, + { + "type": "brace", + "start": 15393, + "end": 15394, + "value": "]" + }, + { + "type": "comma", + "start": 15394, + "end": 15395, + "value": "," + }, + { + "type": "whitespace", + "start": 15395, + "end": 15396, + "value": " " + }, + { + "type": "operator", + "start": 15396, + "end": 15397, + "value": "%" + }, + { + "type": "brace", + "start": 15397, + "end": 15398, + "value": ")" + }, + { + "type": "whitespace", + "start": 15398, + "end": 15401, + "value": "\n " + }, + { + "type": "operator", + "start": 15401, + "end": 15403, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15403, + "end": 15404, + "value": " " + }, + { + "type": "word", + "start": 15404, + "end": 15408, + "value": "line" + }, + { + "type": "brace", + "start": 15408, + "end": 15409, + "value": "(" + }, + { + "type": "brace", + "start": 15409, + "end": 15410, + "value": "[" + }, + { + "type": "whitespace", + "start": 15410, + "end": 15418, + "value": "\n " + }, + { + "type": "operator", + "start": 15418, + "end": 15419, + "value": "-" + }, + { + "type": "number", + "start": 15419, + "end": 15438, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 15438, + "end": 15439, + "value": "," + }, + { + "type": "whitespace", + "start": 15439, + "end": 15447, + "value": "\n " + }, + { + "type": "operator", + "start": 15447, + "end": 15448, + "value": "-" + }, + { + "type": "number", + "start": 15448, + "end": 15467, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 15467, + "end": 15473, + "value": "\n " + }, + { + "type": "brace", + "start": 15473, + "end": 15474, + "value": "]" + }, + { + "type": "comma", + "start": 15474, + "end": 15475, + "value": "," + }, + { + "type": "whitespace", + "start": 15475, + "end": 15476, + "value": " " + }, + { + "type": "operator", + "start": 15476, + "end": 15477, + "value": "%" + }, + { + "type": "brace", + "start": 15477, + "end": 15478, + "value": ")" + }, + { + "type": "whitespace", + "start": 15478, + "end": 15481, + "value": "\n " + }, + { + "type": "operator", + "start": 15481, + "end": 15483, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15483, + "end": 15484, + "value": " " + }, + { + "type": "word", + "start": 15484, + "end": 15488, + "value": "line" + }, + { + "type": "brace", + "start": 15488, + "end": 15489, + "value": "(" + }, + { + "type": "brace", + "start": 15489, + "end": 15490, + "value": "[" + }, + { + "type": "whitespace", + "start": 15490, + "end": 15498, + "value": "\n " + }, + { + "type": "number", + "start": 15498, + "end": 15516, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 15516, + "end": 15517, + "value": "," + }, + { + "type": "whitespace", + "start": 15517, + "end": 15525, + "value": "\n " + }, + { + "type": "operator", + "start": 15525, + "end": 15526, + "value": "-" + }, + { + "type": "number", + "start": 15526, + "end": 15545, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 15545, + "end": 15551, + "value": "\n " + }, + { + "type": "brace", + "start": 15551, + "end": 15552, + "value": "]" + }, + { + "type": "comma", + "start": 15552, + "end": 15553, + "value": "," + }, + { + "type": "whitespace", + "start": 15553, + "end": 15554, + "value": " " + }, + { + "type": "operator", + "start": 15554, + "end": 15555, + "value": "%" + }, + { + "type": "brace", + "start": 15555, + "end": 15556, + "value": ")" + }, + { + "type": "whitespace", + "start": 15556, + "end": 15559, + "value": "\n " + }, + { + "type": "operator", + "start": 15559, + "end": 15561, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15561, + "end": 15562, + "value": " " + }, + { + "type": "word", + "start": 15562, + "end": 15566, + "value": "line" + }, + { + "type": "brace", + "start": 15566, + "end": 15567, + "value": "(" + }, + { + "type": "brace", + "start": 15567, + "end": 15568, + "value": "[" + }, + { + "type": "whitespace", + "start": 15568, + "end": 15576, + "value": "\n " + }, + { + "type": "number", + "start": 15576, + "end": 15597, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 15597, + "end": 15598, + "value": "," + }, + { + "type": "whitespace", + "start": 15598, + "end": 15606, + "value": "\n " + }, + { + "type": "operator", + "start": 15606, + "end": 15607, + "value": "-" + }, + { + "type": "number", + "start": 15607, + "end": 15625, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 15625, + "end": 15631, + "value": "\n " + }, + { + "type": "brace", + "start": 15631, + "end": 15632, + "value": "]" + }, + { + "type": "comma", + "start": 15632, + "end": 15633, + "value": "," + }, + { + "type": "whitespace", + "start": 15633, + "end": 15634, + "value": " " + }, + { + "type": "operator", + "start": 15634, + "end": 15635, + "value": "%" + }, + { + "type": "brace", + "start": 15635, + "end": 15636, + "value": ")" + }, + { + "type": "whitespace", + "start": 15636, + "end": 15639, + "value": "\n " + }, + { + "type": "operator", + "start": 15639, + "end": 15641, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15641, + "end": 15642, + "value": " " + }, + { + "type": "word", + "start": 15642, + "end": 15646, + "value": "line" + }, + { + "type": "brace", + "start": 15646, + "end": 15647, + "value": "(" + }, + { + "type": "brace", + "start": 15647, + "end": 15648, + "value": "[" + }, + { + "type": "whitespace", + "start": 15648, + "end": 15656, + "value": "\n " + }, + { + "type": "number", + "start": 15656, + "end": 15674, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 15674, + "end": 15675, + "value": "," + }, + { + "type": "whitespace", + "start": 15675, + "end": 15683, + "value": "\n " + }, + { + "type": "operator", + "start": 15683, + "end": 15684, + "value": "-" + }, + { + "type": "number", + "start": 15684, + "end": 15702, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 15702, + "end": 15708, + "value": "\n " + }, + { + "type": "brace", + "start": 15708, + "end": 15709, + "value": "]" + }, + { + "type": "comma", + "start": 15709, + "end": 15710, + "value": "," + }, + { + "type": "whitespace", + "start": 15710, + "end": 15711, + "value": " " + }, + { + "type": "operator", + "start": 15711, + "end": 15712, + "value": "%" + }, + { + "type": "brace", + "start": 15712, + "end": 15713, + "value": ")" + }, + { + "type": "whitespace", + "start": 15713, + "end": 15716, + "value": "\n " + }, + { + "type": "operator", + "start": 15716, + "end": 15718, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15718, + "end": 15719, + "value": " " + }, + { + "type": "word", + "start": 15719, + "end": 15723, + "value": "line" + }, + { + "type": "brace", + "start": 15723, + "end": 15724, + "value": "(" + }, + { + "type": "brace", + "start": 15724, + "end": 15725, + "value": "[" + }, + { + "type": "whitespace", + "start": 15725, + "end": 15733, + "value": "\n " + }, + { + "type": "operator", + "start": 15733, + "end": 15734, + "value": "-" + }, + { + "type": "number", + "start": 15734, + "end": 15752, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 15752, + "end": 15753, + "value": "," + }, + { + "type": "whitespace", + "start": 15753, + "end": 15761, + "value": "\n " + }, + { + "type": "number", + "start": 15761, + "end": 15779, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 15779, + "end": 15785, + "value": "\n " + }, + { + "type": "brace", + "start": 15785, + "end": 15786, + "value": "]" + }, + { + "type": "comma", + "start": 15786, + "end": 15787, + "value": "," + }, + { + "type": "whitespace", + "start": 15787, + "end": 15788, + "value": " " + }, + { + "type": "operator", + "start": 15788, + "end": 15789, + "value": "%" + }, + { + "type": "brace", + "start": 15789, + "end": 15790, + "value": ")" + }, + { + "type": "whitespace", + "start": 15790, + "end": 15793, + "value": "\n " + }, + { + "type": "operator", + "start": 15793, + "end": 15795, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15795, + "end": 15796, + "value": " " + }, + { + "type": "word", + "start": 15796, + "end": 15800, + "value": "line" + }, + { + "type": "brace", + "start": 15800, + "end": 15801, + "value": "(" + }, + { + "type": "brace", + "start": 15801, + "end": 15802, + "value": "[" + }, + { + "type": "number", + "start": 15802, + "end": 15820, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 15820, + "end": 15821, + "value": "," + }, + { + "type": "whitespace", + "start": 15821, + "end": 15822, + "value": " " + }, + { + "type": "number", + "start": 15822, + "end": 15840, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 15840, + "end": 15841, + "value": "]" + }, + { + "type": "comma", + "start": 15841, + "end": 15842, + "value": "," + }, + { + "type": "whitespace", + "start": 15842, + "end": 15843, + "value": " " + }, + { + "type": "operator", + "start": 15843, + "end": 15844, + "value": "%" + }, + { + "type": "brace", + "start": 15844, + "end": 15845, + "value": ")" + }, + { + "type": "whitespace", + "start": 15845, + "end": 15848, + "value": "\n " + }, + { + "type": "operator", + "start": 15848, + "end": 15850, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15850, + "end": 15851, + "value": " " + }, + { + "type": "word", + "start": 15851, + "end": 15855, + "value": "line" + }, + { + "type": "brace", + "start": 15855, + "end": 15856, + "value": "(" + }, + { + "type": "brace", + "start": 15856, + "end": 15857, + "value": "[" + }, + { + "type": "whitespace", + "start": 15857, + "end": 15865, + "value": "\n " + }, + { + "type": "operator", + "start": 15865, + "end": 15866, + "value": "-" + }, + { + "type": "number", + "start": 15866, + "end": 15885, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 15885, + "end": 15886, + "value": "," + }, + { + "type": "whitespace", + "start": 15886, + "end": 15894, + "value": "\n " + }, + { + "type": "number", + "start": 15894, + "end": 15914, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 15914, + "end": 15920, + "value": "\n " + }, + { + "type": "brace", + "start": 15920, + "end": 15921, + "value": "]" + }, + { + "type": "comma", + "start": 15921, + "end": 15922, + "value": "," + }, + { + "type": "whitespace", + "start": 15922, + "end": 15923, + "value": " " + }, + { + "type": "operator", + "start": 15923, + "end": 15924, + "value": "%" + }, + { + "type": "brace", + "start": 15924, + "end": 15925, + "value": ")" + }, + { + "type": "whitespace", + "start": 15925, + "end": 15928, + "value": "\n " + }, + { + "type": "operator", + "start": 15928, + "end": 15930, + "value": "|>" + }, + { + "type": "whitespace", + "start": 15930, + "end": 15931, + "value": " " + }, + { + "type": "word", + "start": 15931, + "end": 15935, + "value": "line" + }, + { + "type": "brace", + "start": 15935, + "end": 15936, + "value": "(" + }, + { + "type": "brace", + "start": 15936, + "end": 15937, + "value": "[" + }, + { + "type": "whitespace", + "start": 15937, + "end": 15945, + "value": "\n " + }, + { + "type": "operator", + "start": 15945, + "end": 15946, + "value": "-" + }, + { + "type": "number", + "start": 15946, + "end": 15964, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 15964, + "end": 15965, + "value": "," + }, + { + "type": "whitespace", + "start": 15965, + "end": 15973, + "value": "\n " + }, + { + "type": "operator", + "start": 15973, + "end": 15974, + "value": "-" + }, + { + "type": "number", + "start": 15974, + "end": 15993, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 15993, + "end": 15999, + "value": "\n " + }, + { + "type": "brace", + "start": 15999, + "end": 16000, + "value": "]" + }, + { + "type": "comma", + "start": 16000, + "end": 16001, + "value": "," + }, + { + "type": "whitespace", + "start": 16001, + "end": 16002, + "value": " " + }, + { + "type": "operator", + "start": 16002, + "end": 16003, + "value": "%" + }, + { + "type": "brace", + "start": 16003, + "end": 16004, + "value": ")" + }, + { + "type": "whitespace", + "start": 16004, + "end": 16007, + "value": "\n " + }, + { + "type": "operator", + "start": 16007, + "end": 16009, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16009, + "end": 16010, + "value": " " + }, + { + "type": "word", + "start": 16010, + "end": 16014, + "value": "line" + }, + { + "type": "brace", + "start": 16014, + "end": 16015, + "value": "(" + }, + { + "type": "brace", + "start": 16015, + "end": 16016, + "value": "[" + }, + { + "type": "whitespace", + "start": 16016, + "end": 16024, + "value": "\n " + }, + { + "type": "operator", + "start": 16024, + "end": 16025, + "value": "-" + }, + { + "type": "number", + "start": 16025, + "end": 16043, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 16043, + "end": 16044, + "value": "," + }, + { + "type": "whitespace", + "start": 16044, + "end": 16052, + "value": "\n " + }, + { + "type": "operator", + "start": 16052, + "end": 16053, + "value": "-" + }, + { + "type": "number", + "start": 16053, + "end": 16072, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 16072, + "end": 16078, + "value": "\n " + }, + { + "type": "brace", + "start": 16078, + "end": 16079, + "value": "]" + }, + { + "type": "comma", + "start": 16079, + "end": 16080, + "value": "," + }, + { + "type": "whitespace", + "start": 16080, + "end": 16081, + "value": " " + }, + { + "type": "operator", + "start": 16081, + "end": 16082, + "value": "%" + }, + { + "type": "brace", + "start": 16082, + "end": 16083, + "value": ")" + }, + { + "type": "whitespace", + "start": 16083, + "end": 16086, + "value": "\n " + }, + { + "type": "operator", + "start": 16086, + "end": 16088, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16088, + "end": 16089, + "value": " " + }, + { + "type": "word", + "start": 16089, + "end": 16093, + "value": "line" + }, + { + "type": "brace", + "start": 16093, + "end": 16094, + "value": "(" + }, + { + "type": "brace", + "start": 16094, + "end": 16095, + "value": "[" + }, + { + "type": "number", + "start": 16095, + "end": 16112, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 16112, + "end": 16113, + "value": "," + }, + { + "type": "whitespace", + "start": 16113, + "end": 16114, + "value": " " + }, + { + "type": "number", + "start": 16114, + "end": 16132, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 16132, + "end": 16133, + "value": "]" + }, + { + "type": "comma", + "start": 16133, + "end": 16134, + "value": "," + }, + { + "type": "whitespace", + "start": 16134, + "end": 16135, + "value": " " + }, + { + "type": "operator", + "start": 16135, + "end": 16136, + "value": "%" + }, + { + "type": "brace", + "start": 16136, + "end": 16137, + "value": ")" + }, + { + "type": "whitespace", + "start": 16137, + "end": 16140, + "value": "\n " + }, + { + "type": "operator", + "start": 16140, + "end": 16142, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16142, + "end": 16143, + "value": " " + }, + { + "type": "word", + "start": 16143, + "end": 16147, + "value": "line" + }, + { + "type": "brace", + "start": 16147, + "end": 16148, + "value": "(" + }, + { + "type": "brace", + "start": 16148, + "end": 16149, + "value": "[" + }, + { + "type": "whitespace", + "start": 16149, + "end": 16157, + "value": "\n " + }, + { + "type": "number", + "start": 16157, + "end": 16176, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 16176, + "end": 16177, + "value": "," + }, + { + "type": "whitespace", + "start": 16177, + "end": 16185, + "value": "\n " + }, + { + "type": "operator", + "start": 16185, + "end": 16186, + "value": "-" + }, + { + "type": "number", + "start": 16186, + "end": 16205, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 16205, + "end": 16211, + "value": "\n " + }, + { + "type": "brace", + "start": 16211, + "end": 16212, + "value": "]" + }, + { + "type": "comma", + "start": 16212, + "end": 16213, + "value": "," + }, + { + "type": "whitespace", + "start": 16213, + "end": 16214, + "value": " " + }, + { + "type": "operator", + "start": 16214, + "end": 16215, + "value": "%" + }, + { + "type": "brace", + "start": 16215, + "end": 16216, + "value": ")" + }, + { + "type": "whitespace", + "start": 16216, + "end": 16219, + "value": "\n " + }, + { + "type": "operator", + "start": 16219, + "end": 16221, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16221, + "end": 16222, + "value": " " + }, + { + "type": "word", + "start": 16222, + "end": 16226, + "value": "line" + }, + { + "type": "brace", + "start": 16226, + "end": 16227, + "value": "(" + }, + { + "type": "brace", + "start": 16227, + "end": 16228, + "value": "[" + }, + { + "type": "number", + "start": 16228, + "end": 16246, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 16246, + "end": 16247, + "value": "," + }, + { + "type": "whitespace", + "start": 16247, + "end": 16248, + "value": " " + }, + { + "type": "number", + "start": 16248, + "end": 16265, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 16265, + "end": 16266, + "value": "]" + }, + { + "type": "comma", + "start": 16266, + "end": 16267, + "value": "," + }, + { + "type": "whitespace", + "start": 16267, + "end": 16268, + "value": " " + }, + { + "type": "operator", + "start": 16268, + "end": 16269, + "value": "%" + }, + { + "type": "brace", + "start": 16269, + "end": 16270, + "value": ")" + }, + { + "type": "whitespace", + "start": 16270, + "end": 16273, + "value": "\n " + }, + { + "type": "operator", + "start": 16273, + "end": 16275, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16275, + "end": 16276, + "value": " " + }, + { + "type": "word", + "start": 16276, + "end": 16280, + "value": "line" + }, + { + "type": "brace", + "start": 16280, + "end": 16281, + "value": "(" + }, + { + "type": "brace", + "start": 16281, + "end": 16282, + "value": "[" + }, + { + "type": "whitespace", + "start": 16282, + "end": 16290, + "value": "\n " + }, + { + "type": "number", + "start": 16290, + "end": 16309, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 16309, + "end": 16310, + "value": "," + }, + { + "type": "whitespace", + "start": 16310, + "end": 16318, + "value": "\n " + }, + { + "type": "operator", + "start": 16318, + "end": 16319, + "value": "-" + }, + { + "type": "number", + "start": 16319, + "end": 16337, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 16337, + "end": 16343, + "value": "\n " + }, + { + "type": "brace", + "start": 16343, + "end": 16344, + "value": "]" + }, + { + "type": "comma", + "start": 16344, + "end": 16345, + "value": "," + }, + { + "type": "whitespace", + "start": 16345, + "end": 16346, + "value": " " + }, + { + "type": "operator", + "start": 16346, + "end": 16347, + "value": "%" + }, + { + "type": "brace", + "start": 16347, + "end": 16348, + "value": ")" + }, + { + "type": "whitespace", + "start": 16348, + "end": 16351, + "value": "\n " + }, + { + "type": "operator", + "start": 16351, + "end": 16353, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16353, + "end": 16354, + "value": " " + }, + { + "type": "word", + "start": 16354, + "end": 16358, + "value": "line" + }, + { + "type": "brace", + "start": 16358, + "end": 16359, + "value": "(" + }, + { + "type": "brace", + "start": 16359, + "end": 16360, + "value": "[" + }, + { + "type": "number", + "start": 16360, + "end": 16378, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 16378, + "end": 16379, + "value": "," + }, + { + "type": "whitespace", + "start": 16379, + "end": 16380, + "value": " " + }, + { + "type": "number", + "start": 16380, + "end": 16398, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 16398, + "end": 16399, + "value": "]" + }, + { + "type": "comma", + "start": 16399, + "end": 16400, + "value": "," + }, + { + "type": "whitespace", + "start": 16400, + "end": 16401, + "value": " " + }, + { + "type": "operator", + "start": 16401, + "end": 16402, + "value": "%" + }, + { + "type": "brace", + "start": 16402, + "end": 16403, + "value": ")" + }, + { + "type": "whitespace", + "start": 16403, + "end": 16406, + "value": "\n " + }, + { + "type": "operator", + "start": 16406, + "end": 16408, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16408, + "end": 16409, + "value": " " + }, + { + "type": "word", + "start": 16409, + "end": 16413, + "value": "line" + }, + { + "type": "brace", + "start": 16413, + "end": 16414, + "value": "(" + }, + { + "type": "brace", + "start": 16414, + "end": 16415, + "value": "[" + }, + { + "type": "whitespace", + "start": 16415, + "end": 16423, + "value": "\n " + }, + { + "type": "number", + "start": 16423, + "end": 16441, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 16441, + "end": 16442, + "value": "," + }, + { + "type": "whitespace", + "start": 16442, + "end": 16450, + "value": "\n " + }, + { + "type": "number", + "start": 16450, + "end": 16469, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 16469, + "end": 16475, + "value": "\n " + }, + { + "type": "brace", + "start": 16475, + "end": 16476, + "value": "]" + }, + { + "type": "comma", + "start": 16476, + "end": 16477, + "value": "," + }, + { + "type": "whitespace", + "start": 16477, + "end": 16478, + "value": " " + }, + { + "type": "operator", + "start": 16478, + "end": 16479, + "value": "%" + }, + { + "type": "brace", + "start": 16479, + "end": 16480, + "value": ")" + }, + { + "type": "whitespace", + "start": 16480, + "end": 16483, + "value": "\n " + }, + { + "type": "operator", + "start": 16483, + "end": 16485, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16485, + "end": 16486, + "value": " " + }, + { + "type": "word", + "start": 16486, + "end": 16490, + "value": "line" + }, + { + "type": "brace", + "start": 16490, + "end": 16491, + "value": "(" + }, + { + "type": "brace", + "start": 16491, + "end": 16492, + "value": "[" + }, + { + "type": "number", + "start": 16492, + "end": 16510, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 16510, + "end": 16511, + "value": "," + }, + { + "type": "whitespace", + "start": 16511, + "end": 16512, + "value": " " + }, + { + "type": "number", + "start": 16512, + "end": 16530, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 16530, + "end": 16531, + "value": "]" + }, + { + "type": "comma", + "start": 16531, + "end": 16532, + "value": "," + }, + { + "type": "whitespace", + "start": 16532, + "end": 16533, + "value": " " + }, + { + "type": "operator", + "start": 16533, + "end": 16534, + "value": "%" + }, + { + "type": "brace", + "start": 16534, + "end": 16535, + "value": ")" + }, + { + "type": "whitespace", + "start": 16535, + "end": 16538, + "value": "\n " + }, + { + "type": "operator", + "start": 16538, + "end": 16540, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16540, + "end": 16541, + "value": " " + }, + { + "type": "word", + "start": 16541, + "end": 16545, + "value": "line" + }, + { + "type": "brace", + "start": 16545, + "end": 16546, + "value": "(" + }, + { + "type": "brace", + "start": 16546, + "end": 16547, + "value": "[" + }, + { + "type": "whitespace", + "start": 16547, + "end": 16555, + "value": "\n " + }, + { + "type": "operator", + "start": 16555, + "end": 16556, + "value": "-" + }, + { + "type": "number", + "start": 16556, + "end": 16575, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 16575, + "end": 16576, + "value": "," + }, + { + "type": "whitespace", + "start": 16576, + "end": 16584, + "value": "\n " + }, + { + "type": "operator", + "start": 16584, + "end": 16585, + "value": "-" + }, + { + "type": "number", + "start": 16585, + "end": 16603, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 16603, + "end": 16609, + "value": "\n " + }, + { + "type": "brace", + "start": 16609, + "end": 16610, + "value": "]" + }, + { + "type": "comma", + "start": 16610, + "end": 16611, + "value": "," + }, + { + "type": "whitespace", + "start": 16611, + "end": 16612, + "value": " " + }, + { + "type": "operator", + "start": 16612, + "end": 16613, + "value": "%" + }, + { + "type": "brace", + "start": 16613, + "end": 16614, + "value": ")" + }, + { + "type": "whitespace", + "start": 16614, + "end": 16617, + "value": "\n " + }, + { + "type": "operator", + "start": 16617, + "end": 16619, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16619, + "end": 16620, + "value": " " + }, + { + "type": "word", + "start": 16620, + "end": 16624, + "value": "line" + }, + { + "type": "brace", + "start": 16624, + "end": 16625, + "value": "(" + }, + { + "type": "brace", + "start": 16625, + "end": 16626, + "value": "[" + }, + { + "type": "whitespace", + "start": 16626, + "end": 16634, + "value": "\n " + }, + { + "type": "number", + "start": 16634, + "end": 16652, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 16652, + "end": 16653, + "value": "," + }, + { + "type": "whitespace", + "start": 16653, + "end": 16661, + "value": "\n " + }, + { + "type": "operator", + "start": 16661, + "end": 16662, + "value": "-" + }, + { + "type": "number", + "start": 16662, + "end": 16680, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 16680, + "end": 16686, + "value": "\n " + }, + { + "type": "brace", + "start": 16686, + "end": 16687, + "value": "]" + }, + { + "type": "comma", + "start": 16687, + "end": 16688, + "value": "," + }, + { + "type": "whitespace", + "start": 16688, + "end": 16689, + "value": " " + }, + { + "type": "operator", + "start": 16689, + "end": 16690, + "value": "%" + }, + { + "type": "brace", + "start": 16690, + "end": 16691, + "value": ")" + }, + { + "type": "whitespace", + "start": 16691, + "end": 16694, + "value": "\n " + }, + { + "type": "operator", + "start": 16694, + "end": 16696, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16696, + "end": 16697, + "value": " " + }, + { + "type": "word", + "start": 16697, + "end": 16701, + "value": "line" + }, + { + "type": "brace", + "start": 16701, + "end": 16702, + "value": "(" + }, + { + "type": "brace", + "start": 16702, + "end": 16703, + "value": "[" + }, + { + "type": "whitespace", + "start": 16703, + "end": 16711, + "value": "\n " + }, + { + "type": "operator", + "start": 16711, + "end": 16712, + "value": "-" + }, + { + "type": "number", + "start": 16712, + "end": 16730, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 16730, + "end": 16731, + "value": "," + }, + { + "type": "whitespace", + "start": 16731, + "end": 16739, + "value": "\n " + }, + { + "type": "operator", + "start": 16739, + "end": 16740, + "value": "-" + }, + { + "type": "number", + "start": 16740, + "end": 16758, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 16758, + "end": 16764, + "value": "\n " + }, + { + "type": "brace", + "start": 16764, + "end": 16765, + "value": "]" + }, + { + "type": "comma", + "start": 16765, + "end": 16766, + "value": "," + }, + { + "type": "whitespace", + "start": 16766, + "end": 16767, + "value": " " + }, + { + "type": "operator", + "start": 16767, + "end": 16768, + "value": "%" + }, + { + "type": "brace", + "start": 16768, + "end": 16769, + "value": ")" + }, + { + "type": "whitespace", + "start": 16769, + "end": 16772, + "value": "\n " + }, + { + "type": "operator", + "start": 16772, + "end": 16774, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16774, + "end": 16775, + "value": " " + }, + { + "type": "word", + "start": 16775, + "end": 16779, + "value": "line" + }, + { + "type": "brace", + "start": 16779, + "end": 16780, + "value": "(" + }, + { + "type": "brace", + "start": 16780, + "end": 16781, + "value": "[" + }, + { + "type": "whitespace", + "start": 16781, + "end": 16789, + "value": "\n " + }, + { + "type": "number", + "start": 16789, + "end": 16809, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 16809, + "end": 16810, + "value": "," + }, + { + "type": "whitespace", + "start": 16810, + "end": 16818, + "value": "\n " + }, + { + "type": "operator", + "start": 16818, + "end": 16819, + "value": "-" + }, + { + "type": "number", + "start": 16819, + "end": 16838, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 16838, + "end": 16844, + "value": "\n " + }, + { + "type": "brace", + "start": 16844, + "end": 16845, + "value": "]" + }, + { + "type": "comma", + "start": 16845, + "end": 16846, + "value": "," + }, + { + "type": "whitespace", + "start": 16846, + "end": 16847, + "value": " " + }, + { + "type": "operator", + "start": 16847, + "end": 16848, + "value": "%" + }, + { + "type": "brace", + "start": 16848, + "end": 16849, + "value": ")" + }, + { + "type": "whitespace", + "start": 16849, + "end": 16852, + "value": "\n " + }, + { + "type": "operator", + "start": 16852, + "end": 16854, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16854, + "end": 16855, + "value": " " + }, + { + "type": "word", + "start": 16855, + "end": 16859, + "value": "line" + }, + { + "type": "brace", + "start": 16859, + "end": 16860, + "value": "(" + }, + { + "type": "brace", + "start": 16860, + "end": 16861, + "value": "[" + }, + { + "type": "whitespace", + "start": 16861, + "end": 16869, + "value": "\n " + }, + { + "type": "number", + "start": 16869, + "end": 16888, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 16888, + "end": 16889, + "value": "," + }, + { + "type": "whitespace", + "start": 16889, + "end": 16897, + "value": "\n " + }, + { + "type": "operator", + "start": 16897, + "end": 16898, + "value": "-" + }, + { + "type": "number", + "start": 16898, + "end": 16917, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 16917, + "end": 16923, + "value": "\n " + }, + { + "type": "brace", + "start": 16923, + "end": 16924, + "value": "]" + }, + { + "type": "comma", + "start": 16924, + "end": 16925, + "value": "," + }, + { + "type": "whitespace", + "start": 16925, + "end": 16926, + "value": " " + }, + { + "type": "operator", + "start": 16926, + "end": 16927, + "value": "%" + }, + { + "type": "brace", + "start": 16927, + "end": 16928, + "value": ")" + }, + { + "type": "whitespace", + "start": 16928, + "end": 16931, + "value": "\n " + }, + { + "type": "operator", + "start": 16931, + "end": 16933, + "value": "|>" + }, + { + "type": "whitespace", + "start": 16933, + "end": 16934, + "value": " " + }, + { + "type": "word", + "start": 16934, + "end": 16938, + "value": "line" + }, + { + "type": "brace", + "start": 16938, + "end": 16939, + "value": "(" + }, + { + "type": "brace", + "start": 16939, + "end": 16940, + "value": "[" + }, + { + "type": "whitespace", + "start": 16940, + "end": 16948, + "value": "\n " + }, + { + "type": "number", + "start": 16948, + "end": 16966, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 16966, + "end": 16967, + "value": "," + }, + { + "type": "whitespace", + "start": 16967, + "end": 16975, + "value": "\n " + }, + { + "type": "operator", + "start": 16975, + "end": 16976, + "value": "-" + }, + { + "type": "number", + "start": 16976, + "end": 16995, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 16995, + "end": 17001, + "value": "\n " + }, + { + "type": "brace", + "start": 17001, + "end": 17002, + "value": "]" + }, + { + "type": "comma", + "start": 17002, + "end": 17003, + "value": "," + }, + { + "type": "whitespace", + "start": 17003, + "end": 17004, + "value": " " + }, + { + "type": "operator", + "start": 17004, + "end": 17005, + "value": "%" + }, + { + "type": "brace", + "start": 17005, + "end": 17006, + "value": ")" + }, + { + "type": "whitespace", + "start": 17006, + "end": 17009, + "value": "\n " + }, + { + "type": "operator", + "start": 17009, + "end": 17011, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17011, + "end": 17012, + "value": " " + }, + { + "type": "word", + "start": 17012, + "end": 17016, + "value": "line" + }, + { + "type": "brace", + "start": 17016, + "end": 17017, + "value": "(" + }, + { + "type": "brace", + "start": 17017, + "end": 17018, + "value": "[" + }, + { + "type": "whitespace", + "start": 17018, + "end": 17026, + "value": "\n " + }, + { + "type": "operator", + "start": 17026, + "end": 17027, + "value": "-" + }, + { + "type": "number", + "start": 17027, + "end": 17045, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 17045, + "end": 17046, + "value": "," + }, + { + "type": "whitespace", + "start": 17046, + "end": 17054, + "value": "\n " + }, + { + "type": "operator", + "start": 17054, + "end": 17055, + "value": "-" + }, + { + "type": "number", + "start": 17055, + "end": 17073, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 17073, + "end": 17079, + "value": "\n " + }, + { + "type": "brace", + "start": 17079, + "end": 17080, + "value": "]" + }, + { + "type": "comma", + "start": 17080, + "end": 17081, + "value": "," + }, + { + "type": "whitespace", + "start": 17081, + "end": 17082, + "value": " " + }, + { + "type": "operator", + "start": 17082, + "end": 17083, + "value": "%" + }, + { + "type": "brace", + "start": 17083, + "end": 17084, + "value": ")" + }, + { + "type": "whitespace", + "start": 17084, + "end": 17087, + "value": "\n " + }, + { + "type": "operator", + "start": 17087, + "end": 17089, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17089, + "end": 17090, + "value": " " + }, + { + "type": "word", + "start": 17090, + "end": 17094, + "value": "line" + }, + { + "type": "brace", + "start": 17094, + "end": 17095, + "value": "(" + }, + { + "type": "brace", + "start": 17095, + "end": 17096, + "value": "[" + }, + { + "type": "number", + "start": 17096, + "end": 17114, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 17114, + "end": 17115, + "value": "," + }, + { + "type": "whitespace", + "start": 17115, + "end": 17116, + "value": " " + }, + { + "type": "number", + "start": 17116, + "end": 17134, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 17134, + "end": 17135, + "value": "]" + }, + { + "type": "comma", + "start": 17135, + "end": 17136, + "value": "," + }, + { + "type": "whitespace", + "start": 17136, + "end": 17137, + "value": " " + }, + { + "type": "operator", + "start": 17137, + "end": 17138, + "value": "%" + }, + { + "type": "brace", + "start": 17138, + "end": 17139, + "value": ")" + }, + { + "type": "whitespace", + "start": 17139, + "end": 17142, + "value": "\n " + }, + { + "type": "operator", + "start": 17142, + "end": 17144, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17144, + "end": 17145, + "value": " " + }, + { + "type": "word", + "start": 17145, + "end": 17149, + "value": "line" + }, + { + "type": "brace", + "start": 17149, + "end": 17150, + "value": "(" + }, + { + "type": "brace", + "start": 17150, + "end": 17151, + "value": "[" + }, + { + "type": "whitespace", + "start": 17151, + "end": 17159, + "value": "\n " + }, + { + "type": "number", + "start": 17159, + "end": 17177, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 17177, + "end": 17178, + "value": "," + }, + { + "type": "whitespace", + "start": 17178, + "end": 17186, + "value": "\n " + }, + { + "type": "number", + "start": 17186, + "end": 17205, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 17205, + "end": 17211, + "value": "\n " + }, + { + "type": "brace", + "start": 17211, + "end": 17212, + "value": "]" + }, + { + "type": "comma", + "start": 17212, + "end": 17213, + "value": "," + }, + { + "type": "whitespace", + "start": 17213, + "end": 17214, + "value": " " + }, + { + "type": "operator", + "start": 17214, + "end": 17215, + "value": "%" + }, + { + "type": "brace", + "start": 17215, + "end": 17216, + "value": ")" + }, + { + "type": "whitespace", + "start": 17216, + "end": 17219, + "value": "\n " + }, + { + "type": "operator", + "start": 17219, + "end": 17221, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17221, + "end": 17222, + "value": " " + }, + { + "type": "word", + "start": 17222, + "end": 17226, + "value": "line" + }, + { + "type": "brace", + "start": 17226, + "end": 17227, + "value": "(" + }, + { + "type": "brace", + "start": 17227, + "end": 17228, + "value": "[" + }, + { + "type": "whitespace", + "start": 17228, + "end": 17236, + "value": "\n " + }, + { + "type": "operator", + "start": 17236, + "end": 17237, + "value": "-" + }, + { + "type": "number", + "start": 17237, + "end": 17256, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 17256, + "end": 17257, + "value": "," + }, + { + "type": "whitespace", + "start": 17257, + "end": 17265, + "value": "\n " + }, + { + "type": "number", + "start": 17265, + "end": 17283, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 17283, + "end": 17289, + "value": "\n " + }, + { + "type": "brace", + "start": 17289, + "end": 17290, + "value": "]" + }, + { + "type": "comma", + "start": 17290, + "end": 17291, + "value": "," + }, + { + "type": "whitespace", + "start": 17291, + "end": 17292, + "value": " " + }, + { + "type": "operator", + "start": 17292, + "end": 17293, + "value": "%" + }, + { + "type": "brace", + "start": 17293, + "end": 17294, + "value": ")" + }, + { + "type": "whitespace", + "start": 17294, + "end": 17297, + "value": "\n " + }, + { + "type": "operator", + "start": 17297, + "end": 17299, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17299, + "end": 17300, + "value": " " + }, + { + "type": "word", + "start": 17300, + "end": 17304, + "value": "line" + }, + { + "type": "brace", + "start": 17304, + "end": 17305, + "value": "(" + }, + { + "type": "brace", + "start": 17305, + "end": 17306, + "value": "[" + }, + { + "type": "whitespace", + "start": 17306, + "end": 17314, + "value": "\n " + }, + { + "type": "operator", + "start": 17314, + "end": 17315, + "value": "-" + }, + { + "type": "number", + "start": 17315, + "end": 17334, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 17334, + "end": 17335, + "value": "," + }, + { + "type": "whitespace", + "start": 17335, + "end": 17343, + "value": "\n " + }, + { + "type": "operator", + "start": 17343, + "end": 17344, + "value": "-" + }, + { + "type": "number", + "start": 17344, + "end": 17363, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 17363, + "end": 17369, + "value": "\n " + }, + { + "type": "brace", + "start": 17369, + "end": 17370, + "value": "]" + }, + { + "type": "comma", + "start": 17370, + "end": 17371, + "value": "," + }, + { + "type": "whitespace", + "start": 17371, + "end": 17372, + "value": " " + }, + { + "type": "operator", + "start": 17372, + "end": 17373, + "value": "%" + }, + { + "type": "brace", + "start": 17373, + "end": 17374, + "value": ")" + }, + { + "type": "whitespace", + "start": 17374, + "end": 17377, + "value": "\n " + }, + { + "type": "operator", + "start": 17377, + "end": 17379, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17379, + "end": 17380, + "value": " " + }, + { + "type": "word", + "start": 17380, + "end": 17384, + "value": "line" + }, + { + "type": "brace", + "start": 17384, + "end": 17385, + "value": "(" + }, + { + "type": "brace", + "start": 17385, + "end": 17386, + "value": "[" + }, + { + "type": "whitespace", + "start": 17386, + "end": 17394, + "value": "\n " + }, + { + "type": "number", + "start": 17394, + "end": 17413, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 17413, + "end": 17414, + "value": "," + }, + { + "type": "whitespace", + "start": 17414, + "end": 17422, + "value": "\n " + }, + { + "type": "operator", + "start": 17422, + "end": 17423, + "value": "-" + }, + { + "type": "number", + "start": 17423, + "end": 17441, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 17441, + "end": 17447, + "value": "\n " + }, + { + "type": "brace", + "start": 17447, + "end": 17448, + "value": "]" + }, + { + "type": "comma", + "start": 17448, + "end": 17449, + "value": "," + }, + { + "type": "whitespace", + "start": 17449, + "end": 17450, + "value": " " + }, + { + "type": "operator", + "start": 17450, + "end": 17451, + "value": "%" + }, + { + "type": "brace", + "start": 17451, + "end": 17452, + "value": ")" + }, + { + "type": "whitespace", + "start": 17452, + "end": 17455, + "value": "\n " + }, + { + "type": "operator", + "start": 17455, + "end": 17457, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17457, + "end": 17458, + "value": " " + }, + { + "type": "word", + "start": 17458, + "end": 17462, + "value": "line" + }, + { + "type": "brace", + "start": 17462, + "end": 17463, + "value": "(" + }, + { + "type": "brace", + "start": 17463, + "end": 17464, + "value": "[" + }, + { + "type": "whitespace", + "start": 17464, + "end": 17472, + "value": "\n " + }, + { + "type": "operator", + "start": 17472, + "end": 17473, + "value": "-" + }, + { + "type": "number", + "start": 17473, + "end": 17491, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 17491, + "end": 17492, + "value": "," + }, + { + "type": "whitespace", + "start": 17492, + "end": 17500, + "value": "\n " + }, + { + "type": "number", + "start": 17500, + "end": 17519, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 17519, + "end": 17525, + "value": "\n " + }, + { + "type": "brace", + "start": 17525, + "end": 17526, + "value": "]" + }, + { + "type": "comma", + "start": 17526, + "end": 17527, + "value": "," + }, + { + "type": "whitespace", + "start": 17527, + "end": 17528, + "value": " " + }, + { + "type": "operator", + "start": 17528, + "end": 17529, + "value": "%" + }, + { + "type": "brace", + "start": 17529, + "end": 17530, + "value": ")" + }, + { + "type": "whitespace", + "start": 17530, + "end": 17533, + "value": "\n " + }, + { + "type": "operator", + "start": 17533, + "end": 17535, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17535, + "end": 17536, + "value": " " + }, + { + "type": "word", + "start": 17536, + "end": 17540, + "value": "line" + }, + { + "type": "brace", + "start": 17540, + "end": 17541, + "value": "(" + }, + { + "type": "brace", + "start": 17541, + "end": 17542, + "value": "[" + }, + { + "type": "number", + "start": 17542, + "end": 17560, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 17560, + "end": 17561, + "value": "," + }, + { + "type": "whitespace", + "start": 17561, + "end": 17562, + "value": " " + }, + { + "type": "number", + "start": 17562, + "end": 17580, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 17580, + "end": 17581, + "value": "]" + }, + { + "type": "comma", + "start": 17581, + "end": 17582, + "value": "," + }, + { + "type": "whitespace", + "start": 17582, + "end": 17583, + "value": " " + }, + { + "type": "operator", + "start": 17583, + "end": 17584, + "value": "%" + }, + { + "type": "brace", + "start": 17584, + "end": 17585, + "value": ")" + }, + { + "type": "whitespace", + "start": 17585, + "end": 17588, + "value": "\n " + }, + { + "type": "operator", + "start": 17588, + "end": 17590, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17590, + "end": 17591, + "value": " " + }, + { + "type": "word", + "start": 17591, + "end": 17595, + "value": "line" + }, + { + "type": "brace", + "start": 17595, + "end": 17596, + "value": "(" + }, + { + "type": "brace", + "start": 17596, + "end": 17597, + "value": "[" + }, + { + "type": "whitespace", + "start": 17597, + "end": 17605, + "value": "\n " + }, + { + "type": "operator", + "start": 17605, + "end": 17606, + "value": "-" + }, + { + "type": "number", + "start": 17606, + "end": 17624, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 17624, + "end": 17625, + "value": "," + }, + { + "type": "whitespace", + "start": 17625, + "end": 17633, + "value": "\n " + }, + { + "type": "operator", + "start": 17633, + "end": 17634, + "value": "-" + }, + { + "type": "number", + "start": 17634, + "end": 17653, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 17653, + "end": 17659, + "value": "\n " + }, + { + "type": "brace", + "start": 17659, + "end": 17660, + "value": "]" + }, + { + "type": "comma", + "start": 17660, + "end": 17661, + "value": "," + }, + { + "type": "whitespace", + "start": 17661, + "end": 17662, + "value": " " + }, + { + "type": "operator", + "start": 17662, + "end": 17663, + "value": "%" + }, + { + "type": "brace", + "start": 17663, + "end": 17664, + "value": ")" + }, + { + "type": "whitespace", + "start": 17664, + "end": 17667, + "value": "\n " + }, + { + "type": "operator", + "start": 17667, + "end": 17669, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17669, + "end": 17670, + "value": " " + }, + { + "type": "word", + "start": 17670, + "end": 17674, + "value": "line" + }, + { + "type": "brace", + "start": 17674, + "end": 17675, + "value": "(" + }, + { + "type": "brace", + "start": 17675, + "end": 17676, + "value": "[" + }, + { + "type": "whitespace", + "start": 17676, + "end": 17684, + "value": "\n " + }, + { + "type": "number", + "start": 17684, + "end": 17702, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 17702, + "end": 17703, + "value": "," + }, + { + "type": "whitespace", + "start": 17703, + "end": 17711, + "value": "\n " + }, + { + "type": "operator", + "start": 17711, + "end": 17712, + "value": "-" + }, + { + "type": "number", + "start": 17712, + "end": 17730, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 17730, + "end": 17736, + "value": "\n " + }, + { + "type": "brace", + "start": 17736, + "end": 17737, + "value": "]" + }, + { + "type": "comma", + "start": 17737, + "end": 17738, + "value": "," + }, + { + "type": "whitespace", + "start": 17738, + "end": 17739, + "value": " " + }, + { + "type": "operator", + "start": 17739, + "end": 17740, + "value": "%" + }, + { + "type": "brace", + "start": 17740, + "end": 17741, + "value": ")" + }, + { + "type": "whitespace", + "start": 17741, + "end": 17744, + "value": "\n " + }, + { + "type": "operator", + "start": 17744, + "end": 17746, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17746, + "end": 17747, + "value": " " + }, + { + "type": "word", + "start": 17747, + "end": 17751, + "value": "line" + }, + { + "type": "brace", + "start": 17751, + "end": 17752, + "value": "(" + }, + { + "type": "brace", + "start": 17752, + "end": 17753, + "value": "[" + }, + { + "type": "whitespace", + "start": 17753, + "end": 17761, + "value": "\n " + }, + { + "type": "number", + "start": 17761, + "end": 17779, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 17779, + "end": 17780, + "value": "," + }, + { + "type": "whitespace", + "start": 17780, + "end": 17788, + "value": "\n " + }, + { + "type": "operator", + "start": 17788, + "end": 17789, + "value": "-" + }, + { + "type": "number", + "start": 17789, + "end": 17807, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 17807, + "end": 17813, + "value": "\n " + }, + { + "type": "brace", + "start": 17813, + "end": 17814, + "value": "]" + }, + { + "type": "comma", + "start": 17814, + "end": 17815, + "value": "," + }, + { + "type": "whitespace", + "start": 17815, + "end": 17816, + "value": " " + }, + { + "type": "operator", + "start": 17816, + "end": 17817, + "value": "%" + }, + { + "type": "brace", + "start": 17817, + "end": 17818, + "value": ")" + }, + { + "type": "whitespace", + "start": 17818, + "end": 17821, + "value": "\n " + }, + { + "type": "operator", + "start": 17821, + "end": 17823, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17823, + "end": 17824, + "value": " " + }, + { + "type": "word", + "start": 17824, + "end": 17828, + "value": "line" + }, + { + "type": "brace", + "start": 17828, + "end": 17829, + "value": "(" + }, + { + "type": "brace", + "start": 17829, + "end": 17830, + "value": "[" + }, + { + "type": "number", + "start": 17830, + "end": 17848, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 17848, + "end": 17849, + "value": "," + }, + { + "type": "whitespace", + "start": 17849, + "end": 17850, + "value": " " + }, + { + "type": "number", + "start": 17850, + "end": 17868, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 17868, + "end": 17869, + "value": "]" + }, + { + "type": "comma", + "start": 17869, + "end": 17870, + "value": "," + }, + { + "type": "whitespace", + "start": 17870, + "end": 17871, + "value": " " + }, + { + "type": "operator", + "start": 17871, + "end": 17872, + "value": "%" + }, + { + "type": "brace", + "start": 17872, + "end": 17873, + "value": ")" + }, + { + "type": "whitespace", + "start": 17873, + "end": 17876, + "value": "\n " + }, + { + "type": "operator", + "start": 17876, + "end": 17878, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17878, + "end": 17879, + "value": " " + }, + { + "type": "word", + "start": 17879, + "end": 17883, + "value": "line" + }, + { + "type": "brace", + "start": 17883, + "end": 17884, + "value": "(" + }, + { + "type": "brace", + "start": 17884, + "end": 17885, + "value": "[" + }, + { + "type": "whitespace", + "start": 17885, + "end": 17893, + "value": "\n " + }, + { + "type": "operator", + "start": 17893, + "end": 17894, + "value": "-" + }, + { + "type": "number", + "start": 17894, + "end": 17912, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 17912, + "end": 17913, + "value": "," + }, + { + "type": "whitespace", + "start": 17913, + "end": 17921, + "value": "\n " + }, + { + "type": "number", + "start": 17921, + "end": 17939, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 17939, + "end": 17945, + "value": "\n " + }, + { + "type": "brace", + "start": 17945, + "end": 17946, + "value": "]" + }, + { + "type": "comma", + "start": 17946, + "end": 17947, + "value": "," + }, + { + "type": "whitespace", + "start": 17947, + "end": 17948, + "value": " " + }, + { + "type": "operator", + "start": 17948, + "end": 17949, + "value": "%" + }, + { + "type": "brace", + "start": 17949, + "end": 17950, + "value": ")" + }, + { + "type": "whitespace", + "start": 17950, + "end": 17953, + "value": "\n " + }, + { + "type": "operator", + "start": 17953, + "end": 17955, + "value": "|>" + }, + { + "type": "whitespace", + "start": 17955, + "end": 17956, + "value": " " + }, + { + "type": "word", + "start": 17956, + "end": 17960, + "value": "line" + }, + { + "type": "brace", + "start": 17960, + "end": 17961, + "value": "(" + }, + { + "type": "brace", + "start": 17961, + "end": 17962, + "value": "[" + }, + { + "type": "number", + "start": 17962, + "end": 17980, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 17980, + "end": 17981, + "value": "," + }, + { + "type": "whitespace", + "start": 17981, + "end": 17982, + "value": " " + }, + { + "type": "number", + "start": 17982, + "end": 18000, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 18000, + "end": 18001, + "value": "]" + }, + { + "type": "comma", + "start": 18001, + "end": 18002, + "value": "," + }, + { + "type": "whitespace", + "start": 18002, + "end": 18003, + "value": " " + }, + { + "type": "operator", + "start": 18003, + "end": 18004, + "value": "%" + }, + { + "type": "brace", + "start": 18004, + "end": 18005, + "value": ")" + }, + { + "type": "whitespace", + "start": 18005, + "end": 18008, + "value": "\n " + }, + { + "type": "operator", + "start": 18008, + "end": 18010, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18010, + "end": 18011, + "value": " " + }, + { + "type": "word", + "start": 18011, + "end": 18015, + "value": "line" + }, + { + "type": "brace", + "start": 18015, + "end": 18016, + "value": "(" + }, + { + "type": "brace", + "start": 18016, + "end": 18017, + "value": "[" + }, + { + "type": "whitespace", + "start": 18017, + "end": 18025, + "value": "\n " + }, + { + "type": "number", + "start": 18025, + "end": 18043, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 18043, + "end": 18044, + "value": "," + }, + { + "type": "whitespace", + "start": 18044, + "end": 18052, + "value": "\n " + }, + { + "type": "number", + "start": 18052, + "end": 18071, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 18071, + "end": 18077, + "value": "\n " + }, + { + "type": "brace", + "start": 18077, + "end": 18078, + "value": "]" + }, + { + "type": "comma", + "start": 18078, + "end": 18079, + "value": "," + }, + { + "type": "whitespace", + "start": 18079, + "end": 18080, + "value": " " + }, + { + "type": "operator", + "start": 18080, + "end": 18081, + "value": "%" + }, + { + "type": "brace", + "start": 18081, + "end": 18082, + "value": ")" + }, + { + "type": "whitespace", + "start": 18082, + "end": 18085, + "value": "\n " + }, + { + "type": "operator", + "start": 18085, + "end": 18087, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18087, + "end": 18088, + "value": " " + }, + { + "type": "word", + "start": 18088, + "end": 18092, + "value": "line" + }, + { + "type": "brace", + "start": 18092, + "end": 18093, + "value": "(" + }, + { + "type": "brace", + "start": 18093, + "end": 18094, + "value": "[" + }, + { + "type": "whitespace", + "start": 18094, + "end": 18102, + "value": "\n " + }, + { + "type": "operator", + "start": 18102, + "end": 18103, + "value": "-" + }, + { + "type": "number", + "start": 18103, + "end": 18121, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 18121, + "end": 18122, + "value": "," + }, + { + "type": "whitespace", + "start": 18122, + "end": 18130, + "value": "\n " + }, + { + "type": "operator", + "start": 18130, + "end": 18131, + "value": "-" + }, + { + "type": "number", + "start": 18131, + "end": 18148, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 18148, + "end": 18154, + "value": "\n " + }, + { + "type": "brace", + "start": 18154, + "end": 18155, + "value": "]" + }, + { + "type": "comma", + "start": 18155, + "end": 18156, + "value": "," + }, + { + "type": "whitespace", + "start": 18156, + "end": 18157, + "value": " " + }, + { + "type": "operator", + "start": 18157, + "end": 18158, + "value": "%" + }, + { + "type": "brace", + "start": 18158, + "end": 18159, + "value": ")" + }, + { + "type": "whitespace", + "start": 18159, + "end": 18162, + "value": "\n " + }, + { + "type": "operator", + "start": 18162, + "end": 18164, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18164, + "end": 18165, + "value": " " + }, + { + "type": "word", + "start": 18165, + "end": 18169, + "value": "line" + }, + { + "type": "brace", + "start": 18169, + "end": 18170, + "value": "(" + }, + { + "type": "brace", + "start": 18170, + "end": 18171, + "value": "[" + }, + { + "type": "whitespace", + "start": 18171, + "end": 18179, + "value": "\n " + }, + { + "type": "number", + "start": 18179, + "end": 18197, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 18197, + "end": 18198, + "value": "," + }, + { + "type": "whitespace", + "start": 18198, + "end": 18206, + "value": "\n " + }, + { + "type": "operator", + "start": 18206, + "end": 18207, + "value": "-" + }, + { + "type": "number", + "start": 18207, + "end": 18226, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 18226, + "end": 18232, + "value": "\n " + }, + { + "type": "brace", + "start": 18232, + "end": 18233, + "value": "]" + }, + { + "type": "comma", + "start": 18233, + "end": 18234, + "value": "," + }, + { + "type": "whitespace", + "start": 18234, + "end": 18235, + "value": " " + }, + { + "type": "operator", + "start": 18235, + "end": 18236, + "value": "%" + }, + { + "type": "brace", + "start": 18236, + "end": 18237, + "value": ")" + }, + { + "type": "whitespace", + "start": 18237, + "end": 18240, + "value": "\n " + }, + { + "type": "operator", + "start": 18240, + "end": 18242, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18242, + "end": 18243, + "value": " " + }, + { + "type": "word", + "start": 18243, + "end": 18247, + "value": "line" + }, + { + "type": "brace", + "start": 18247, + "end": 18248, + "value": "(" + }, + { + "type": "brace", + "start": 18248, + "end": 18249, + "value": "[" + }, + { + "type": "whitespace", + "start": 18249, + "end": 18257, + "value": "\n " + }, + { + "type": "operator", + "start": 18257, + "end": 18258, + "value": "-" + }, + { + "type": "number", + "start": 18258, + "end": 18277, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 18277, + "end": 18278, + "value": "," + }, + { + "type": "whitespace", + "start": 18278, + "end": 18286, + "value": "\n " + }, + { + "type": "operator", + "start": 18286, + "end": 18287, + "value": "-" + }, + { + "type": "number", + "start": 18287, + "end": 18306, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 18306, + "end": 18312, + "value": "\n " + }, + { + "type": "brace", + "start": 18312, + "end": 18313, + "value": "]" + }, + { + "type": "comma", + "start": 18313, + "end": 18314, + "value": "," + }, + { + "type": "whitespace", + "start": 18314, + "end": 18315, + "value": " " + }, + { + "type": "operator", + "start": 18315, + "end": 18316, + "value": "%" + }, + { + "type": "brace", + "start": 18316, + "end": 18317, + "value": ")" + }, + { + "type": "whitespace", + "start": 18317, + "end": 18320, + "value": "\n " + }, + { + "type": "operator", + "start": 18320, + "end": 18322, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18322, + "end": 18323, + "value": " " + }, + { + "type": "word", + "start": 18323, + "end": 18327, + "value": "line" + }, + { + "type": "brace", + "start": 18327, + "end": 18328, + "value": "(" + }, + { + "type": "brace", + "start": 18328, + "end": 18329, + "value": "[" + }, + { + "type": "whitespace", + "start": 18329, + "end": 18337, + "value": "\n " + }, + { + "type": "operator", + "start": 18337, + "end": 18338, + "value": "-" + }, + { + "type": "number", + "start": 18338, + "end": 18356, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 18356, + "end": 18357, + "value": "," + }, + { + "type": "whitespace", + "start": 18357, + "end": 18365, + "value": "\n " + }, + { + "type": "operator", + "start": 18365, + "end": 18366, + "value": "-" + }, + { + "type": "number", + "start": 18366, + "end": 18385, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 18385, + "end": 18391, + "value": "\n " + }, + { + "type": "brace", + "start": 18391, + "end": 18392, + "value": "]" + }, + { + "type": "comma", + "start": 18392, + "end": 18393, + "value": "," + }, + { + "type": "whitespace", + "start": 18393, + "end": 18394, + "value": " " + }, + { + "type": "operator", + "start": 18394, + "end": 18395, + "value": "%" + }, + { + "type": "brace", + "start": 18395, + "end": 18396, + "value": ")" + }, + { + "type": "whitespace", + "start": 18396, + "end": 18399, + "value": "\n " + }, + { + "type": "operator", + "start": 18399, + "end": 18401, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18401, + "end": 18402, + "value": " " + }, + { + "type": "word", + "start": 18402, + "end": 18406, + "value": "line" + }, + { + "type": "brace", + "start": 18406, + "end": 18407, + "value": "(" + }, + { + "type": "brace", + "start": 18407, + "end": 18408, + "value": "[" + }, + { + "type": "whitespace", + "start": 18408, + "end": 18416, + "value": "\n " + }, + { + "type": "operator", + "start": 18416, + "end": 18417, + "value": "-" + }, + { + "type": "number", + "start": 18417, + "end": 18435, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 18435, + "end": 18436, + "value": "," + }, + { + "type": "whitespace", + "start": 18436, + "end": 18444, + "value": "\n " + }, + { + "type": "number", + "start": 18444, + "end": 18463, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 18463, + "end": 18469, + "value": "\n " + }, + { + "type": "brace", + "start": 18469, + "end": 18470, + "value": "]" + }, + { + "type": "comma", + "start": 18470, + "end": 18471, + "value": "," + }, + { + "type": "whitespace", + "start": 18471, + "end": 18472, + "value": " " + }, + { + "type": "operator", + "start": 18472, + "end": 18473, + "value": "%" + }, + { + "type": "brace", + "start": 18473, + "end": 18474, + "value": ")" + }, + { + "type": "whitespace", + "start": 18474, + "end": 18477, + "value": "\n " + }, + { + "type": "operator", + "start": 18477, + "end": 18479, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18479, + "end": 18480, + "value": " " + }, + { + "type": "word", + "start": 18480, + "end": 18484, + "value": "line" + }, + { + "type": "brace", + "start": 18484, + "end": 18485, + "value": "(" + }, + { + "type": "brace", + "start": 18485, + "end": 18486, + "value": "[" + }, + { + "type": "whitespace", + "start": 18486, + "end": 18494, + "value": "\n " + }, + { + "type": "operator", + "start": 18494, + "end": 18495, + "value": "-" + }, + { + "type": "number", + "start": 18495, + "end": 18513, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 18513, + "end": 18514, + "value": "," + }, + { + "type": "whitespace", + "start": 18514, + "end": 18522, + "value": "\n " + }, + { + "type": "operator", + "start": 18522, + "end": 18523, + "value": "-" + }, + { + "type": "number", + "start": 18523, + "end": 18542, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 18542, + "end": 18548, + "value": "\n " + }, + { + "type": "brace", + "start": 18548, + "end": 18549, + "value": "]" + }, + { + "type": "comma", + "start": 18549, + "end": 18550, + "value": "," + }, + { + "type": "whitespace", + "start": 18550, + "end": 18551, + "value": " " + }, + { + "type": "operator", + "start": 18551, + "end": 18552, + "value": "%" + }, + { + "type": "brace", + "start": 18552, + "end": 18553, + "value": ")" + }, + { + "type": "whitespace", + "start": 18553, + "end": 18556, + "value": "\n " + }, + { + "type": "operator", + "start": 18556, + "end": 18558, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18558, + "end": 18559, + "value": " " + }, + { + "type": "word", + "start": 18559, + "end": 18563, + "value": "line" + }, + { + "type": "brace", + "start": 18563, + "end": 18564, + "value": "(" + }, + { + "type": "brace", + "start": 18564, + "end": 18565, + "value": "[" + }, + { + "type": "whitespace", + "start": 18565, + "end": 18573, + "value": "\n " + }, + { + "type": "number", + "start": 18573, + "end": 18591, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 18591, + "end": 18592, + "value": "," + }, + { + "type": "whitespace", + "start": 18592, + "end": 18600, + "value": "\n " + }, + { + "type": "operator", + "start": 18600, + "end": 18601, + "value": "-" + }, + { + "type": "number", + "start": 18601, + "end": 18619, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 18619, + "end": 18625, + "value": "\n " + }, + { + "type": "brace", + "start": 18625, + "end": 18626, + "value": "]" + }, + { + "type": "comma", + "start": 18626, + "end": 18627, + "value": "," + }, + { + "type": "whitespace", + "start": 18627, + "end": 18628, + "value": " " + }, + { + "type": "operator", + "start": 18628, + "end": 18629, + "value": "%" + }, + { + "type": "brace", + "start": 18629, + "end": 18630, + "value": ")" + }, + { + "type": "whitespace", + "start": 18630, + "end": 18633, + "value": "\n " + }, + { + "type": "operator", + "start": 18633, + "end": 18635, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18635, + "end": 18636, + "value": " " + }, + { + "type": "word", + "start": 18636, + "end": 18640, + "value": "line" + }, + { + "type": "brace", + "start": 18640, + "end": 18641, + "value": "(" + }, + { + "type": "brace", + "start": 18641, + "end": 18642, + "value": "[" + }, + { + "type": "whitespace", + "start": 18642, + "end": 18650, + "value": "\n " + }, + { + "type": "operator", + "start": 18650, + "end": 18651, + "value": "-" + }, + { + "type": "number", + "start": 18651, + "end": 18669, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 18669, + "end": 18670, + "value": "," + }, + { + "type": "whitespace", + "start": 18670, + "end": 18678, + "value": "\n " + }, + { + "type": "number", + "start": 18678, + "end": 18696, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 18696, + "end": 18702, + "value": "\n " + }, + { + "type": "brace", + "start": 18702, + "end": 18703, + "value": "]" + }, + { + "type": "comma", + "start": 18703, + "end": 18704, + "value": "," + }, + { + "type": "whitespace", + "start": 18704, + "end": 18705, + "value": " " + }, + { + "type": "operator", + "start": 18705, + "end": 18706, + "value": "%" + }, + { + "type": "brace", + "start": 18706, + "end": 18707, + "value": ")" + }, + { + "type": "whitespace", + "start": 18707, + "end": 18710, + "value": "\n " + }, + { + "type": "operator", + "start": 18710, + "end": 18712, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18712, + "end": 18713, + "value": " " + }, + { + "type": "word", + "start": 18713, + "end": 18717, + "value": "line" + }, + { + "type": "brace", + "start": 18717, + "end": 18718, + "value": "(" + }, + { + "type": "brace", + "start": 18718, + "end": 18719, + "value": "[" + }, + { + "type": "whitespace", + "start": 18719, + "end": 18727, + "value": "\n " + }, + { + "type": "operator", + "start": 18727, + "end": 18728, + "value": "-" + }, + { + "type": "number", + "start": 18728, + "end": 18746, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 18746, + "end": 18747, + "value": "," + }, + { + "type": "whitespace", + "start": 18747, + "end": 18755, + "value": "\n " + }, + { + "type": "number", + "start": 18755, + "end": 18773, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 18773, + "end": 18779, + "value": "\n " + }, + { + "type": "brace", + "start": 18779, + "end": 18780, + "value": "]" + }, + { + "type": "comma", + "start": 18780, + "end": 18781, + "value": "," + }, + { + "type": "whitespace", + "start": 18781, + "end": 18782, + "value": " " + }, + { + "type": "operator", + "start": 18782, + "end": 18783, + "value": "%" + }, + { + "type": "brace", + "start": 18783, + "end": 18784, + "value": ")" + }, + { + "type": "whitespace", + "start": 18784, + "end": 18787, + "value": "\n " + }, + { + "type": "operator", + "start": 18787, + "end": 18789, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18789, + "end": 18790, + "value": " " + }, + { + "type": "word", + "start": 18790, + "end": 18794, + "value": "line" + }, + { + "type": "brace", + "start": 18794, + "end": 18795, + "value": "(" + }, + { + "type": "brace", + "start": 18795, + "end": 18796, + "value": "[" + }, + { + "type": "whitespace", + "start": 18796, + "end": 18804, + "value": "\n " + }, + { + "type": "operator", + "start": 18804, + "end": 18805, + "value": "-" + }, + { + "type": "number", + "start": 18805, + "end": 18823, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 18823, + "end": 18824, + "value": "," + }, + { + "type": "whitespace", + "start": 18824, + "end": 18832, + "value": "\n " + }, + { + "type": "operator", + "start": 18832, + "end": 18833, + "value": "-" + }, + { + "type": "number", + "start": 18833, + "end": 18852, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 18852, + "end": 18858, + "value": "\n " + }, + { + "type": "brace", + "start": 18858, + "end": 18859, + "value": "]" + }, + { + "type": "comma", + "start": 18859, + "end": 18860, + "value": "," + }, + { + "type": "whitespace", + "start": 18860, + "end": 18861, + "value": " " + }, + { + "type": "operator", + "start": 18861, + "end": 18862, + "value": "%" + }, + { + "type": "brace", + "start": 18862, + "end": 18863, + "value": ")" + }, + { + "type": "whitespace", + "start": 18863, + "end": 18866, + "value": "\n " + }, + { + "type": "operator", + "start": 18866, + "end": 18868, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18868, + "end": 18869, + "value": " " + }, + { + "type": "word", + "start": 18869, + "end": 18873, + "value": "line" + }, + { + "type": "brace", + "start": 18873, + "end": 18874, + "value": "(" + }, + { + "type": "brace", + "start": 18874, + "end": 18875, + "value": "[" + }, + { + "type": "whitespace", + "start": 18875, + "end": 18883, + "value": "\n " + }, + { + "type": "number", + "start": 18883, + "end": 18902, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 18902, + "end": 18903, + "value": "," + }, + { + "type": "whitespace", + "start": 18903, + "end": 18911, + "value": "\n " + }, + { + "type": "number", + "start": 18911, + "end": 18930, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 18930, + "end": 18936, + "value": "\n " + }, + { + "type": "brace", + "start": 18936, + "end": 18937, + "value": "]" + }, + { + "type": "comma", + "start": 18937, + "end": 18938, + "value": "," + }, + { + "type": "whitespace", + "start": 18938, + "end": 18939, + "value": " " + }, + { + "type": "operator", + "start": 18939, + "end": 18940, + "value": "%" + }, + { + "type": "brace", + "start": 18940, + "end": 18941, + "value": ")" + }, + { + "type": "whitespace", + "start": 18941, + "end": 18944, + "value": "\n " + }, + { + "type": "operator", + "start": 18944, + "end": 18946, + "value": "|>" + }, + { + "type": "whitespace", + "start": 18946, + "end": 18947, + "value": " " + }, + { + "type": "word", + "start": 18947, + "end": 18951, + "value": "line" + }, + { + "type": "brace", + "start": 18951, + "end": 18952, + "value": "(" + }, + { + "type": "brace", + "start": 18952, + "end": 18953, + "value": "[" + }, + { + "type": "whitespace", + "start": 18953, + "end": 18961, + "value": "\n " + }, + { + "type": "number", + "start": 18961, + "end": 18980, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 18980, + "end": 18981, + "value": "," + }, + { + "type": "whitespace", + "start": 18981, + "end": 18989, + "value": "\n " + }, + { + "type": "number", + "start": 18989, + "end": 19008, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 19008, + "end": 19014, + "value": "\n " + }, + { + "type": "brace", + "start": 19014, + "end": 19015, + "value": "]" + }, + { + "type": "comma", + "start": 19015, + "end": 19016, + "value": "," + }, + { + "type": "whitespace", + "start": 19016, + "end": 19017, + "value": " " + }, + { + "type": "operator", + "start": 19017, + "end": 19018, + "value": "%" + }, + { + "type": "brace", + "start": 19018, + "end": 19019, + "value": ")" + }, + { + "type": "whitespace", + "start": 19019, + "end": 19022, + "value": "\n " + }, + { + "type": "operator", + "start": 19022, + "end": 19024, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19024, + "end": 19025, + "value": " " + }, + { + "type": "word", + "start": 19025, + "end": 19029, + "value": "line" + }, + { + "type": "brace", + "start": 19029, + "end": 19030, + "value": "(" + }, + { + "type": "brace", + "start": 19030, + "end": 19031, + "value": "[" + }, + { + "type": "whitespace", + "start": 19031, + "end": 19039, + "value": "\n " + }, + { + "type": "operator", + "start": 19039, + "end": 19040, + "value": "-" + }, + { + "type": "number", + "start": 19040, + "end": 19059, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 19059, + "end": 19060, + "value": "," + }, + { + "type": "whitespace", + "start": 19060, + "end": 19068, + "value": "\n " + }, + { + "type": "number", + "start": 19068, + "end": 19086, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 19086, + "end": 19092, + "value": "\n " + }, + { + "type": "brace", + "start": 19092, + "end": 19093, + "value": "]" + }, + { + "type": "comma", + "start": 19093, + "end": 19094, + "value": "," + }, + { + "type": "whitespace", + "start": 19094, + "end": 19095, + "value": " " + }, + { + "type": "operator", + "start": 19095, + "end": 19096, + "value": "%" + }, + { + "type": "brace", + "start": 19096, + "end": 19097, + "value": ")" + }, + { + "type": "whitespace", + "start": 19097, + "end": 19100, + "value": "\n " + }, + { + "type": "operator", + "start": 19100, + "end": 19102, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19102, + "end": 19103, + "value": " " + }, + { + "type": "word", + "start": 19103, + "end": 19107, + "value": "line" + }, + { + "type": "brace", + "start": 19107, + "end": 19108, + "value": "(" + }, + { + "type": "brace", + "start": 19108, + "end": 19109, + "value": "[" + }, + { + "type": "whitespace", + "start": 19109, + "end": 19117, + "value": "\n " + }, + { + "type": "operator", + "start": 19117, + "end": 19118, + "value": "-" + }, + { + "type": "number", + "start": 19118, + "end": 19137, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 19137, + "end": 19138, + "value": "," + }, + { + "type": "whitespace", + "start": 19138, + "end": 19146, + "value": "\n " + }, + { + "type": "operator", + "start": 19146, + "end": 19147, + "value": "-" + }, + { + "type": "number", + "start": 19147, + "end": 19166, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 19166, + "end": 19172, + "value": "\n " + }, + { + "type": "brace", + "start": 19172, + "end": 19173, + "value": "]" + }, + { + "type": "comma", + "start": 19173, + "end": 19174, + "value": "," + }, + { + "type": "whitespace", + "start": 19174, + "end": 19175, + "value": " " + }, + { + "type": "operator", + "start": 19175, + "end": 19176, + "value": "%" + }, + { + "type": "brace", + "start": 19176, + "end": 19177, + "value": ")" + }, + { + "type": "whitespace", + "start": 19177, + "end": 19180, + "value": "\n " + }, + { + "type": "operator", + "start": 19180, + "end": 19182, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19182, + "end": 19183, + "value": " " + }, + { + "type": "word", + "start": 19183, + "end": 19187, + "value": "line" + }, + { + "type": "brace", + "start": 19187, + "end": 19188, + "value": "(" + }, + { + "type": "brace", + "start": 19188, + "end": 19189, + "value": "[" + }, + { + "type": "whitespace", + "start": 19189, + "end": 19197, + "value": "\n " + }, + { + "type": "number", + "start": 19197, + "end": 19215, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 19215, + "end": 19216, + "value": "," + }, + { + "type": "whitespace", + "start": 19216, + "end": 19224, + "value": "\n " + }, + { + "type": "operator", + "start": 19224, + "end": 19225, + "value": "-" + }, + { + "type": "number", + "start": 19225, + "end": 19244, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 19244, + "end": 19250, + "value": "\n " + }, + { + "type": "brace", + "start": 19250, + "end": 19251, + "value": "]" + }, + { + "type": "comma", + "start": 19251, + "end": 19252, + "value": "," + }, + { + "type": "whitespace", + "start": 19252, + "end": 19253, + "value": " " + }, + { + "type": "operator", + "start": 19253, + "end": 19254, + "value": "%" + }, + { + "type": "brace", + "start": 19254, + "end": 19255, + "value": ")" + }, + { + "type": "whitespace", + "start": 19255, + "end": 19258, + "value": "\n " + }, + { + "type": "operator", + "start": 19258, + "end": 19260, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19260, + "end": 19261, + "value": " " + }, + { + "type": "word", + "start": 19261, + "end": 19265, + "value": "line" + }, + { + "type": "brace", + "start": 19265, + "end": 19266, + "value": "(" + }, + { + "type": "brace", + "start": 19266, + "end": 19267, + "value": "[" + }, + { + "type": "whitespace", + "start": 19267, + "end": 19275, + "value": "\n " + }, + { + "type": "number", + "start": 19275, + "end": 19296, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 19296, + "end": 19297, + "value": "," + }, + { + "type": "whitespace", + "start": 19297, + "end": 19305, + "value": "\n " + }, + { + "type": "operator", + "start": 19305, + "end": 19306, + "value": "-" + }, + { + "type": "number", + "start": 19306, + "end": 19324, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 19324, + "end": 19330, + "value": "\n " + }, + { + "type": "brace", + "start": 19330, + "end": 19331, + "value": "]" + }, + { + "type": "comma", + "start": 19331, + "end": 19332, + "value": "," + }, + { + "type": "whitespace", + "start": 19332, + "end": 19333, + "value": " " + }, + { + "type": "operator", + "start": 19333, + "end": 19334, + "value": "%" + }, + { + "type": "brace", + "start": 19334, + "end": 19335, + "value": ")" + }, + { + "type": "whitespace", + "start": 19335, + "end": 19338, + "value": "\n " + }, + { + "type": "operator", + "start": 19338, + "end": 19340, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19340, + "end": 19341, + "value": " " + }, + { + "type": "word", + "start": 19341, + "end": 19345, + "value": "line" + }, + { + "type": "brace", + "start": 19345, + "end": 19346, + "value": "(" + }, + { + "type": "brace", + "start": 19346, + "end": 19347, + "value": "[" + }, + { + "type": "whitespace", + "start": 19347, + "end": 19355, + "value": "\n " + }, + { + "type": "number", + "start": 19355, + "end": 19373, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 19373, + "end": 19374, + "value": "," + }, + { + "type": "whitespace", + "start": 19374, + "end": 19382, + "value": "\n " + }, + { + "type": "operator", + "start": 19382, + "end": 19383, + "value": "-" + }, + { + "type": "number", + "start": 19383, + "end": 19401, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 19401, + "end": 19407, + "value": "\n " + }, + { + "type": "brace", + "start": 19407, + "end": 19408, + "value": "]" + }, + { + "type": "comma", + "start": 19408, + "end": 19409, + "value": "," + }, + { + "type": "whitespace", + "start": 19409, + "end": 19410, + "value": " " + }, + { + "type": "operator", + "start": 19410, + "end": 19411, + "value": "%" + }, + { + "type": "brace", + "start": 19411, + "end": 19412, + "value": ")" + }, + { + "type": "whitespace", + "start": 19412, + "end": 19415, + "value": "\n " + }, + { + "type": "operator", + "start": 19415, + "end": 19417, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19417, + "end": 19418, + "value": " " + }, + { + "type": "word", + "start": 19418, + "end": 19422, + "value": "line" + }, + { + "type": "brace", + "start": 19422, + "end": 19423, + "value": "(" + }, + { + "type": "brace", + "start": 19423, + "end": 19424, + "value": "[" + }, + { + "type": "whitespace", + "start": 19424, + "end": 19432, + "value": "\n " + }, + { + "type": "operator", + "start": 19432, + "end": 19433, + "value": "-" + }, + { + "type": "number", + "start": 19433, + "end": 19451, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 19451, + "end": 19452, + "value": "," + }, + { + "type": "whitespace", + "start": 19452, + "end": 19460, + "value": "\n " + }, + { + "type": "number", + "start": 19460, + "end": 19478, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 19478, + "end": 19484, + "value": "\n " + }, + { + "type": "brace", + "start": 19484, + "end": 19485, + "value": "]" + }, + { + "type": "comma", + "start": 19485, + "end": 19486, + "value": "," + }, + { + "type": "whitespace", + "start": 19486, + "end": 19487, + "value": " " + }, + { + "type": "operator", + "start": 19487, + "end": 19488, + "value": "%" + }, + { + "type": "brace", + "start": 19488, + "end": 19489, + "value": ")" + }, + { + "type": "whitespace", + "start": 19489, + "end": 19492, + "value": "\n " + }, + { + "type": "operator", + "start": 19492, + "end": 19494, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19494, + "end": 19495, + "value": " " + }, + { + "type": "word", + "start": 19495, + "end": 19499, + "value": "line" + }, + { + "type": "brace", + "start": 19499, + "end": 19500, + "value": "(" + }, + { + "type": "brace", + "start": 19500, + "end": 19501, + "value": "[" + }, + { + "type": "number", + "start": 19501, + "end": 19519, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 19519, + "end": 19520, + "value": "," + }, + { + "type": "whitespace", + "start": 19520, + "end": 19521, + "value": " " + }, + { + "type": "number", + "start": 19521, + "end": 19539, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 19539, + "end": 19540, + "value": "]" + }, + { + "type": "comma", + "start": 19540, + "end": 19541, + "value": "," + }, + { + "type": "whitespace", + "start": 19541, + "end": 19542, + "value": " " + }, + { + "type": "operator", + "start": 19542, + "end": 19543, + "value": "%" + }, + { + "type": "brace", + "start": 19543, + "end": 19544, + "value": ")" + }, + { + "type": "whitespace", + "start": 19544, + "end": 19547, + "value": "\n " + }, + { + "type": "operator", + "start": 19547, + "end": 19549, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19549, + "end": 19550, + "value": " " + }, + { + "type": "word", + "start": 19550, + "end": 19554, + "value": "line" + }, + { + "type": "brace", + "start": 19554, + "end": 19555, + "value": "(" + }, + { + "type": "brace", + "start": 19555, + "end": 19556, + "value": "[" + }, + { + "type": "whitespace", + "start": 19556, + "end": 19564, + "value": "\n " + }, + { + "type": "operator", + "start": 19564, + "end": 19565, + "value": "-" + }, + { + "type": "number", + "start": 19565, + "end": 19584, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 19584, + "end": 19585, + "value": "," + }, + { + "type": "whitespace", + "start": 19585, + "end": 19593, + "value": "\n " + }, + { + "type": "number", + "start": 19593, + "end": 19613, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 19613, + "end": 19619, + "value": "\n " + }, + { + "type": "brace", + "start": 19619, + "end": 19620, + "value": "]" + }, + { + "type": "comma", + "start": 19620, + "end": 19621, + "value": "," + }, + { + "type": "whitespace", + "start": 19621, + "end": 19622, + "value": " " + }, + { + "type": "operator", + "start": 19622, + "end": 19623, + "value": "%" + }, + { + "type": "brace", + "start": 19623, + "end": 19624, + "value": ")" + }, + { + "type": "whitespace", + "start": 19624, + "end": 19627, + "value": "\n " + }, + { + "type": "operator", + "start": 19627, + "end": 19629, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19629, + "end": 19630, + "value": " " + }, + { + "type": "word", + "start": 19630, + "end": 19634, + "value": "line" + }, + { + "type": "brace", + "start": 19634, + "end": 19635, + "value": "(" + }, + { + "type": "brace", + "start": 19635, + "end": 19636, + "value": "[" + }, + { + "type": "whitespace", + "start": 19636, + "end": 19644, + "value": "\n " + }, + { + "type": "operator", + "start": 19644, + "end": 19645, + "value": "-" + }, + { + "type": "number", + "start": 19645, + "end": 19663, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 19663, + "end": 19664, + "value": "," + }, + { + "type": "whitespace", + "start": 19664, + "end": 19672, + "value": "\n " + }, + { + "type": "operator", + "start": 19672, + "end": 19673, + "value": "-" + }, + { + "type": "number", + "start": 19673, + "end": 19692, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 19692, + "end": 19698, + "value": "\n " + }, + { + "type": "brace", + "start": 19698, + "end": 19699, + "value": "]" + }, + { + "type": "comma", + "start": 19699, + "end": 19700, + "value": "," + }, + { + "type": "whitespace", + "start": 19700, + "end": 19701, + "value": " " + }, + { + "type": "operator", + "start": 19701, + "end": 19702, + "value": "%" + }, + { + "type": "brace", + "start": 19702, + "end": 19703, + "value": ")" + }, + { + "type": "whitespace", + "start": 19703, + "end": 19706, + "value": "\n " + }, + { + "type": "operator", + "start": 19706, + "end": 19708, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19708, + "end": 19709, + "value": " " + }, + { + "type": "word", + "start": 19709, + "end": 19713, + "value": "line" + }, + { + "type": "brace", + "start": 19713, + "end": 19714, + "value": "(" + }, + { + "type": "brace", + "start": 19714, + "end": 19715, + "value": "[" + }, + { + "type": "whitespace", + "start": 19715, + "end": 19723, + "value": "\n " + }, + { + "type": "operator", + "start": 19723, + "end": 19724, + "value": "-" + }, + { + "type": "number", + "start": 19724, + "end": 19742, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 19742, + "end": 19743, + "value": "," + }, + { + "type": "whitespace", + "start": 19743, + "end": 19751, + "value": "\n " + }, + { + "type": "operator", + "start": 19751, + "end": 19752, + "value": "-" + }, + { + "type": "number", + "start": 19752, + "end": 19771, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 19771, + "end": 19777, + "value": "\n " + }, + { + "type": "brace", + "start": 19777, + "end": 19778, + "value": "]" + }, + { + "type": "comma", + "start": 19778, + "end": 19779, + "value": "," + }, + { + "type": "whitespace", + "start": 19779, + "end": 19780, + "value": " " + }, + { + "type": "operator", + "start": 19780, + "end": 19781, + "value": "%" + }, + { + "type": "brace", + "start": 19781, + "end": 19782, + "value": ")" + }, + { + "type": "whitespace", + "start": 19782, + "end": 19785, + "value": "\n " + }, + { + "type": "operator", + "start": 19785, + "end": 19787, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19787, + "end": 19788, + "value": " " + }, + { + "type": "word", + "start": 19788, + "end": 19792, + "value": "line" + }, + { + "type": "brace", + "start": 19792, + "end": 19793, + "value": "(" + }, + { + "type": "brace", + "start": 19793, + "end": 19794, + "value": "[" + }, + { + "type": "number", + "start": 19794, + "end": 19811, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 19811, + "end": 19812, + "value": "," + }, + { + "type": "whitespace", + "start": 19812, + "end": 19813, + "value": " " + }, + { + "type": "number", + "start": 19813, + "end": 19831, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 19831, + "end": 19832, + "value": "]" + }, + { + "type": "comma", + "start": 19832, + "end": 19833, + "value": "," + }, + { + "type": "whitespace", + "start": 19833, + "end": 19834, + "value": " " + }, + { + "type": "operator", + "start": 19834, + "end": 19835, + "value": "%" + }, + { + "type": "brace", + "start": 19835, + "end": 19836, + "value": ")" + }, + { + "type": "whitespace", + "start": 19836, + "end": 19839, + "value": "\n " + }, + { + "type": "operator", + "start": 19839, + "end": 19841, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19841, + "end": 19842, + "value": " " + }, + { + "type": "word", + "start": 19842, + "end": 19846, + "value": "line" + }, + { + "type": "brace", + "start": 19846, + "end": 19847, + "value": "(" + }, + { + "type": "brace", + "start": 19847, + "end": 19848, + "value": "[" + }, + { + "type": "whitespace", + "start": 19848, + "end": 19856, + "value": "\n " + }, + { + "type": "number", + "start": 19856, + "end": 19875, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 19875, + "end": 19876, + "value": "," + }, + { + "type": "whitespace", + "start": 19876, + "end": 19884, + "value": "\n " + }, + { + "type": "operator", + "start": 19884, + "end": 19885, + "value": "-" + }, + { + "type": "number", + "start": 19885, + "end": 19904, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 19904, + "end": 19910, + "value": "\n " + }, + { + "type": "brace", + "start": 19910, + "end": 19911, + "value": "]" + }, + { + "type": "comma", + "start": 19911, + "end": 19912, + "value": "," + }, + { + "type": "whitespace", + "start": 19912, + "end": 19913, + "value": " " + }, + { + "type": "operator", + "start": 19913, + "end": 19914, + "value": "%" + }, + { + "type": "brace", + "start": 19914, + "end": 19915, + "value": ")" + }, + { + "type": "whitespace", + "start": 19915, + "end": 19918, + "value": "\n " + }, + { + "type": "operator", + "start": 19918, + "end": 19920, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19920, + "end": 19921, + "value": " " + }, + { + "type": "word", + "start": 19921, + "end": 19925, + "value": "line" + }, + { + "type": "brace", + "start": 19925, + "end": 19926, + "value": "(" + }, + { + "type": "brace", + "start": 19926, + "end": 19927, + "value": "[" + }, + { + "type": "number", + "start": 19927, + "end": 19945, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 19945, + "end": 19946, + "value": "," + }, + { + "type": "whitespace", + "start": 19946, + "end": 19947, + "value": " " + }, + { + "type": "number", + "start": 19947, + "end": 19964, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 19964, + "end": 19965, + "value": "]" + }, + { + "type": "comma", + "start": 19965, + "end": 19966, + "value": "," + }, + { + "type": "whitespace", + "start": 19966, + "end": 19967, + "value": " " + }, + { + "type": "operator", + "start": 19967, + "end": 19968, + "value": "%" + }, + { + "type": "brace", + "start": 19968, + "end": 19969, + "value": ")" + }, + { + "type": "whitespace", + "start": 19969, + "end": 19972, + "value": "\n " + }, + { + "type": "operator", + "start": 19972, + "end": 19974, + "value": "|>" + }, + { + "type": "whitespace", + "start": 19974, + "end": 19975, + "value": " " + }, + { + "type": "word", + "start": 19975, + "end": 19979, + "value": "line" + }, + { + "type": "brace", + "start": 19979, + "end": 19980, + "value": "(" + }, + { + "type": "brace", + "start": 19980, + "end": 19981, + "value": "[" + }, + { + "type": "whitespace", + "start": 19981, + "end": 19989, + "value": "\n " + }, + { + "type": "number", + "start": 19989, + "end": 20008, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 20008, + "end": 20009, + "value": "," + }, + { + "type": "whitespace", + "start": 20009, + "end": 20017, + "value": "\n " + }, + { + "type": "operator", + "start": 20017, + "end": 20018, + "value": "-" + }, + { + "type": "number", + "start": 20018, + "end": 20036, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 20036, + "end": 20042, + "value": "\n " + }, + { + "type": "brace", + "start": 20042, + "end": 20043, + "value": "]" + }, + { + "type": "comma", + "start": 20043, + "end": 20044, + "value": "," + }, + { + "type": "whitespace", + "start": 20044, + "end": 20045, + "value": " " + }, + { + "type": "operator", + "start": 20045, + "end": 20046, + "value": "%" + }, + { + "type": "brace", + "start": 20046, + "end": 20047, + "value": ")" + }, + { + "type": "whitespace", + "start": 20047, + "end": 20050, + "value": "\n " + }, + { + "type": "operator", + "start": 20050, + "end": 20052, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20052, + "end": 20053, + "value": " " + }, + { + "type": "word", + "start": 20053, + "end": 20057, + "value": "line" + }, + { + "type": "brace", + "start": 20057, + "end": 20058, + "value": "(" + }, + { + "type": "brace", + "start": 20058, + "end": 20059, + "value": "[" + }, + { + "type": "number", + "start": 20059, + "end": 20077, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 20077, + "end": 20078, + "value": "," + }, + { + "type": "whitespace", + "start": 20078, + "end": 20079, + "value": " " + }, + { + "type": "number", + "start": 20079, + "end": 20097, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 20097, + "end": 20098, + "value": "]" + }, + { + "type": "comma", + "start": 20098, + "end": 20099, + "value": "," + }, + { + "type": "whitespace", + "start": 20099, + "end": 20100, + "value": " " + }, + { + "type": "operator", + "start": 20100, + "end": 20101, + "value": "%" + }, + { + "type": "brace", + "start": 20101, + "end": 20102, + "value": ")" + }, + { + "type": "whitespace", + "start": 20102, + "end": 20105, + "value": "\n " + }, + { + "type": "operator", + "start": 20105, + "end": 20107, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20107, + "end": 20108, + "value": " " + }, + { + "type": "word", + "start": 20108, + "end": 20112, + "value": "line" + }, + { + "type": "brace", + "start": 20112, + "end": 20113, + "value": "(" + }, + { + "type": "brace", + "start": 20113, + "end": 20114, + "value": "[" + }, + { + "type": "whitespace", + "start": 20114, + "end": 20122, + "value": "\n " + }, + { + "type": "number", + "start": 20122, + "end": 20140, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 20140, + "end": 20141, + "value": "," + }, + { + "type": "whitespace", + "start": 20141, + "end": 20149, + "value": "\n " + }, + { + "type": "number", + "start": 20149, + "end": 20168, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 20168, + "end": 20174, + "value": "\n " + }, + { + "type": "brace", + "start": 20174, + "end": 20175, + "value": "]" + }, + { + "type": "comma", + "start": 20175, + "end": 20176, + "value": "," + }, + { + "type": "whitespace", + "start": 20176, + "end": 20177, + "value": " " + }, + { + "type": "operator", + "start": 20177, + "end": 20178, + "value": "%" + }, + { + "type": "brace", + "start": 20178, + "end": 20179, + "value": ")" + }, + { + "type": "whitespace", + "start": 20179, + "end": 20182, + "value": "\n " + }, + { + "type": "operator", + "start": 20182, + "end": 20184, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20184, + "end": 20185, + "value": " " + }, + { + "type": "word", + "start": 20185, + "end": 20189, + "value": "line" + }, + { + "type": "brace", + "start": 20189, + "end": 20190, + "value": "(" + }, + { + "type": "brace", + "start": 20190, + "end": 20191, + "value": "[" + }, + { + "type": "number", + "start": 20191, + "end": 20209, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 20209, + "end": 20210, + "value": "," + }, + { + "type": "whitespace", + "start": 20210, + "end": 20211, + "value": " " + }, + { + "type": "number", + "start": 20211, + "end": 20229, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 20229, + "end": 20230, + "value": "]" + }, + { + "type": "comma", + "start": 20230, + "end": 20231, + "value": "," + }, + { + "type": "whitespace", + "start": 20231, + "end": 20232, + "value": " " + }, + { + "type": "operator", + "start": 20232, + "end": 20233, + "value": "%" + }, + { + "type": "brace", + "start": 20233, + "end": 20234, + "value": ")" + }, + { + "type": "whitespace", + "start": 20234, + "end": 20237, + "value": "\n " + }, + { + "type": "operator", + "start": 20237, + "end": 20239, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20239, + "end": 20240, + "value": " " + }, + { + "type": "word", + "start": 20240, + "end": 20244, + "value": "line" + }, + { + "type": "brace", + "start": 20244, + "end": 20245, + "value": "(" + }, + { + "type": "brace", + "start": 20245, + "end": 20246, + "value": "[" + }, + { + "type": "whitespace", + "start": 20246, + "end": 20254, + "value": "\n " + }, + { + "type": "operator", + "start": 20254, + "end": 20255, + "value": "-" + }, + { + "type": "number", + "start": 20255, + "end": 20274, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 20274, + "end": 20275, + "value": "," + }, + { + "type": "whitespace", + "start": 20275, + "end": 20283, + "value": "\n " + }, + { + "type": "operator", + "start": 20283, + "end": 20284, + "value": "-" + }, + { + "type": "number", + "start": 20284, + "end": 20302, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 20302, + "end": 20308, + "value": "\n " + }, + { + "type": "brace", + "start": 20308, + "end": 20309, + "value": "]" + }, + { + "type": "comma", + "start": 20309, + "end": 20310, + "value": "," + }, + { + "type": "whitespace", + "start": 20310, + "end": 20311, + "value": " " + }, + { + "type": "operator", + "start": 20311, + "end": 20312, + "value": "%" + }, + { + "type": "brace", + "start": 20312, + "end": 20313, + "value": ")" + }, + { + "type": "whitespace", + "start": 20313, + "end": 20316, + "value": "\n " + }, + { + "type": "operator", + "start": 20316, + "end": 20318, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20318, + "end": 20319, + "value": " " + }, + { + "type": "word", + "start": 20319, + "end": 20323, + "value": "line" + }, + { + "type": "brace", + "start": 20323, + "end": 20324, + "value": "(" + }, + { + "type": "brace", + "start": 20324, + "end": 20325, + "value": "[" + }, + { + "type": "whitespace", + "start": 20325, + "end": 20333, + "value": "\n " + }, + { + "type": "number", + "start": 20333, + "end": 20351, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 20351, + "end": 20352, + "value": "," + }, + { + "type": "whitespace", + "start": 20352, + "end": 20360, + "value": "\n " + }, + { + "type": "operator", + "start": 20360, + "end": 20361, + "value": "-" + }, + { + "type": "number", + "start": 20361, + "end": 20379, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 20379, + "end": 20385, + "value": "\n " + }, + { + "type": "brace", + "start": 20385, + "end": 20386, + "value": "]" + }, + { + "type": "comma", + "start": 20386, + "end": 20387, + "value": "," + }, + { + "type": "whitespace", + "start": 20387, + "end": 20388, + "value": " " + }, + { + "type": "operator", + "start": 20388, + "end": 20389, + "value": "%" + }, + { + "type": "brace", + "start": 20389, + "end": 20390, + "value": ")" + }, + { + "type": "whitespace", + "start": 20390, + "end": 20393, + "value": "\n " + }, + { + "type": "operator", + "start": 20393, + "end": 20395, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20395, + "end": 20396, + "value": " " + }, + { + "type": "word", + "start": 20396, + "end": 20400, + "value": "line" + }, + { + "type": "brace", + "start": 20400, + "end": 20401, + "value": "(" + }, + { + "type": "brace", + "start": 20401, + "end": 20402, + "value": "[" + }, + { + "type": "whitespace", + "start": 20402, + "end": 20410, + "value": "\n " + }, + { + "type": "number", + "start": 20410, + "end": 20428, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 20428, + "end": 20429, + "value": "," + }, + { + "type": "whitespace", + "start": 20429, + "end": 20437, + "value": "\n " + }, + { + "type": "operator", + "start": 20437, + "end": 20438, + "value": "-" + }, + { + "type": "number", + "start": 20438, + "end": 20456, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 20456, + "end": 20462, + "value": "\n " + }, + { + "type": "brace", + "start": 20462, + "end": 20463, + "value": "]" + }, + { + "type": "comma", + "start": 20463, + "end": 20464, + "value": "," + }, + { + "type": "whitespace", + "start": 20464, + "end": 20465, + "value": " " + }, + { + "type": "operator", + "start": 20465, + "end": 20466, + "value": "%" + }, + { + "type": "brace", + "start": 20466, + "end": 20467, + "value": ")" + }, + { + "type": "whitespace", + "start": 20467, + "end": 20470, + "value": "\n " + }, + { + "type": "operator", + "start": 20470, + "end": 20472, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20472, + "end": 20473, + "value": " " + }, + { + "type": "word", + "start": 20473, + "end": 20477, + "value": "line" + }, + { + "type": "brace", + "start": 20477, + "end": 20478, + "value": "(" + }, + { + "type": "brace", + "start": 20478, + "end": 20479, + "value": "[" + }, + { + "type": "whitespace", + "start": 20479, + "end": 20487, + "value": "\n " + }, + { + "type": "operator", + "start": 20487, + "end": 20488, + "value": "-" + }, + { + "type": "number", + "start": 20488, + "end": 20506, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 20506, + "end": 20507, + "value": "," + }, + { + "type": "whitespace", + "start": 20507, + "end": 20515, + "value": "\n " + }, + { + "type": "number", + "start": 20515, + "end": 20533, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 20533, + "end": 20539, + "value": "\n " + }, + { + "type": "brace", + "start": 20539, + "end": 20540, + "value": "]" + }, + { + "type": "comma", + "start": 20540, + "end": 20541, + "value": "," + }, + { + "type": "whitespace", + "start": 20541, + "end": 20542, + "value": " " + }, + { + "type": "operator", + "start": 20542, + "end": 20543, + "value": "%" + }, + { + "type": "brace", + "start": 20543, + "end": 20544, + "value": ")" + }, + { + "type": "whitespace", + "start": 20544, + "end": 20547, + "value": "\n " + }, + { + "type": "operator", + "start": 20547, + "end": 20549, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20549, + "end": 20550, + "value": " " + }, + { + "type": "word", + "start": 20550, + "end": 20554, + "value": "line" + }, + { + "type": "brace", + "start": 20554, + "end": 20555, + "value": "(" + }, + { + "type": "brace", + "start": 20555, + "end": 20556, + "value": "[" + }, + { + "type": "whitespace", + "start": 20556, + "end": 20564, + "value": "\n " + }, + { + "type": "number", + "start": 20564, + "end": 20582, + "value": "0.9464450621708211" + }, + { + "type": "comma", + "start": 20582, + "end": 20583, + "value": "," + }, + { + "type": "whitespace", + "start": 20583, + "end": 20591, + "value": "\n " + }, + { + "type": "operator", + "start": 20591, + "end": 20592, + "value": "-" + }, + { + "type": "number", + "start": 20592, + "end": 20610, + "value": "0.2684908127803667" + }, + { + "type": "whitespace", + "start": 20610, + "end": 20616, + "value": "\n " + }, + { + "type": "brace", + "start": 20616, + "end": 20617, + "value": "]" + }, + { + "type": "comma", + "start": 20617, + "end": 20618, + "value": "," + }, + { + "type": "whitespace", + "start": 20618, + "end": 20619, + "value": " " + }, + { + "type": "operator", + "start": 20619, + "end": 20620, + "value": "%" + }, + { + "type": "brace", + "start": 20620, + "end": 20621, + "value": ")" + }, + { + "type": "whitespace", + "start": 20621, + "end": 20624, + "value": "\n " + }, + { + "type": "operator", + "start": 20624, + "end": 20626, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20626, + "end": 20627, + "value": " " + }, + { + "type": "word", + "start": 20627, + "end": 20631, + "value": "line" + }, + { + "type": "brace", + "start": 20631, + "end": 20632, + "value": "(" + }, + { + "type": "brace", + "start": 20632, + "end": 20633, + "value": "[" + }, + { + "type": "number", + "start": 20633, + "end": 20651, + "value": "0.5241732366617591" + }, + { + "type": "comma", + "start": 20651, + "end": 20652, + "value": "," + }, + { + "type": "whitespace", + "start": 20652, + "end": 20653, + "value": " " + }, + { + "type": "number", + "start": 20653, + "end": 20671, + "value": "0.9011437416408563" + }, + { + "type": "brace", + "start": 20671, + "end": 20672, + "value": "]" + }, + { + "type": "comma", + "start": 20672, + "end": 20673, + "value": "," + }, + { + "type": "whitespace", + "start": 20673, + "end": 20674, + "value": " " + }, + { + "type": "operator", + "start": 20674, + "end": 20675, + "value": "%" + }, + { + "type": "brace", + "start": 20675, + "end": 20676, + "value": ")" + }, + { + "type": "whitespace", + "start": 20676, + "end": 20679, + "value": "\n " + }, + { + "type": "operator", + "start": 20679, + "end": 20681, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20681, + "end": 20682, + "value": " " + }, + { + "type": "word", + "start": 20682, + "end": 20686, + "value": "line" + }, + { + "type": "brace", + "start": 20686, + "end": 20687, + "value": "(" + }, + { + "type": "brace", + "start": 20687, + "end": 20688, + "value": "[" + }, + { + "type": "whitespace", + "start": 20688, + "end": 20696, + "value": "\n " + }, + { + "type": "operator", + "start": 20696, + "end": 20697, + "value": "-" + }, + { + "type": "number", + "start": 20697, + "end": 20716, + "value": "0.14255393713960607" + }, + { + "type": "comma", + "start": 20716, + "end": 20717, + "value": "," + }, + { + "type": "whitespace", + "start": 20717, + "end": 20725, + "value": "\n " + }, + { + "type": "operator", + "start": 20725, + "end": 20726, + "value": "-" + }, + { + "type": "number", + "start": 20726, + "end": 20744, + "value": "0.5194262624564814" + }, + { + "type": "whitespace", + "start": 20744, + "end": 20750, + "value": "\n " + }, + { + "type": "brace", + "start": 20750, + "end": 20751, + "value": "]" + }, + { + "type": "comma", + "start": 20751, + "end": 20752, + "value": "," + }, + { + "type": "whitespace", + "start": 20752, + "end": 20753, + "value": " " + }, + { + "type": "operator", + "start": 20753, + "end": 20754, + "value": "%" + }, + { + "type": "brace", + "start": 20754, + "end": 20755, + "value": ")" + }, + { + "type": "whitespace", + "start": 20755, + "end": 20758, + "value": "\n " + }, + { + "type": "operator", + "start": 20758, + "end": 20760, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20760, + "end": 20761, + "value": " " + }, + { + "type": "word", + "start": 20761, + "end": 20765, + "value": "line" + }, + { + "type": "brace", + "start": 20765, + "end": 20766, + "value": "(" + }, + { + "type": "brace", + "start": 20766, + "end": 20767, + "value": "[" + }, + { + "type": "whitespace", + "start": 20767, + "end": 20775, + "value": "\n " + }, + { + "type": "operator", + "start": 20775, + "end": 20776, + "value": "-" + }, + { + "type": "number", + "start": 20776, + "end": 20794, + "value": "0.4287123231350338" + }, + { + "type": "comma", + "start": 20794, + "end": 20795, + "value": "," + }, + { + "type": "whitespace", + "start": 20795, + "end": 20803, + "value": "\n " + }, + { + "type": "operator", + "start": 20803, + "end": 20804, + "value": "-" + }, + { + "type": "number", + "start": 20804, + "end": 20822, + "value": "0.4223564528725028" + }, + { + "type": "whitespace", + "start": 20822, + "end": 20828, + "value": "\n " + }, + { + "type": "brace", + "start": 20828, + "end": 20829, + "value": "]" + }, + { + "type": "comma", + "start": 20829, + "end": 20830, + "value": "," + }, + { + "type": "whitespace", + "start": 20830, + "end": 20831, + "value": " " + }, + { + "type": "operator", + "start": 20831, + "end": 20832, + "value": "%" + }, + { + "type": "brace", + "start": 20832, + "end": 20833, + "value": ")" + }, + { + "type": "whitespace", + "start": 20833, + "end": 20836, + "value": "\n " + }, + { + "type": "operator", + "start": 20836, + "end": 20838, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20838, + "end": 20839, + "value": " " + }, + { + "type": "word", + "start": 20839, + "end": 20843, + "value": "line" + }, + { + "type": "brace", + "start": 20843, + "end": 20844, + "value": "(" + }, + { + "type": "brace", + "start": 20844, + "end": 20845, + "value": "[" + }, + { + "type": "whitespace", + "start": 20845, + "end": 20853, + "value": "\n " + }, + { + "type": "operator", + "start": 20853, + "end": 20854, + "value": "-" + }, + { + "type": "number", + "start": 20854, + "end": 20873, + "value": "0.09316367294024519" + }, + { + "type": "comma", + "start": 20873, + "end": 20874, + "value": "," + }, + { + "type": "whitespace", + "start": 20874, + "end": 20882, + "value": "\n " + }, + { + "type": "operator", + "start": 20882, + "end": 20883, + "value": "-" + }, + { + "type": "number", + "start": 20883, + "end": 20901, + "value": "0.9063127021008246" + }, + { + "type": "whitespace", + "start": 20901, + "end": 20907, + "value": "\n " + }, + { + "type": "brace", + "start": 20907, + "end": 20908, + "value": "]" + }, + { + "type": "comma", + "start": 20908, + "end": 20909, + "value": "," + }, + { + "type": "whitespace", + "start": 20909, + "end": 20910, + "value": " " + }, + { + "type": "operator", + "start": 20910, + "end": 20911, + "value": "%" + }, + { + "type": "brace", + "start": 20911, + "end": 20912, + "value": ")" + }, + { + "type": "whitespace", + "start": 20912, + "end": 20915, + "value": "\n " + }, + { + "type": "operator", + "start": 20915, + "end": 20917, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20917, + "end": 20918, + "value": " " + }, + { + "type": "word", + "start": 20918, + "end": 20922, + "value": "line" + }, + { + "type": "brace", + "start": 20922, + "end": 20923, + "value": "(" + }, + { + "type": "brace", + "start": 20923, + "end": 20924, + "value": "[" + }, + { + "type": "whitespace", + "start": 20924, + "end": 20932, + "value": "\n " + }, + { + "type": "operator", + "start": 20932, + "end": 20933, + "value": "-" + }, + { + "type": "number", + "start": 20933, + "end": 20951, + "value": "0.2767766535558669" + }, + { + "type": "comma", + "start": 20951, + "end": 20952, + "value": "," + }, + { + "type": "whitespace", + "start": 20952, + "end": 20960, + "value": "\n " + }, + { + "type": "number", + "start": 20960, + "end": 20978, + "value": "0.6816248114129131" + }, + { + "type": "whitespace", + "start": 20978, + "end": 20984, + "value": "\n " + }, + { + "type": "brace", + "start": 20984, + "end": 20985, + "value": "]" + }, + { + "type": "comma", + "start": 20985, + "end": 20986, + "value": "," + }, + { + "type": "whitespace", + "start": 20986, + "end": 20987, + "value": " " + }, + { + "type": "operator", + "start": 20987, + "end": 20988, + "value": "%" + }, + { + "type": "brace", + "start": 20988, + "end": 20989, + "value": ")" + }, + { + "type": "whitespace", + "start": 20989, + "end": 20992, + "value": "\n " + }, + { + "type": "operator", + "start": 20992, + "end": 20994, + "value": "|>" + }, + { + "type": "whitespace", + "start": 20994, + "end": 20995, + "value": " " + }, + { + "type": "word", + "start": 20995, + "end": 20999, + "value": "line" + }, + { + "type": "brace", + "start": 20999, + "end": 21000, + "value": "(" + }, + { + "type": "brace", + "start": 21000, + "end": 21001, + "value": "[" + }, + { + "type": "whitespace", + "start": 21001, + "end": 21009, + "value": "\n " + }, + { + "type": "number", + "start": 21009, + "end": 21027, + "value": "0.9796762495562534" + }, + { + "type": "comma", + "start": 21027, + "end": 21028, + "value": "," + }, + { + "type": "whitespace", + "start": 21028, + "end": 21036, + "value": "\n " + }, + { + "type": "operator", + "start": 21036, + "end": 21037, + "value": "-" + }, + { + "type": "number", + "start": 21037, + "end": 21055, + "value": "0.0822145668330625" + }, + { + "type": "whitespace", + "start": 21055, + "end": 21061, + "value": "\n " + }, + { + "type": "brace", + "start": 21061, + "end": 21062, + "value": "]" + }, + { + "type": "comma", + "start": 21062, + "end": 21063, + "value": "," + }, + { + "type": "whitespace", + "start": 21063, + "end": 21064, + "value": " " + }, + { + "type": "operator", + "start": 21064, + "end": 21065, + "value": "%" + }, + { + "type": "brace", + "start": 21065, + "end": 21066, + "value": ")" + }, + { + "type": "whitespace", + "start": 21066, + "end": 21069, + "value": "\n " + }, + { + "type": "operator", + "start": 21069, + "end": 21071, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21071, + "end": 21072, + "value": " " + }, + { + "type": "word", + "start": 21072, + "end": 21076, + "value": "line" + }, + { + "type": "brace", + "start": 21076, + "end": 21077, + "value": "(" + }, + { + "type": "brace", + "start": 21077, + "end": 21078, + "value": "[" + }, + { + "type": "whitespace", + "start": 21078, + "end": 21086, + "value": "\n " + }, + { + "type": "operator", + "start": 21086, + "end": 21087, + "value": "-" + }, + { + "type": "number", + "start": 21087, + "end": 21105, + "value": "0.8666513070867441" + }, + { + "type": "comma", + "start": 21105, + "end": 21106, + "value": "," + }, + { + "type": "whitespace", + "start": 21106, + "end": 21114, + "value": "\n " + }, + { + "type": "operator", + "start": 21114, + "end": 21115, + "value": "-" + }, + { + "type": "number", + "start": 21115, + "end": 21132, + "value": "0.301053160242023" + }, + { + "type": "whitespace", + "start": 21132, + "end": 21138, + "value": "\n " + }, + { + "type": "brace", + "start": 21138, + "end": 21139, + "value": "]" + }, + { + "type": "comma", + "start": 21139, + "end": 21140, + "value": "," + }, + { + "type": "whitespace", + "start": 21140, + "end": 21141, + "value": " " + }, + { + "type": "operator", + "start": 21141, + "end": 21142, + "value": "%" + }, + { + "type": "brace", + "start": 21142, + "end": 21143, + "value": ")" + }, + { + "type": "whitespace", + "start": 21143, + "end": 21146, + "value": "\n " + }, + { + "type": "operator", + "start": 21146, + "end": 21148, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21148, + "end": 21149, + "value": " " + }, + { + "type": "word", + "start": 21149, + "end": 21153, + "value": "line" + }, + { + "type": "brace", + "start": 21153, + "end": 21154, + "value": "(" + }, + { + "type": "brace", + "start": 21154, + "end": 21155, + "value": "[" + }, + { + "type": "whitespace", + "start": 21155, + "end": 21163, + "value": "\n " + }, + { + "type": "number", + "start": 21163, + "end": 21180, + "value": "0.537415656028112" + }, + { + "type": "comma", + "start": 21180, + "end": 21181, + "value": "," + }, + { + "type": "whitespace", + "start": 21181, + "end": 21189, + "value": "\n " + }, + { + "type": "number", + "start": 21189, + "end": 21209, + "value": "0.020272692875002774" + }, + { + "type": "whitespace", + "start": 21209, + "end": 21215, + "value": "\n " + }, + { + "type": "brace", + "start": 21215, + "end": 21216, + "value": "]" + }, + { + "type": "comma", + "start": 21216, + "end": 21217, + "value": "," + }, + { + "type": "whitespace", + "start": 21217, + "end": 21218, + "value": " " + }, + { + "type": "operator", + "start": 21218, + "end": 21219, + "value": "%" + }, + { + "type": "brace", + "start": 21219, + "end": 21220, + "value": ")" + }, + { + "type": "whitespace", + "start": 21220, + "end": 21223, + "value": "\n " + }, + { + "type": "operator", + "start": 21223, + "end": 21225, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21225, + "end": 21226, + "value": " " + }, + { + "type": "word", + "start": 21226, + "end": 21230, + "value": "line" + }, + { + "type": "brace", + "start": 21230, + "end": 21231, + "value": "(" + }, + { + "type": "brace", + "start": 21231, + "end": 21232, + "value": "[" + }, + { + "type": "whitespace", + "start": 21232, + "end": 21240, + "value": "\n " + }, + { + "type": "number", + "start": 21240, + "end": 21258, + "value": "0.9332396256457531" + }, + { + "type": "comma", + "start": 21258, + "end": 21259, + "value": "," + }, + { + "type": "whitespace", + "start": 21259, + "end": 21267, + "value": "\n " + }, + { + "type": "operator", + "start": 21267, + "end": 21268, + "value": "-" + }, + { + "type": "number", + "start": 21268, + "end": 21286, + "value": "0.6228175690649898" + }, + { + "type": "whitespace", + "start": 21286, + "end": 21292, + "value": "\n " + }, + { + "type": "brace", + "start": 21292, + "end": 21293, + "value": "]" + }, + { + "type": "comma", + "start": 21293, + "end": 21294, + "value": "," + }, + { + "type": "whitespace", + "start": 21294, + "end": 21295, + "value": " " + }, + { + "type": "operator", + "start": 21295, + "end": 21296, + "value": "%" + }, + { + "type": "brace", + "start": 21296, + "end": 21297, + "value": ")" + }, + { + "type": "whitespace", + "start": 21297, + "end": 21300, + "value": "\n " + }, + { + "type": "operator", + "start": 21300, + "end": 21302, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21302, + "end": 21303, + "value": " " + }, + { + "type": "word", + "start": 21303, + "end": 21307, + "value": "line" + }, + { + "type": "brace", + "start": 21307, + "end": 21308, + "value": "(" + }, + { + "type": "brace", + "start": 21308, + "end": 21309, + "value": "[" + }, + { + "type": "whitespace", + "start": 21309, + "end": 21317, + "value": "\n " + }, + { + "type": "number", + "start": 21317, + "end": 21336, + "value": "0.18052415837320734" + }, + { + "type": "comma", + "start": 21336, + "end": 21337, + "value": "," + }, + { + "type": "whitespace", + "start": 21337, + "end": 21345, + "value": "\n " + }, + { + "type": "operator", + "start": 21345, + "end": 21346, + "value": "-" + }, + { + "type": "number", + "start": 21346, + "end": 21365, + "value": "0.36894384647296197" + }, + { + "type": "whitespace", + "start": 21365, + "end": 21371, + "value": "\n " + }, + { + "type": "brace", + "start": 21371, + "end": 21372, + "value": "]" + }, + { + "type": "comma", + "start": 21372, + "end": 21373, + "value": "," + }, + { + "type": "whitespace", + "start": 21373, + "end": 21374, + "value": " " + }, + { + "type": "operator", + "start": 21374, + "end": 21375, + "value": "%" + }, + { + "type": "brace", + "start": 21375, + "end": 21376, + "value": ")" + }, + { + "type": "whitespace", + "start": 21376, + "end": 21379, + "value": "\n " + }, + { + "type": "operator", + "start": 21379, + "end": 21381, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21381, + "end": 21382, + "value": " " + }, + { + "type": "word", + "start": 21382, + "end": 21386, + "value": "line" + }, + { + "type": "brace", + "start": 21386, + "end": 21387, + "value": "(" + }, + { + "type": "brace", + "start": 21387, + "end": 21388, + "value": "[" + }, + { + "type": "number", + "start": 21388, + "end": 21406, + "value": "0.5384372634075449" + }, + { + "type": "comma", + "start": 21406, + "end": 21407, + "value": "," + }, + { + "type": "whitespace", + "start": 21407, + "end": 21408, + "value": " " + }, + { + "type": "number", + "start": 21408, + "end": 21426, + "value": "0.2377565050887107" + }, + { + "type": "brace", + "start": 21426, + "end": 21427, + "value": "]" + }, + { + "type": "comma", + "start": 21427, + "end": 21428, + "value": "," + }, + { + "type": "whitespace", + "start": 21428, + "end": 21429, + "value": " " + }, + { + "type": "operator", + "start": 21429, + "end": 21430, + "value": "%" + }, + { + "type": "brace", + "start": 21430, + "end": 21431, + "value": ")" + }, + { + "type": "whitespace", + "start": 21431, + "end": 21434, + "value": "\n " + }, + { + "type": "operator", + "start": 21434, + "end": 21436, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21436, + "end": 21437, + "value": " " + }, + { + "type": "word", + "start": 21437, + "end": 21441, + "value": "line" + }, + { + "type": "brace", + "start": 21441, + "end": 21442, + "value": "(" + }, + { + "type": "brace", + "start": 21442, + "end": 21443, + "value": "[" + }, + { + "type": "whitespace", + "start": 21443, + "end": 21451, + "value": "\n " + }, + { + "type": "number", + "start": 21451, + "end": 21470, + "value": "0.39043436929278874" + }, + { + "type": "comma", + "start": 21470, + "end": 21471, + "value": "," + }, + { + "type": "whitespace", + "start": 21471, + "end": 21479, + "value": "\n " + }, + { + "type": "number", + "start": 21479, + "end": 21498, + "value": "0.14273182483160451" + }, + { + "type": "whitespace", + "start": 21498, + "end": 21504, + "value": "\n " + }, + { + "type": "brace", + "start": 21504, + "end": 21505, + "value": "]" + }, + { + "type": "comma", + "start": 21505, + "end": 21506, + "value": "," + }, + { + "type": "whitespace", + "start": 21506, + "end": 21507, + "value": " " + }, + { + "type": "operator", + "start": 21507, + "end": 21508, + "value": "%" + }, + { + "type": "brace", + "start": 21508, + "end": 21509, + "value": ")" + }, + { + "type": "whitespace", + "start": 21509, + "end": 21512, + "value": "\n " + }, + { + "type": "operator", + "start": 21512, + "end": 21514, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21514, + "end": 21515, + "value": " " + }, + { + "type": "word", + "start": 21515, + "end": 21519, + "value": "line" + }, + { + "type": "brace", + "start": 21519, + "end": 21520, + "value": "(" + }, + { + "type": "brace", + "start": 21520, + "end": 21521, + "value": "[" + }, + { + "type": "whitespace", + "start": 21521, + "end": 21529, + "value": "\n " + }, + { + "type": "number", + "start": 21529, + "end": 21548, + "value": "0.09782890412897283" + }, + { + "type": "comma", + "start": 21548, + "end": 21549, + "value": "," + }, + { + "type": "whitespace", + "start": 21549, + "end": 21557, + "value": "\n " + }, + { + "type": "number", + "start": 21557, + "end": 21575, + "value": "0.9907667536909659" + }, + { + "type": "whitespace", + "start": 21575, + "end": 21581, + "value": "\n " + }, + { + "type": "brace", + "start": 21581, + "end": 21582, + "value": "]" + }, + { + "type": "comma", + "start": 21582, + "end": 21583, + "value": "," + }, + { + "type": "whitespace", + "start": 21583, + "end": 21584, + "value": " " + }, + { + "type": "operator", + "start": 21584, + "end": 21585, + "value": "%" + }, + { + "type": "brace", + "start": 21585, + "end": 21586, + "value": ")" + }, + { + "type": "whitespace", + "start": 21586, + "end": 21589, + "value": "\n " + }, + { + "type": "operator", + "start": 21589, + "end": 21591, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21591, + "end": 21592, + "value": " " + }, + { + "type": "word", + "start": 21592, + "end": 21596, + "value": "line" + }, + { + "type": "brace", + "start": 21596, + "end": 21597, + "value": "(" + }, + { + "type": "brace", + "start": 21597, + "end": 21598, + "value": "[" + }, + { + "type": "whitespace", + "start": 21598, + "end": 21606, + "value": "\n " + }, + { + "type": "number", + "start": 21606, + "end": 21624, + "value": "0.5286610085921146" + }, + { + "type": "comma", + "start": 21624, + "end": 21625, + "value": "," + }, + { + "type": "whitespace", + "start": 21625, + "end": 21633, + "value": "\n " + }, + { + "type": "operator", + "start": 21633, + "end": 21634, + "value": "-" + }, + { + "type": "number", + "start": 21634, + "end": 21652, + "value": "0.7924508308419256" + }, + { + "type": "whitespace", + "start": 21652, + "end": 21658, + "value": "\n " + }, + { + "type": "brace", + "start": 21658, + "end": 21659, + "value": "]" + }, + { + "type": "comma", + "start": 21659, + "end": 21660, + "value": "," + }, + { + "type": "whitespace", + "start": 21660, + "end": 21661, + "value": " " + }, + { + "type": "operator", + "start": 21661, + "end": 21662, + "value": "%" + }, + { + "type": "brace", + "start": 21662, + "end": 21663, + "value": ")" + }, + { + "type": "whitespace", + "start": 21663, + "end": 21666, + "value": "\n " + }, + { + "type": "operator", + "start": 21666, + "end": 21668, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21668, + "end": 21669, + "value": " " + }, + { + "type": "word", + "start": 21669, + "end": 21673, + "value": "line" + }, + { + "type": "brace", + "start": 21673, + "end": 21674, + "value": "(" + }, + { + "type": "brace", + "start": 21674, + "end": 21675, + "value": "[" + }, + { + "type": "whitespace", + "start": 21675, + "end": 21683, + "value": "\n " + }, + { + "type": "number", + "start": 21683, + "end": 21701, + "value": "0.3789978184503342" + }, + { + "type": "comma", + "start": 21701, + "end": 21702, + "value": "," + }, + { + "type": "whitespace", + "start": 21702, + "end": 21710, + "value": "\n " + }, + { + "type": "number", + "start": 21710, + "end": 21729, + "value": "0.12396120576838676" + }, + { + "type": "whitespace", + "start": 21729, + "end": 21735, + "value": "\n " + }, + { + "type": "brace", + "start": 21735, + "end": 21736, + "value": "]" + }, + { + "type": "comma", + "start": 21736, + "end": 21737, + "value": "," + }, + { + "type": "whitespace", + "start": 21737, + "end": 21738, + "value": " " + }, + { + "type": "operator", + "start": 21738, + "end": 21739, + "value": "%" + }, + { + "type": "brace", + "start": 21739, + "end": 21740, + "value": ")" + }, + { + "type": "whitespace", + "start": 21740, + "end": 21743, + "value": "\n " + }, + { + "type": "operator", + "start": 21743, + "end": 21745, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21745, + "end": 21746, + "value": " " + }, + { + "type": "word", + "start": 21746, + "end": 21750, + "value": "line" + }, + { + "type": "brace", + "start": 21750, + "end": 21751, + "value": "(" + }, + { + "type": "brace", + "start": 21751, + "end": 21752, + "value": "[" + }, + { + "type": "whitespace", + "start": 21752, + "end": 21760, + "value": "\n " + }, + { + "type": "operator", + "start": 21760, + "end": 21761, + "value": "-" + }, + { + "type": "number", + "start": 21761, + "end": 21779, + "value": "0.9484912744890612" + }, + { + "type": "comma", + "start": 21779, + "end": 21780, + "value": "," + }, + { + "type": "whitespace", + "start": 21780, + "end": 21788, + "value": "\n " + }, + { + "type": "number", + "start": 21788, + "end": 21806, + "value": "0.6729649846476855" + }, + { + "type": "whitespace", + "start": 21806, + "end": 21812, + "value": "\n " + }, + { + "type": "brace", + "start": 21812, + "end": 21813, + "value": "]" + }, + { + "type": "comma", + "start": 21813, + "end": 21814, + "value": "," + }, + { + "type": "whitespace", + "start": 21814, + "end": 21815, + "value": " " + }, + { + "type": "operator", + "start": 21815, + "end": 21816, + "value": "%" + }, + { + "type": "brace", + "start": 21816, + "end": 21817, + "value": ")" + }, + { + "type": "whitespace", + "start": 21817, + "end": 21820, + "value": "\n " + }, + { + "type": "operator", + "start": 21820, + "end": 21822, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21822, + "end": 21823, + "value": " " + }, + { + "type": "word", + "start": 21823, + "end": 21827, + "value": "line" + }, + { + "type": "brace", + "start": 21827, + "end": 21828, + "value": "(" + }, + { + "type": "brace", + "start": 21828, + "end": 21829, + "value": "[" + }, + { + "type": "whitespace", + "start": 21829, + "end": 21837, + "value": "\n " + }, + { + "type": "number", + "start": 21837, + "end": 21855, + "value": "0.7451758753425153" + }, + { + "type": "comma", + "start": 21855, + "end": 21856, + "value": "," + }, + { + "type": "whitespace", + "start": 21856, + "end": 21864, + "value": "\n " + }, + { + "type": "operator", + "start": 21864, + "end": 21865, + "value": "-" + }, + { + "type": "number", + "start": 21865, + "end": 21884, + "value": "0.21318737562458967" + }, + { + "type": "whitespace", + "start": 21884, + "end": 21890, + "value": "\n " + }, + { + "type": "brace", + "start": 21890, + "end": 21891, + "value": "]" + }, + { + "type": "comma", + "start": 21891, + "end": 21892, + "value": "," + }, + { + "type": "whitespace", + "start": 21892, + "end": 21893, + "value": " " + }, + { + "type": "operator", + "start": 21893, + "end": 21894, + "value": "%" + }, + { + "type": "brace", + "start": 21894, + "end": 21895, + "value": ")" + }, + { + "type": "whitespace", + "start": 21895, + "end": 21898, + "value": "\n " + }, + { + "type": "operator", + "start": 21898, + "end": 21900, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21900, + "end": 21901, + "value": " " + }, + { + "type": "word", + "start": 21901, + "end": 21905, + "value": "line" + }, + { + "type": "brace", + "start": 21905, + "end": 21906, + "value": "(" + }, + { + "type": "brace", + "start": 21906, + "end": 21907, + "value": "[" + }, + { + "type": "whitespace", + "start": 21907, + "end": 21915, + "value": "\n " + }, + { + "type": "number", + "start": 21915, + "end": 21933, + "value": "0.1873200727251887" + }, + { + "type": "comma", + "start": 21933, + "end": 21934, + "value": "," + }, + { + "type": "whitespace", + "start": 21934, + "end": 21942, + "value": "\n " + }, + { + "type": "operator", + "start": 21942, + "end": 21943, + "value": "-" + }, + { + "type": "number", + "start": 21943, + "end": 21962, + "value": "0.15961374297992448" + }, + { + "type": "whitespace", + "start": 21962, + "end": 21968, + "value": "\n " + }, + { + "type": "brace", + "start": 21968, + "end": 21969, + "value": "]" + }, + { + "type": "comma", + "start": 21969, + "end": 21970, + "value": "," + }, + { + "type": "whitespace", + "start": 21970, + "end": 21971, + "value": " " + }, + { + "type": "operator", + "start": 21971, + "end": 21972, + "value": "%" + }, + { + "type": "brace", + "start": 21972, + "end": 21973, + "value": ")" + }, + { + "type": "whitespace", + "start": 21973, + "end": 21976, + "value": "\n " + }, + { + "type": "operator", + "start": 21976, + "end": 21978, + "value": "|>" + }, + { + "type": "whitespace", + "start": 21978, + "end": 21979, + "value": " " + }, + { + "type": "word", + "start": 21979, + "end": 21983, + "value": "line" + }, + { + "type": "brace", + "start": 21983, + "end": 21984, + "value": "(" + }, + { + "type": "brace", + "start": 21984, + "end": 21985, + "value": "[" + }, + { + "type": "whitespace", + "start": 21985, + "end": 21993, + "value": "\n " + }, + { + "type": "operator", + "start": 21993, + "end": 21994, + "value": "-" + }, + { + "type": "number", + "start": 21994, + "end": 22013, + "value": "0.05729464924537564" + }, + { + "type": "comma", + "start": 22013, + "end": 22014, + "value": "," + }, + { + "type": "whitespace", + "start": 22014, + "end": 22022, + "value": "\n " + }, + { + "type": "operator", + "start": 22022, + "end": 22023, + "value": "-" + }, + { + "type": "number", + "start": 22023, + "end": 22041, + "value": "0.5436345558508746" + }, + { + "type": "whitespace", + "start": 22041, + "end": 22047, + "value": "\n " + }, + { + "type": "brace", + "start": 22047, + "end": 22048, + "value": "]" + }, + { + "type": "comma", + "start": 22048, + "end": 22049, + "value": "," + }, + { + "type": "whitespace", + "start": 22049, + "end": 22050, + "value": " " + }, + { + "type": "operator", + "start": 22050, + "end": 22051, + "value": "%" + }, + { + "type": "brace", + "start": 22051, + "end": 22052, + "value": ")" + }, + { + "type": "whitespace", + "start": 22052, + "end": 22055, + "value": "\n " + }, + { + "type": "operator", + "start": 22055, + "end": 22057, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22057, + "end": 22058, + "value": " " + }, + { + "type": "word", + "start": 22058, + "end": 22062, + "value": "line" + }, + { + "type": "brace", + "start": 22062, + "end": 22063, + "value": "(" + }, + { + "type": "brace", + "start": 22063, + "end": 22064, + "value": "[" + }, + { + "type": "whitespace", + "start": 22064, + "end": 22072, + "value": "\n " + }, + { + "type": "operator", + "start": 22072, + "end": 22073, + "value": "-" + }, + { + "type": "number", + "start": 22073, + "end": 22092, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 22092, + "end": 22093, + "value": "," + }, + { + "type": "whitespace", + "start": 22093, + "end": 22101, + "value": "\n " + }, + { + "type": "operator", + "start": 22101, + "end": 22102, + "value": "-" + }, + { + "type": "number", + "start": 22102, + "end": 22120, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 22120, + "end": 22126, + "value": "\n " + }, + { + "type": "brace", + "start": 22126, + "end": 22127, + "value": "]" + }, + { + "type": "comma", + "start": 22127, + "end": 22128, + "value": "," + }, + { + "type": "whitespace", + "start": 22128, + "end": 22129, + "value": " " + }, + { + "type": "operator", + "start": 22129, + "end": 22130, + "value": "%" + }, + { + "type": "brace", + "start": 22130, + "end": 22131, + "value": ")" + }, + { + "type": "whitespace", + "start": 22131, + "end": 22134, + "value": "\n " + }, + { + "type": "operator", + "start": 22134, + "end": 22136, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22136, + "end": 22137, + "value": " " + }, + { + "type": "word", + "start": 22137, + "end": 22141, + "value": "line" + }, + { + "type": "brace", + "start": 22141, + "end": 22142, + "value": "(" + }, + { + "type": "brace", + "start": 22142, + "end": 22143, + "value": "[" + }, + { + "type": "whitespace", + "start": 22143, + "end": 22151, + "value": "\n " + }, + { + "type": "operator", + "start": 22151, + "end": 22152, + "value": "-" + }, + { + "type": "number", + "start": 22152, + "end": 22171, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 22171, + "end": 22172, + "value": "," + }, + { + "type": "whitespace", + "start": 22172, + "end": 22180, + "value": "\n " + }, + { + "type": "operator", + "start": 22180, + "end": 22181, + "value": "-" + }, + { + "type": "number", + "start": 22181, + "end": 22199, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 22199, + "end": 22205, + "value": "\n " + }, + { + "type": "brace", + "start": 22205, + "end": 22206, + "value": "]" + }, + { + "type": "comma", + "start": 22206, + "end": 22207, + "value": "," + }, + { + "type": "whitespace", + "start": 22207, + "end": 22208, + "value": " " + }, + { + "type": "operator", + "start": 22208, + "end": 22209, + "value": "%" + }, + { + "type": "brace", + "start": 22209, + "end": 22210, + "value": ")" + }, + { + "type": "whitespace", + "start": 22210, + "end": 22213, + "value": "\n " + }, + { + "type": "operator", + "start": 22213, + "end": 22215, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22215, + "end": 22216, + "value": " " + }, + { + "type": "word", + "start": 22216, + "end": 22220, + "value": "line" + }, + { + "type": "brace", + "start": 22220, + "end": 22221, + "value": "(" + }, + { + "type": "brace", + "start": 22221, + "end": 22222, + "value": "[" + }, + { + "type": "number", + "start": 22222, + "end": 22240, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 22240, + "end": 22241, + "value": "," + }, + { + "type": "whitespace", + "start": 22241, + "end": 22242, + "value": " " + }, + { + "type": "number", + "start": 22242, + "end": 22260, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 22260, + "end": 22261, + "value": "]" + }, + { + "type": "comma", + "start": 22261, + "end": 22262, + "value": "," + }, + { + "type": "whitespace", + "start": 22262, + "end": 22263, + "value": " " + }, + { + "type": "operator", + "start": 22263, + "end": 22264, + "value": "%" + }, + { + "type": "brace", + "start": 22264, + "end": 22265, + "value": ")" + }, + { + "type": "whitespace", + "start": 22265, + "end": 22268, + "value": "\n " + }, + { + "type": "operator", + "start": 22268, + "end": 22270, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22270, + "end": 22271, + "value": " " + }, + { + "type": "word", + "start": 22271, + "end": 22275, + "value": "line" + }, + { + "type": "brace", + "start": 22275, + "end": 22276, + "value": "(" + }, + { + "type": "brace", + "start": 22276, + "end": 22277, + "value": "[" + }, + { + "type": "whitespace", + "start": 22277, + "end": 22285, + "value": "\n " + }, + { + "type": "operator", + "start": 22285, + "end": 22286, + "value": "-" + }, + { + "type": "number", + "start": 22286, + "end": 22304, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 22304, + "end": 22305, + "value": "," + }, + { + "type": "whitespace", + "start": 22305, + "end": 22313, + "value": "\n " + }, + { + "type": "number", + "start": 22313, + "end": 22332, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 22332, + "end": 22338, + "value": "\n " + }, + { + "type": "brace", + "start": 22338, + "end": 22339, + "value": "]" + }, + { + "type": "comma", + "start": 22339, + "end": 22340, + "value": "," + }, + { + "type": "whitespace", + "start": 22340, + "end": 22341, + "value": " " + }, + { + "type": "operator", + "start": 22341, + "end": 22342, + "value": "%" + }, + { + "type": "brace", + "start": 22342, + "end": 22343, + "value": ")" + }, + { + "type": "whitespace", + "start": 22343, + "end": 22346, + "value": "\n " + }, + { + "type": "operator", + "start": 22346, + "end": 22348, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22348, + "end": 22349, + "value": " " + }, + { + "type": "word", + "start": 22349, + "end": 22353, + "value": "line" + }, + { + "type": "brace", + "start": 22353, + "end": 22354, + "value": "(" + }, + { + "type": "brace", + "start": 22354, + "end": 22355, + "value": "[" + }, + { + "type": "whitespace", + "start": 22355, + "end": 22363, + "value": "\n " + }, + { + "type": "operator", + "start": 22363, + "end": 22364, + "value": "-" + }, + { + "type": "number", + "start": 22364, + "end": 22382, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 22382, + "end": 22383, + "value": "," + }, + { + "type": "whitespace", + "start": 22383, + "end": 22391, + "value": "\n " + }, + { + "type": "number", + "start": 22391, + "end": 22409, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 22409, + "end": 22415, + "value": "\n " + }, + { + "type": "brace", + "start": 22415, + "end": 22416, + "value": "]" + }, + { + "type": "comma", + "start": 22416, + "end": 22417, + "value": "," + }, + { + "type": "whitespace", + "start": 22417, + "end": 22418, + "value": " " + }, + { + "type": "operator", + "start": 22418, + "end": 22419, + "value": "%" + }, + { + "type": "brace", + "start": 22419, + "end": 22420, + "value": ")" + }, + { + "type": "whitespace", + "start": 22420, + "end": 22423, + "value": "\n " + }, + { + "type": "operator", + "start": 22423, + "end": 22425, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22425, + "end": 22426, + "value": " " + }, + { + "type": "word", + "start": 22426, + "end": 22430, + "value": "line" + }, + { + "type": "brace", + "start": 22430, + "end": 22431, + "value": "(" + }, + { + "type": "brace", + "start": 22431, + "end": 22432, + "value": "[" + }, + { + "type": "whitespace", + "start": 22432, + "end": 22440, + "value": "\n " + }, + { + "type": "operator", + "start": 22440, + "end": 22441, + "value": "-" + }, + { + "type": "number", + "start": 22441, + "end": 22459, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 22459, + "end": 22460, + "value": "," + }, + { + "type": "whitespace", + "start": 22460, + "end": 22468, + "value": "\n " + }, + { + "type": "number", + "start": 22468, + "end": 22486, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 22486, + "end": 22492, + "value": "\n " + }, + { + "type": "brace", + "start": 22492, + "end": 22493, + "value": "]" + }, + { + "type": "comma", + "start": 22493, + "end": 22494, + "value": "," + }, + { + "type": "whitespace", + "start": 22494, + "end": 22495, + "value": " " + }, + { + "type": "operator", + "start": 22495, + "end": 22496, + "value": "%" + }, + { + "type": "brace", + "start": 22496, + "end": 22497, + "value": ")" + }, + { + "type": "whitespace", + "start": 22497, + "end": 22500, + "value": "\n " + }, + { + "type": "operator", + "start": 22500, + "end": 22502, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22502, + "end": 22503, + "value": " " + }, + { + "type": "word", + "start": 22503, + "end": 22507, + "value": "line" + }, + { + "type": "brace", + "start": 22507, + "end": 22508, + "value": "(" + }, + { + "type": "brace", + "start": 22508, + "end": 22509, + "value": "[" + }, + { + "type": "whitespace", + "start": 22509, + "end": 22517, + "value": "\n " + }, + { + "type": "operator", + "start": 22517, + "end": 22518, + "value": "-" + }, + { + "type": "number", + "start": 22518, + "end": 22536, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 22536, + "end": 22537, + "value": "," + }, + { + "type": "whitespace", + "start": 22537, + "end": 22545, + "value": "\n " + }, + { + "type": "operator", + "start": 22545, + "end": 22546, + "value": "-" + }, + { + "type": "number", + "start": 22546, + "end": 22565, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 22565, + "end": 22571, + "value": "\n " + }, + { + "type": "brace", + "start": 22571, + "end": 22572, + "value": "]" + }, + { + "type": "comma", + "start": 22572, + "end": 22573, + "value": "," + }, + { + "type": "whitespace", + "start": 22573, + "end": 22574, + "value": " " + }, + { + "type": "operator", + "start": 22574, + "end": 22575, + "value": "%" + }, + { + "type": "brace", + "start": 22575, + "end": 22576, + "value": ")" + }, + { + "type": "whitespace", + "start": 22576, + "end": 22579, + "value": "\n " + }, + { + "type": "operator", + "start": 22579, + "end": 22581, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22581, + "end": 22582, + "value": " " + }, + { + "type": "word", + "start": 22582, + "end": 22586, + "value": "line" + }, + { + "type": "brace", + "start": 22586, + "end": 22587, + "value": "(" + }, + { + "type": "brace", + "start": 22587, + "end": 22588, + "value": "[" + }, + { + "type": "whitespace", + "start": 22588, + "end": 22596, + "value": "\n " + }, + { + "type": "number", + "start": 22596, + "end": 22615, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 22615, + "end": 22616, + "value": "," + }, + { + "type": "whitespace", + "start": 22616, + "end": 22624, + "value": "\n " + }, + { + "type": "number", + "start": 22624, + "end": 22643, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 22643, + "end": 22649, + "value": "\n " + }, + { + "type": "brace", + "start": 22649, + "end": 22650, + "value": "]" + }, + { + "type": "comma", + "start": 22650, + "end": 22651, + "value": "," + }, + { + "type": "whitespace", + "start": 22651, + "end": 22652, + "value": " " + }, + { + "type": "operator", + "start": 22652, + "end": 22653, + "value": "%" + }, + { + "type": "brace", + "start": 22653, + "end": 22654, + "value": ")" + }, + { + "type": "whitespace", + "start": 22654, + "end": 22657, + "value": "\n " + }, + { + "type": "operator", + "start": 22657, + "end": 22659, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22659, + "end": 22660, + "value": " " + }, + { + "type": "word", + "start": 22660, + "end": 22664, + "value": "line" + }, + { + "type": "brace", + "start": 22664, + "end": 22665, + "value": "(" + }, + { + "type": "brace", + "start": 22665, + "end": 22666, + "value": "[" + }, + { + "type": "whitespace", + "start": 22666, + "end": 22674, + "value": "\n " + }, + { + "type": "number", + "start": 22674, + "end": 22693, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 22693, + "end": 22694, + "value": "," + }, + { + "type": "whitespace", + "start": 22694, + "end": 22702, + "value": "\n " + }, + { + "type": "number", + "start": 22702, + "end": 22721, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 22721, + "end": 22727, + "value": "\n " + }, + { + "type": "brace", + "start": 22727, + "end": 22728, + "value": "]" + }, + { + "type": "comma", + "start": 22728, + "end": 22729, + "value": "," + }, + { + "type": "whitespace", + "start": 22729, + "end": 22730, + "value": " " + }, + { + "type": "operator", + "start": 22730, + "end": 22731, + "value": "%" + }, + { + "type": "brace", + "start": 22731, + "end": 22732, + "value": ")" + }, + { + "type": "whitespace", + "start": 22732, + "end": 22735, + "value": "\n " + }, + { + "type": "operator", + "start": 22735, + "end": 22737, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22737, + "end": 22738, + "value": " " + }, + { + "type": "word", + "start": 22738, + "end": 22742, + "value": "line" + }, + { + "type": "brace", + "start": 22742, + "end": 22743, + "value": "(" + }, + { + "type": "brace", + "start": 22743, + "end": 22744, + "value": "[" + }, + { + "type": "whitespace", + "start": 22744, + "end": 22752, + "value": "\n " + }, + { + "type": "operator", + "start": 22752, + "end": 22753, + "value": "-" + }, + { + "type": "number", + "start": 22753, + "end": 22772, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 22772, + "end": 22773, + "value": "," + }, + { + "type": "whitespace", + "start": 22773, + "end": 22781, + "value": "\n " + }, + { + "type": "number", + "start": 22781, + "end": 22799, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 22799, + "end": 22805, + "value": "\n " + }, + { + "type": "brace", + "start": 22805, + "end": 22806, + "value": "]" + }, + { + "type": "comma", + "start": 22806, + "end": 22807, + "value": "," + }, + { + "type": "whitespace", + "start": 22807, + "end": 22808, + "value": " " + }, + { + "type": "operator", + "start": 22808, + "end": 22809, + "value": "%" + }, + { + "type": "brace", + "start": 22809, + "end": 22810, + "value": ")" + }, + { + "type": "whitespace", + "start": 22810, + "end": 22813, + "value": "\n " + }, + { + "type": "operator", + "start": 22813, + "end": 22815, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22815, + "end": 22816, + "value": " " + }, + { + "type": "word", + "start": 22816, + "end": 22820, + "value": "line" + }, + { + "type": "brace", + "start": 22820, + "end": 22821, + "value": "(" + }, + { + "type": "brace", + "start": 22821, + "end": 22822, + "value": "[" + }, + { + "type": "whitespace", + "start": 22822, + "end": 22830, + "value": "\n " + }, + { + "type": "operator", + "start": 22830, + "end": 22831, + "value": "-" + }, + { + "type": "number", + "start": 22831, + "end": 22850, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 22850, + "end": 22851, + "value": "," + }, + { + "type": "whitespace", + "start": 22851, + "end": 22859, + "value": "\n " + }, + { + "type": "operator", + "start": 22859, + "end": 22860, + "value": "-" + }, + { + "type": "number", + "start": 22860, + "end": 22879, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 22879, + "end": 22885, + "value": "\n " + }, + { + "type": "brace", + "start": 22885, + "end": 22886, + "value": "]" + }, + { + "type": "comma", + "start": 22886, + "end": 22887, + "value": "," + }, + { + "type": "whitespace", + "start": 22887, + "end": 22888, + "value": " " + }, + { + "type": "operator", + "start": 22888, + "end": 22889, + "value": "%" + }, + { + "type": "brace", + "start": 22889, + "end": 22890, + "value": ")" + }, + { + "type": "whitespace", + "start": 22890, + "end": 22893, + "value": "\n " + }, + { + "type": "operator", + "start": 22893, + "end": 22895, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22895, + "end": 22896, + "value": " " + }, + { + "type": "word", + "start": 22896, + "end": 22900, + "value": "line" + }, + { + "type": "brace", + "start": 22900, + "end": 22901, + "value": "(" + }, + { + "type": "brace", + "start": 22901, + "end": 22902, + "value": "[" + }, + { + "type": "whitespace", + "start": 22902, + "end": 22910, + "value": "\n " + }, + { + "type": "number", + "start": 22910, + "end": 22928, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 22928, + "end": 22929, + "value": "," + }, + { + "type": "whitespace", + "start": 22929, + "end": 22937, + "value": "\n " + }, + { + "type": "operator", + "start": 22937, + "end": 22938, + "value": "-" + }, + { + "type": "number", + "start": 22938, + "end": 22957, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 22957, + "end": 22963, + "value": "\n " + }, + { + "type": "brace", + "start": 22963, + "end": 22964, + "value": "]" + }, + { + "type": "comma", + "start": 22964, + "end": 22965, + "value": "," + }, + { + "type": "whitespace", + "start": 22965, + "end": 22966, + "value": " " + }, + { + "type": "operator", + "start": 22966, + "end": 22967, + "value": "%" + }, + { + "type": "brace", + "start": 22967, + "end": 22968, + "value": ")" + }, + { + "type": "whitespace", + "start": 22968, + "end": 22971, + "value": "\n " + }, + { + "type": "operator", + "start": 22971, + "end": 22973, + "value": "|>" + }, + { + "type": "whitespace", + "start": 22973, + "end": 22974, + "value": " " + }, + { + "type": "word", + "start": 22974, + "end": 22978, + "value": "line" + }, + { + "type": "brace", + "start": 22978, + "end": 22979, + "value": "(" + }, + { + "type": "brace", + "start": 22979, + "end": 22980, + "value": "[" + }, + { + "type": "whitespace", + "start": 22980, + "end": 22988, + "value": "\n " + }, + { + "type": "number", + "start": 22988, + "end": 23009, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 23009, + "end": 23010, + "value": "," + }, + { + "type": "whitespace", + "start": 23010, + "end": 23018, + "value": "\n " + }, + { + "type": "operator", + "start": 23018, + "end": 23019, + "value": "-" + }, + { + "type": "number", + "start": 23019, + "end": 23037, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 23037, + "end": 23043, + "value": "\n " + }, + { + "type": "brace", + "start": 23043, + "end": 23044, + "value": "]" + }, + { + "type": "comma", + "start": 23044, + "end": 23045, + "value": "," + }, + { + "type": "whitespace", + "start": 23045, + "end": 23046, + "value": " " + }, + { + "type": "operator", + "start": 23046, + "end": 23047, + "value": "%" + }, + { + "type": "brace", + "start": 23047, + "end": 23048, + "value": ")" + }, + { + "type": "whitespace", + "start": 23048, + "end": 23051, + "value": "\n " + }, + { + "type": "operator", + "start": 23051, + "end": 23053, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23053, + "end": 23054, + "value": " " + }, + { + "type": "word", + "start": 23054, + "end": 23058, + "value": "line" + }, + { + "type": "brace", + "start": 23058, + "end": 23059, + "value": "(" + }, + { + "type": "brace", + "start": 23059, + "end": 23060, + "value": "[" + }, + { + "type": "whitespace", + "start": 23060, + "end": 23068, + "value": "\n " + }, + { + "type": "number", + "start": 23068, + "end": 23086, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 23086, + "end": 23087, + "value": "," + }, + { + "type": "whitespace", + "start": 23087, + "end": 23095, + "value": "\n " + }, + { + "type": "operator", + "start": 23095, + "end": 23096, + "value": "-" + }, + { + "type": "number", + "start": 23096, + "end": 23114, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 23114, + "end": 23120, + "value": "\n " + }, + { + "type": "brace", + "start": 23120, + "end": 23121, + "value": "]" + }, + { + "type": "comma", + "start": 23121, + "end": 23122, + "value": "," + }, + { + "type": "whitespace", + "start": 23122, + "end": 23123, + "value": " " + }, + { + "type": "operator", + "start": 23123, + "end": 23124, + "value": "%" + }, + { + "type": "brace", + "start": 23124, + "end": 23125, + "value": ")" + }, + { + "type": "whitespace", + "start": 23125, + "end": 23128, + "value": "\n " + }, + { + "type": "operator", + "start": 23128, + "end": 23130, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23130, + "end": 23131, + "value": " " + }, + { + "type": "word", + "start": 23131, + "end": 23135, + "value": "line" + }, + { + "type": "brace", + "start": 23135, + "end": 23136, + "value": "(" + }, + { + "type": "brace", + "start": 23136, + "end": 23137, + "value": "[" + }, + { + "type": "whitespace", + "start": 23137, + "end": 23145, + "value": "\n " + }, + { + "type": "operator", + "start": 23145, + "end": 23146, + "value": "-" + }, + { + "type": "number", + "start": 23146, + "end": 23164, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 23164, + "end": 23165, + "value": "," + }, + { + "type": "whitespace", + "start": 23165, + "end": 23173, + "value": "\n " + }, + { + "type": "number", + "start": 23173, + "end": 23191, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 23191, + "end": 23197, + "value": "\n " + }, + { + "type": "brace", + "start": 23197, + "end": 23198, + "value": "]" + }, + { + "type": "comma", + "start": 23198, + "end": 23199, + "value": "," + }, + { + "type": "whitespace", + "start": 23199, + "end": 23200, + "value": " " + }, + { + "type": "operator", + "start": 23200, + "end": 23201, + "value": "%" + }, + { + "type": "brace", + "start": 23201, + "end": 23202, + "value": ")" + }, + { + "type": "whitespace", + "start": 23202, + "end": 23205, + "value": "\n " + }, + { + "type": "operator", + "start": 23205, + "end": 23207, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23207, + "end": 23208, + "value": " " + }, + { + "type": "word", + "start": 23208, + "end": 23212, + "value": "line" + }, + { + "type": "brace", + "start": 23212, + "end": 23213, + "value": "(" + }, + { + "type": "brace", + "start": 23213, + "end": 23214, + "value": "[" + }, + { + "type": "number", + "start": 23214, + "end": 23232, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 23232, + "end": 23233, + "value": "," + }, + { + "type": "whitespace", + "start": 23233, + "end": 23234, + "value": " " + }, + { + "type": "number", + "start": 23234, + "end": 23252, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 23252, + "end": 23253, + "value": "]" + }, + { + "type": "comma", + "start": 23253, + "end": 23254, + "value": "," + }, + { + "type": "whitespace", + "start": 23254, + "end": 23255, + "value": " " + }, + { + "type": "operator", + "start": 23255, + "end": 23256, + "value": "%" + }, + { + "type": "brace", + "start": 23256, + "end": 23257, + "value": ")" + }, + { + "type": "whitespace", + "start": 23257, + "end": 23260, + "value": "\n " + }, + { + "type": "operator", + "start": 23260, + "end": 23262, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23262, + "end": 23263, + "value": " " + }, + { + "type": "word", + "start": 23263, + "end": 23267, + "value": "line" + }, + { + "type": "brace", + "start": 23267, + "end": 23268, + "value": "(" + }, + { + "type": "brace", + "start": 23268, + "end": 23269, + "value": "[" + }, + { + "type": "whitespace", + "start": 23269, + "end": 23277, + "value": "\n " + }, + { + "type": "operator", + "start": 23277, + "end": 23278, + "value": "-" + }, + { + "type": "number", + "start": 23278, + "end": 23297, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 23297, + "end": 23298, + "value": "," + }, + { + "type": "whitespace", + "start": 23298, + "end": 23306, + "value": "\n " + }, + { + "type": "number", + "start": 23306, + "end": 23326, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 23326, + "end": 23332, + "value": "\n " + }, + { + "type": "brace", + "start": 23332, + "end": 23333, + "value": "]" + }, + { + "type": "comma", + "start": 23333, + "end": 23334, + "value": "," + }, + { + "type": "whitespace", + "start": 23334, + "end": 23335, + "value": " " + }, + { + "type": "operator", + "start": 23335, + "end": 23336, + "value": "%" + }, + { + "type": "brace", + "start": 23336, + "end": 23337, + "value": ")" + }, + { + "type": "whitespace", + "start": 23337, + "end": 23340, + "value": "\n " + }, + { + "type": "operator", + "start": 23340, + "end": 23342, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23342, + "end": 23343, + "value": " " + }, + { + "type": "word", + "start": 23343, + "end": 23347, + "value": "line" + }, + { + "type": "brace", + "start": 23347, + "end": 23348, + "value": "(" + }, + { + "type": "brace", + "start": 23348, + "end": 23349, + "value": "[" + }, + { + "type": "whitespace", + "start": 23349, + "end": 23357, + "value": "\n " + }, + { + "type": "operator", + "start": 23357, + "end": 23358, + "value": "-" + }, + { + "type": "number", + "start": 23358, + "end": 23376, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 23376, + "end": 23377, + "value": "," + }, + { + "type": "whitespace", + "start": 23377, + "end": 23385, + "value": "\n " + }, + { + "type": "operator", + "start": 23385, + "end": 23386, + "value": "-" + }, + { + "type": "number", + "start": 23386, + "end": 23405, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 23405, + "end": 23411, + "value": "\n " + }, + { + "type": "brace", + "start": 23411, + "end": 23412, + "value": "]" + }, + { + "type": "comma", + "start": 23412, + "end": 23413, + "value": "," + }, + { + "type": "whitespace", + "start": 23413, + "end": 23414, + "value": " " + }, + { + "type": "operator", + "start": 23414, + "end": 23415, + "value": "%" + }, + { + "type": "brace", + "start": 23415, + "end": 23416, + "value": ")" + }, + { + "type": "whitespace", + "start": 23416, + "end": 23419, + "value": "\n " + }, + { + "type": "operator", + "start": 23419, + "end": 23421, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23421, + "end": 23422, + "value": " " + }, + { + "type": "word", + "start": 23422, + "end": 23426, + "value": "line" + }, + { + "type": "brace", + "start": 23426, + "end": 23427, + "value": "(" + }, + { + "type": "brace", + "start": 23427, + "end": 23428, + "value": "[" + }, + { + "type": "whitespace", + "start": 23428, + "end": 23436, + "value": "\n " + }, + { + "type": "operator", + "start": 23436, + "end": 23437, + "value": "-" + }, + { + "type": "number", + "start": 23437, + "end": 23455, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 23455, + "end": 23456, + "value": "," + }, + { + "type": "whitespace", + "start": 23456, + "end": 23464, + "value": "\n " + }, + { + "type": "operator", + "start": 23464, + "end": 23465, + "value": "-" + }, + { + "type": "number", + "start": 23465, + "end": 23484, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 23484, + "end": 23490, + "value": "\n " + }, + { + "type": "brace", + "start": 23490, + "end": 23491, + "value": "]" + }, + { + "type": "comma", + "start": 23491, + "end": 23492, + "value": "," + }, + { + "type": "whitespace", + "start": 23492, + "end": 23493, + "value": " " + }, + { + "type": "operator", + "start": 23493, + "end": 23494, + "value": "%" + }, + { + "type": "brace", + "start": 23494, + "end": 23495, + "value": ")" + }, + { + "type": "whitespace", + "start": 23495, + "end": 23498, + "value": "\n " + }, + { + "type": "operator", + "start": 23498, + "end": 23500, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23500, + "end": 23501, + "value": " " + }, + { + "type": "word", + "start": 23501, + "end": 23505, + "value": "line" + }, + { + "type": "brace", + "start": 23505, + "end": 23506, + "value": "(" + }, + { + "type": "brace", + "start": 23506, + "end": 23507, + "value": "[" + }, + { + "type": "number", + "start": 23507, + "end": 23524, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 23524, + "end": 23525, + "value": "," + }, + { + "type": "whitespace", + "start": 23525, + "end": 23526, + "value": " " + }, + { + "type": "number", + "start": 23526, + "end": 23544, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 23544, + "end": 23545, + "value": "]" + }, + { + "type": "comma", + "start": 23545, + "end": 23546, + "value": "," + }, + { + "type": "whitespace", + "start": 23546, + "end": 23547, + "value": " " + }, + { + "type": "operator", + "start": 23547, + "end": 23548, + "value": "%" + }, + { + "type": "brace", + "start": 23548, + "end": 23549, + "value": ")" + }, + { + "type": "whitespace", + "start": 23549, + "end": 23552, + "value": "\n " + }, + { + "type": "operator", + "start": 23552, + "end": 23554, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23554, + "end": 23555, + "value": " " + }, + { + "type": "word", + "start": 23555, + "end": 23559, + "value": "line" + }, + { + "type": "brace", + "start": 23559, + "end": 23560, + "value": "(" + }, + { + "type": "brace", + "start": 23560, + "end": 23561, + "value": "[" + }, + { + "type": "whitespace", + "start": 23561, + "end": 23569, + "value": "\n " + }, + { + "type": "number", + "start": 23569, + "end": 23588, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 23588, + "end": 23589, + "value": "," + }, + { + "type": "whitespace", + "start": 23589, + "end": 23597, + "value": "\n " + }, + { + "type": "operator", + "start": 23597, + "end": 23598, + "value": "-" + }, + { + "type": "number", + "start": 23598, + "end": 23617, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 23617, + "end": 23623, + "value": "\n " + }, + { + "type": "brace", + "start": 23623, + "end": 23624, + "value": "]" + }, + { + "type": "comma", + "start": 23624, + "end": 23625, + "value": "," + }, + { + "type": "whitespace", + "start": 23625, + "end": 23626, + "value": " " + }, + { + "type": "operator", + "start": 23626, + "end": 23627, + "value": "%" + }, + { + "type": "brace", + "start": 23627, + "end": 23628, + "value": ")" + }, + { + "type": "whitespace", + "start": 23628, + "end": 23631, + "value": "\n " + }, + { + "type": "operator", + "start": 23631, + "end": 23633, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23633, + "end": 23634, + "value": " " + }, + { + "type": "word", + "start": 23634, + "end": 23638, + "value": "line" + }, + { + "type": "brace", + "start": 23638, + "end": 23639, + "value": "(" + }, + { + "type": "brace", + "start": 23639, + "end": 23640, + "value": "[" + }, + { + "type": "number", + "start": 23640, + "end": 23658, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 23658, + "end": 23659, + "value": "," + }, + { + "type": "whitespace", + "start": 23659, + "end": 23660, + "value": " " + }, + { + "type": "number", + "start": 23660, + "end": 23677, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 23677, + "end": 23678, + "value": "]" + }, + { + "type": "comma", + "start": 23678, + "end": 23679, + "value": "," + }, + { + "type": "whitespace", + "start": 23679, + "end": 23680, + "value": " " + }, + { + "type": "operator", + "start": 23680, + "end": 23681, + "value": "%" + }, + { + "type": "brace", + "start": 23681, + "end": 23682, + "value": ")" + }, + { + "type": "whitespace", + "start": 23682, + "end": 23685, + "value": "\n " + }, + { + "type": "operator", + "start": 23685, + "end": 23687, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23687, + "end": 23688, + "value": " " + }, + { + "type": "word", + "start": 23688, + "end": 23692, + "value": "line" + }, + { + "type": "brace", + "start": 23692, + "end": 23693, + "value": "(" + }, + { + "type": "brace", + "start": 23693, + "end": 23694, + "value": "[" + }, + { + "type": "whitespace", + "start": 23694, + "end": 23702, + "value": "\n " + }, + { + "type": "number", + "start": 23702, + "end": 23721, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 23721, + "end": 23722, + "value": "," + }, + { + "type": "whitespace", + "start": 23722, + "end": 23730, + "value": "\n " + }, + { + "type": "operator", + "start": 23730, + "end": 23731, + "value": "-" + }, + { + "type": "number", + "start": 23731, + "end": 23749, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 23749, + "end": 23755, + "value": "\n " + }, + { + "type": "brace", + "start": 23755, + "end": 23756, + "value": "]" + }, + { + "type": "comma", + "start": 23756, + "end": 23757, + "value": "," + }, + { + "type": "whitespace", + "start": 23757, + "end": 23758, + "value": " " + }, + { + "type": "operator", + "start": 23758, + "end": 23759, + "value": "%" + }, + { + "type": "brace", + "start": 23759, + "end": 23760, + "value": ")" + }, + { + "type": "whitespace", + "start": 23760, + "end": 23763, + "value": "\n " + }, + { + "type": "operator", + "start": 23763, + "end": 23765, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23765, + "end": 23766, + "value": " " + }, + { + "type": "word", + "start": 23766, + "end": 23770, + "value": "line" + }, + { + "type": "brace", + "start": 23770, + "end": 23771, + "value": "(" + }, + { + "type": "brace", + "start": 23771, + "end": 23772, + "value": "[" + }, + { + "type": "number", + "start": 23772, + "end": 23790, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 23790, + "end": 23791, + "value": "," + }, + { + "type": "whitespace", + "start": 23791, + "end": 23792, + "value": " " + }, + { + "type": "number", + "start": 23792, + "end": 23810, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 23810, + "end": 23811, + "value": "]" + }, + { + "type": "comma", + "start": 23811, + "end": 23812, + "value": "," + }, + { + "type": "whitespace", + "start": 23812, + "end": 23813, + "value": " " + }, + { + "type": "operator", + "start": 23813, + "end": 23814, + "value": "%" + }, + { + "type": "brace", + "start": 23814, + "end": 23815, + "value": ")" + }, + { + "type": "whitespace", + "start": 23815, + "end": 23818, + "value": "\n " + }, + { + "type": "operator", + "start": 23818, + "end": 23820, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23820, + "end": 23821, + "value": " " + }, + { + "type": "word", + "start": 23821, + "end": 23825, + "value": "line" + }, + { + "type": "brace", + "start": 23825, + "end": 23826, + "value": "(" + }, + { + "type": "brace", + "start": 23826, + "end": 23827, + "value": "[" + }, + { + "type": "whitespace", + "start": 23827, + "end": 23835, + "value": "\n " + }, + { + "type": "number", + "start": 23835, + "end": 23853, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 23853, + "end": 23854, + "value": "," + }, + { + "type": "whitespace", + "start": 23854, + "end": 23862, + "value": "\n " + }, + { + "type": "number", + "start": 23862, + "end": 23881, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 23881, + "end": 23887, + "value": "\n " + }, + { + "type": "brace", + "start": 23887, + "end": 23888, + "value": "]" + }, + { + "type": "comma", + "start": 23888, + "end": 23889, + "value": "," + }, + { + "type": "whitespace", + "start": 23889, + "end": 23890, + "value": " " + }, + { + "type": "operator", + "start": 23890, + "end": 23891, + "value": "%" + }, + { + "type": "brace", + "start": 23891, + "end": 23892, + "value": ")" + }, + { + "type": "whitespace", + "start": 23892, + "end": 23895, + "value": "\n " + }, + { + "type": "operator", + "start": 23895, + "end": 23897, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23897, + "end": 23898, + "value": " " + }, + { + "type": "word", + "start": 23898, + "end": 23902, + "value": "line" + }, + { + "type": "brace", + "start": 23902, + "end": 23903, + "value": "(" + }, + { + "type": "brace", + "start": 23903, + "end": 23904, + "value": "[" + }, + { + "type": "number", + "start": 23904, + "end": 23922, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 23922, + "end": 23923, + "value": "," + }, + { + "type": "whitespace", + "start": 23923, + "end": 23924, + "value": " " + }, + { + "type": "number", + "start": 23924, + "end": 23942, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 23942, + "end": 23943, + "value": "]" + }, + { + "type": "comma", + "start": 23943, + "end": 23944, + "value": "," + }, + { + "type": "whitespace", + "start": 23944, + "end": 23945, + "value": " " + }, + { + "type": "operator", + "start": 23945, + "end": 23946, + "value": "%" + }, + { + "type": "brace", + "start": 23946, + "end": 23947, + "value": ")" + }, + { + "type": "whitespace", + "start": 23947, + "end": 23950, + "value": "\n " + }, + { + "type": "operator", + "start": 23950, + "end": 23952, + "value": "|>" + }, + { + "type": "whitespace", + "start": 23952, + "end": 23953, + "value": " " + }, + { + "type": "word", + "start": 23953, + "end": 23957, + "value": "line" + }, + { + "type": "brace", + "start": 23957, + "end": 23958, + "value": "(" + }, + { + "type": "brace", + "start": 23958, + "end": 23959, + "value": "[" + }, + { + "type": "whitespace", + "start": 23959, + "end": 23967, + "value": "\n " + }, + { + "type": "operator", + "start": 23967, + "end": 23968, + "value": "-" + }, + { + "type": "number", + "start": 23968, + "end": 23987, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 23987, + "end": 23988, + "value": "," + }, + { + "type": "whitespace", + "start": 23988, + "end": 23996, + "value": "\n " + }, + { + "type": "operator", + "start": 23996, + "end": 23997, + "value": "-" + }, + { + "type": "number", + "start": 23997, + "end": 24015, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 24015, + "end": 24021, + "value": "\n " + }, + { + "type": "brace", + "start": 24021, + "end": 24022, + "value": "]" + }, + { + "type": "comma", + "start": 24022, + "end": 24023, + "value": "," + }, + { + "type": "whitespace", + "start": 24023, + "end": 24024, + "value": " " + }, + { + "type": "operator", + "start": 24024, + "end": 24025, + "value": "%" + }, + { + "type": "brace", + "start": 24025, + "end": 24026, + "value": ")" + }, + { + "type": "whitespace", + "start": 24026, + "end": 24029, + "value": "\n " + }, + { + "type": "operator", + "start": 24029, + "end": 24031, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24031, + "end": 24032, + "value": " " + }, + { + "type": "word", + "start": 24032, + "end": 24036, + "value": "line" + }, + { + "type": "brace", + "start": 24036, + "end": 24037, + "value": "(" + }, + { + "type": "brace", + "start": 24037, + "end": 24038, + "value": "[" + }, + { + "type": "whitespace", + "start": 24038, + "end": 24046, + "value": "\n " + }, + { + "type": "number", + "start": 24046, + "end": 24064, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 24064, + "end": 24065, + "value": "," + }, + { + "type": "whitespace", + "start": 24065, + "end": 24073, + "value": "\n " + }, + { + "type": "operator", + "start": 24073, + "end": 24074, + "value": "-" + }, + { + "type": "number", + "start": 24074, + "end": 24092, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 24092, + "end": 24098, + "value": "\n " + }, + { + "type": "brace", + "start": 24098, + "end": 24099, + "value": "]" + }, + { + "type": "comma", + "start": 24099, + "end": 24100, + "value": "," + }, + { + "type": "whitespace", + "start": 24100, + "end": 24101, + "value": " " + }, + { + "type": "operator", + "start": 24101, + "end": 24102, + "value": "%" + }, + { + "type": "brace", + "start": 24102, + "end": 24103, + "value": ")" + }, + { + "type": "whitespace", + "start": 24103, + "end": 24106, + "value": "\n " + }, + { + "type": "operator", + "start": 24106, + "end": 24108, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24108, + "end": 24109, + "value": " " + }, + { + "type": "word", + "start": 24109, + "end": 24113, + "value": "line" + }, + { + "type": "brace", + "start": 24113, + "end": 24114, + "value": "(" + }, + { + "type": "brace", + "start": 24114, + "end": 24115, + "value": "[" + }, + { + "type": "whitespace", + "start": 24115, + "end": 24123, + "value": "\n " + }, + { + "type": "operator", + "start": 24123, + "end": 24124, + "value": "-" + }, + { + "type": "number", + "start": 24124, + "end": 24142, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 24142, + "end": 24143, + "value": "," + }, + { + "type": "whitespace", + "start": 24143, + "end": 24151, + "value": "\n " + }, + { + "type": "operator", + "start": 24151, + "end": 24152, + "value": "-" + }, + { + "type": "number", + "start": 24152, + "end": 24170, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 24170, + "end": 24176, + "value": "\n " + }, + { + "type": "brace", + "start": 24176, + "end": 24177, + "value": "]" + }, + { + "type": "comma", + "start": 24177, + "end": 24178, + "value": "," + }, + { + "type": "whitespace", + "start": 24178, + "end": 24179, + "value": " " + }, + { + "type": "operator", + "start": 24179, + "end": 24180, + "value": "%" + }, + { + "type": "brace", + "start": 24180, + "end": 24181, + "value": ")" + }, + { + "type": "whitespace", + "start": 24181, + "end": 24184, + "value": "\n " + }, + { + "type": "operator", + "start": 24184, + "end": 24186, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24186, + "end": 24187, + "value": " " + }, + { + "type": "word", + "start": 24187, + "end": 24191, + "value": "line" + }, + { + "type": "brace", + "start": 24191, + "end": 24192, + "value": "(" + }, + { + "type": "brace", + "start": 24192, + "end": 24193, + "value": "[" + }, + { + "type": "whitespace", + "start": 24193, + "end": 24201, + "value": "\n " + }, + { + "type": "number", + "start": 24201, + "end": 24221, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 24221, + "end": 24222, + "value": "," + }, + { + "type": "whitespace", + "start": 24222, + "end": 24230, + "value": "\n " + }, + { + "type": "operator", + "start": 24230, + "end": 24231, + "value": "-" + }, + { + "type": "number", + "start": 24231, + "end": 24250, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 24250, + "end": 24256, + "value": "\n " + }, + { + "type": "brace", + "start": 24256, + "end": 24257, + "value": "]" + }, + { + "type": "comma", + "start": 24257, + "end": 24258, + "value": "," + }, + { + "type": "whitespace", + "start": 24258, + "end": 24259, + "value": " " + }, + { + "type": "operator", + "start": 24259, + "end": 24260, + "value": "%" + }, + { + "type": "brace", + "start": 24260, + "end": 24261, + "value": ")" + }, + { + "type": "whitespace", + "start": 24261, + "end": 24264, + "value": "\n " + }, + { + "type": "operator", + "start": 24264, + "end": 24266, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24266, + "end": 24267, + "value": " " + }, + { + "type": "word", + "start": 24267, + "end": 24271, + "value": "line" + }, + { + "type": "brace", + "start": 24271, + "end": 24272, + "value": "(" + }, + { + "type": "brace", + "start": 24272, + "end": 24273, + "value": "[" + }, + { + "type": "whitespace", + "start": 24273, + "end": 24281, + "value": "\n " + }, + { + "type": "number", + "start": 24281, + "end": 24300, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 24300, + "end": 24301, + "value": "," + }, + { + "type": "whitespace", + "start": 24301, + "end": 24309, + "value": "\n " + }, + { + "type": "operator", + "start": 24309, + "end": 24310, + "value": "-" + }, + { + "type": "number", + "start": 24310, + "end": 24329, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 24329, + "end": 24335, + "value": "\n " + }, + { + "type": "brace", + "start": 24335, + "end": 24336, + "value": "]" + }, + { + "type": "comma", + "start": 24336, + "end": 24337, + "value": "," + }, + { + "type": "whitespace", + "start": 24337, + "end": 24338, + "value": " " + }, + { + "type": "operator", + "start": 24338, + "end": 24339, + "value": "%" + }, + { + "type": "brace", + "start": 24339, + "end": 24340, + "value": ")" + }, + { + "type": "whitespace", + "start": 24340, + "end": 24343, + "value": "\n " + }, + { + "type": "operator", + "start": 24343, + "end": 24345, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24345, + "end": 24346, + "value": " " + }, + { + "type": "word", + "start": 24346, + "end": 24350, + "value": "line" + }, + { + "type": "brace", + "start": 24350, + "end": 24351, + "value": "(" + }, + { + "type": "brace", + "start": 24351, + "end": 24352, + "value": "[" + }, + { + "type": "whitespace", + "start": 24352, + "end": 24360, + "value": "\n " + }, + { + "type": "number", + "start": 24360, + "end": 24378, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 24378, + "end": 24379, + "value": "," + }, + { + "type": "whitespace", + "start": 24379, + "end": 24387, + "value": "\n " + }, + { + "type": "operator", + "start": 24387, + "end": 24388, + "value": "-" + }, + { + "type": "number", + "start": 24388, + "end": 24407, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 24407, + "end": 24413, + "value": "\n " + }, + { + "type": "brace", + "start": 24413, + "end": 24414, + "value": "]" + }, + { + "type": "comma", + "start": 24414, + "end": 24415, + "value": "," + }, + { + "type": "whitespace", + "start": 24415, + "end": 24416, + "value": " " + }, + { + "type": "operator", + "start": 24416, + "end": 24417, + "value": "%" + }, + { + "type": "brace", + "start": 24417, + "end": 24418, + "value": ")" + }, + { + "type": "whitespace", + "start": 24418, + "end": 24421, + "value": "\n " + }, + { + "type": "operator", + "start": 24421, + "end": 24423, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24423, + "end": 24424, + "value": " " + }, + { + "type": "word", + "start": 24424, + "end": 24428, + "value": "line" + }, + { + "type": "brace", + "start": 24428, + "end": 24429, + "value": "(" + }, + { + "type": "brace", + "start": 24429, + "end": 24430, + "value": "[" + }, + { + "type": "whitespace", + "start": 24430, + "end": 24438, + "value": "\n " + }, + { + "type": "operator", + "start": 24438, + "end": 24439, + "value": "-" + }, + { + "type": "number", + "start": 24439, + "end": 24457, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 24457, + "end": 24458, + "value": "," + }, + { + "type": "whitespace", + "start": 24458, + "end": 24466, + "value": "\n " + }, + { + "type": "operator", + "start": 24466, + "end": 24467, + "value": "-" + }, + { + "type": "number", + "start": 24467, + "end": 24485, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 24485, + "end": 24491, + "value": "\n " + }, + { + "type": "brace", + "start": 24491, + "end": 24492, + "value": "]" + }, + { + "type": "comma", + "start": 24492, + "end": 24493, + "value": "," + }, + { + "type": "whitespace", + "start": 24493, + "end": 24494, + "value": " " + }, + { + "type": "operator", + "start": 24494, + "end": 24495, + "value": "%" + }, + { + "type": "brace", + "start": 24495, + "end": 24496, + "value": ")" + }, + { + "type": "whitespace", + "start": 24496, + "end": 24499, + "value": "\n " + }, + { + "type": "operator", + "start": 24499, + "end": 24501, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24501, + "end": 24502, + "value": " " + }, + { + "type": "word", + "start": 24502, + "end": 24506, + "value": "line" + }, + { + "type": "brace", + "start": 24506, + "end": 24507, + "value": "(" + }, + { + "type": "brace", + "start": 24507, + "end": 24508, + "value": "[" + }, + { + "type": "number", + "start": 24508, + "end": 24526, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 24526, + "end": 24527, + "value": "," + }, + { + "type": "whitespace", + "start": 24527, + "end": 24528, + "value": " " + }, + { + "type": "number", + "start": 24528, + "end": 24546, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 24546, + "end": 24547, + "value": "]" + }, + { + "type": "comma", + "start": 24547, + "end": 24548, + "value": "," + }, + { + "type": "whitespace", + "start": 24548, + "end": 24549, + "value": " " + }, + { + "type": "operator", + "start": 24549, + "end": 24550, + "value": "%" + }, + { + "type": "brace", + "start": 24550, + "end": 24551, + "value": ")" + }, + { + "type": "whitespace", + "start": 24551, + "end": 24554, + "value": "\n " + }, + { + "type": "operator", + "start": 24554, + "end": 24556, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24556, + "end": 24557, + "value": " " + }, + { + "type": "word", + "start": 24557, + "end": 24561, + "value": "line" + }, + { + "type": "brace", + "start": 24561, + "end": 24562, + "value": "(" + }, + { + "type": "brace", + "start": 24562, + "end": 24563, + "value": "[" + }, + { + "type": "whitespace", + "start": 24563, + "end": 24571, + "value": "\n " + }, + { + "type": "number", + "start": 24571, + "end": 24589, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 24589, + "end": 24590, + "value": "," + }, + { + "type": "whitespace", + "start": 24590, + "end": 24598, + "value": "\n " + }, + { + "type": "number", + "start": 24598, + "end": 24617, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 24617, + "end": 24623, + "value": "\n " + }, + { + "type": "brace", + "start": 24623, + "end": 24624, + "value": "]" + }, + { + "type": "comma", + "start": 24624, + "end": 24625, + "value": "," + }, + { + "type": "whitespace", + "start": 24625, + "end": 24626, + "value": " " + }, + { + "type": "operator", + "start": 24626, + "end": 24627, + "value": "%" + }, + { + "type": "brace", + "start": 24627, + "end": 24628, + "value": ")" + }, + { + "type": "whitespace", + "start": 24628, + "end": 24631, + "value": "\n " + }, + { + "type": "operator", + "start": 24631, + "end": 24633, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24633, + "end": 24634, + "value": " " + }, + { + "type": "word", + "start": 24634, + "end": 24638, + "value": "line" + }, + { + "type": "brace", + "start": 24638, + "end": 24639, + "value": "(" + }, + { + "type": "brace", + "start": 24639, + "end": 24640, + "value": "[" + }, + { + "type": "whitespace", + "start": 24640, + "end": 24648, + "value": "\n " + }, + { + "type": "operator", + "start": 24648, + "end": 24649, + "value": "-" + }, + { + "type": "number", + "start": 24649, + "end": 24668, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 24668, + "end": 24669, + "value": "," + }, + { + "type": "whitespace", + "start": 24669, + "end": 24677, + "value": "\n " + }, + { + "type": "number", + "start": 24677, + "end": 24695, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 24695, + "end": 24701, + "value": "\n " + }, + { + "type": "brace", + "start": 24701, + "end": 24702, + "value": "]" + }, + { + "type": "comma", + "start": 24702, + "end": 24703, + "value": "," + }, + { + "type": "whitespace", + "start": 24703, + "end": 24704, + "value": " " + }, + { + "type": "operator", + "start": 24704, + "end": 24705, + "value": "%" + }, + { + "type": "brace", + "start": 24705, + "end": 24706, + "value": ")" + }, + { + "type": "whitespace", + "start": 24706, + "end": 24709, + "value": "\n " + }, + { + "type": "operator", + "start": 24709, + "end": 24711, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24711, + "end": 24712, + "value": " " + }, + { + "type": "word", + "start": 24712, + "end": 24716, + "value": "line" + }, + { + "type": "brace", + "start": 24716, + "end": 24717, + "value": "(" + }, + { + "type": "brace", + "start": 24717, + "end": 24718, + "value": "[" + }, + { + "type": "whitespace", + "start": 24718, + "end": 24726, + "value": "\n " + }, + { + "type": "operator", + "start": 24726, + "end": 24727, + "value": "-" + }, + { + "type": "number", + "start": 24727, + "end": 24746, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 24746, + "end": 24747, + "value": "," + }, + { + "type": "whitespace", + "start": 24747, + "end": 24755, + "value": "\n " + }, + { + "type": "operator", + "start": 24755, + "end": 24756, + "value": "-" + }, + { + "type": "number", + "start": 24756, + "end": 24775, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 24775, + "end": 24781, + "value": "\n " + }, + { + "type": "brace", + "start": 24781, + "end": 24782, + "value": "]" + }, + { + "type": "comma", + "start": 24782, + "end": 24783, + "value": "," + }, + { + "type": "whitespace", + "start": 24783, + "end": 24784, + "value": " " + }, + { + "type": "operator", + "start": 24784, + "end": 24785, + "value": "%" + }, + { + "type": "brace", + "start": 24785, + "end": 24786, + "value": ")" + }, + { + "type": "whitespace", + "start": 24786, + "end": 24789, + "value": "\n " + }, + { + "type": "operator", + "start": 24789, + "end": 24791, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24791, + "end": 24792, + "value": " " + }, + { + "type": "word", + "start": 24792, + "end": 24796, + "value": "line" + }, + { + "type": "brace", + "start": 24796, + "end": 24797, + "value": "(" + }, + { + "type": "brace", + "start": 24797, + "end": 24798, + "value": "[" + }, + { + "type": "whitespace", + "start": 24798, + "end": 24806, + "value": "\n " + }, + { + "type": "number", + "start": 24806, + "end": 24825, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 24825, + "end": 24826, + "value": "," + }, + { + "type": "whitespace", + "start": 24826, + "end": 24834, + "value": "\n " + }, + { + "type": "operator", + "start": 24834, + "end": 24835, + "value": "-" + }, + { + "type": "number", + "start": 24835, + "end": 24853, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 24853, + "end": 24859, + "value": "\n " + }, + { + "type": "brace", + "start": 24859, + "end": 24860, + "value": "]" + }, + { + "type": "comma", + "start": 24860, + "end": 24861, + "value": "," + }, + { + "type": "whitespace", + "start": 24861, + "end": 24862, + "value": " " + }, + { + "type": "operator", + "start": 24862, + "end": 24863, + "value": "%" + }, + { + "type": "brace", + "start": 24863, + "end": 24864, + "value": ")" + }, + { + "type": "whitespace", + "start": 24864, + "end": 24867, + "value": "\n " + }, + { + "type": "operator", + "start": 24867, + "end": 24869, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24869, + "end": 24870, + "value": " " + }, + { + "type": "word", + "start": 24870, + "end": 24874, + "value": "line" + }, + { + "type": "brace", + "start": 24874, + "end": 24875, + "value": "(" + }, + { + "type": "brace", + "start": 24875, + "end": 24876, + "value": "[" + }, + { + "type": "whitespace", + "start": 24876, + "end": 24884, + "value": "\n " + }, + { + "type": "operator", + "start": 24884, + "end": 24885, + "value": "-" + }, + { + "type": "number", + "start": 24885, + "end": 24903, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 24903, + "end": 24904, + "value": "," + }, + { + "type": "whitespace", + "start": 24904, + "end": 24912, + "value": "\n " + }, + { + "type": "number", + "start": 24912, + "end": 24931, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 24931, + "end": 24937, + "value": "\n " + }, + { + "type": "brace", + "start": 24937, + "end": 24938, + "value": "]" + }, + { + "type": "comma", + "start": 24938, + "end": 24939, + "value": "," + }, + { + "type": "whitespace", + "start": 24939, + "end": 24940, + "value": " " + }, + { + "type": "operator", + "start": 24940, + "end": 24941, + "value": "%" + }, + { + "type": "brace", + "start": 24941, + "end": 24942, + "value": ")" + }, + { + "type": "whitespace", + "start": 24942, + "end": 24945, + "value": "\n " + }, + { + "type": "operator", + "start": 24945, + "end": 24947, + "value": "|>" + }, + { + "type": "whitespace", + "start": 24947, + "end": 24948, + "value": " " + }, + { + "type": "word", + "start": 24948, + "end": 24952, + "value": "line" + }, + { + "type": "brace", + "start": 24952, + "end": 24953, + "value": "(" + }, + { + "type": "brace", + "start": 24953, + "end": 24954, + "value": "[" + }, + { + "type": "number", + "start": 24954, + "end": 24972, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 24972, + "end": 24973, + "value": "," + }, + { + "type": "whitespace", + "start": 24973, + "end": 24974, + "value": " " + }, + { + "type": "number", + "start": 24974, + "end": 24992, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 24992, + "end": 24993, + "value": "]" + }, + { + "type": "comma", + "start": 24993, + "end": 24994, + "value": "," + }, + { + "type": "whitespace", + "start": 24994, + "end": 24995, + "value": " " + }, + { + "type": "operator", + "start": 24995, + "end": 24996, + "value": "%" + }, + { + "type": "brace", + "start": 24996, + "end": 24997, + "value": ")" + }, + { + "type": "whitespace", + "start": 24997, + "end": 25000, + "value": "\n " + }, + { + "type": "operator", + "start": 25000, + "end": 25002, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25002, + "end": 25003, + "value": " " + }, + { + "type": "word", + "start": 25003, + "end": 25007, + "value": "line" + }, + { + "type": "brace", + "start": 25007, + "end": 25008, + "value": "(" + }, + { + "type": "brace", + "start": 25008, + "end": 25009, + "value": "[" + }, + { + "type": "whitespace", + "start": 25009, + "end": 25017, + "value": "\n " + }, + { + "type": "operator", + "start": 25017, + "end": 25018, + "value": "-" + }, + { + "type": "number", + "start": 25018, + "end": 25036, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 25036, + "end": 25037, + "value": "," + }, + { + "type": "whitespace", + "start": 25037, + "end": 25045, + "value": "\n " + }, + { + "type": "operator", + "start": 25045, + "end": 25046, + "value": "-" + }, + { + "type": "number", + "start": 25046, + "end": 25065, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 25065, + "end": 25071, + "value": "\n " + }, + { + "type": "brace", + "start": 25071, + "end": 25072, + "value": "]" + }, + { + "type": "comma", + "start": 25072, + "end": 25073, + "value": "," + }, + { + "type": "whitespace", + "start": 25073, + "end": 25074, + "value": " " + }, + { + "type": "operator", + "start": 25074, + "end": 25075, + "value": "%" + }, + { + "type": "brace", + "start": 25075, + "end": 25076, + "value": ")" + }, + { + "type": "whitespace", + "start": 25076, + "end": 25079, + "value": "\n " + }, + { + "type": "operator", + "start": 25079, + "end": 25081, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25081, + "end": 25082, + "value": " " + }, + { + "type": "word", + "start": 25082, + "end": 25086, + "value": "line" + }, + { + "type": "brace", + "start": 25086, + "end": 25087, + "value": "(" + }, + { + "type": "brace", + "start": 25087, + "end": 25088, + "value": "[" + }, + { + "type": "whitespace", + "start": 25088, + "end": 25096, + "value": "\n " + }, + { + "type": "number", + "start": 25096, + "end": 25114, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 25114, + "end": 25115, + "value": "," + }, + { + "type": "whitespace", + "start": 25115, + "end": 25123, + "value": "\n " + }, + { + "type": "operator", + "start": 25123, + "end": 25124, + "value": "-" + }, + { + "type": "number", + "start": 25124, + "end": 25142, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 25142, + "end": 25148, + "value": "\n " + }, + { + "type": "brace", + "start": 25148, + "end": 25149, + "value": "]" + }, + { + "type": "comma", + "start": 25149, + "end": 25150, + "value": "," + }, + { + "type": "whitespace", + "start": 25150, + "end": 25151, + "value": " " + }, + { + "type": "operator", + "start": 25151, + "end": 25152, + "value": "%" + }, + { + "type": "brace", + "start": 25152, + "end": 25153, + "value": ")" + }, + { + "type": "whitespace", + "start": 25153, + "end": 25156, + "value": "\n " + }, + { + "type": "operator", + "start": 25156, + "end": 25158, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25158, + "end": 25159, + "value": " " + }, + { + "type": "word", + "start": 25159, + "end": 25163, + "value": "line" + }, + { + "type": "brace", + "start": 25163, + "end": 25164, + "value": "(" + }, + { + "type": "brace", + "start": 25164, + "end": 25165, + "value": "[" + }, + { + "type": "whitespace", + "start": 25165, + "end": 25173, + "value": "\n " + }, + { + "type": "number", + "start": 25173, + "end": 25191, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 25191, + "end": 25192, + "value": "," + }, + { + "type": "whitespace", + "start": 25192, + "end": 25200, + "value": "\n " + }, + { + "type": "operator", + "start": 25200, + "end": 25201, + "value": "-" + }, + { + "type": "number", + "start": 25201, + "end": 25219, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 25219, + "end": 25225, + "value": "\n " + }, + { + "type": "brace", + "start": 25225, + "end": 25226, + "value": "]" + }, + { + "type": "comma", + "start": 25226, + "end": 25227, + "value": "," + }, + { + "type": "whitespace", + "start": 25227, + "end": 25228, + "value": " " + }, + { + "type": "operator", + "start": 25228, + "end": 25229, + "value": "%" + }, + { + "type": "brace", + "start": 25229, + "end": 25230, + "value": ")" + }, + { + "type": "whitespace", + "start": 25230, + "end": 25233, + "value": "\n " + }, + { + "type": "operator", + "start": 25233, + "end": 25235, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25235, + "end": 25236, + "value": " " + }, + { + "type": "word", + "start": 25236, + "end": 25240, + "value": "line" + }, + { + "type": "brace", + "start": 25240, + "end": 25241, + "value": "(" + }, + { + "type": "brace", + "start": 25241, + "end": 25242, + "value": "[" + }, + { + "type": "number", + "start": 25242, + "end": 25260, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 25260, + "end": 25261, + "value": "," + }, + { + "type": "whitespace", + "start": 25261, + "end": 25262, + "value": " " + }, + { + "type": "number", + "start": 25262, + "end": 25280, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 25280, + "end": 25281, + "value": "]" + }, + { + "type": "comma", + "start": 25281, + "end": 25282, + "value": "," + }, + { + "type": "whitespace", + "start": 25282, + "end": 25283, + "value": " " + }, + { + "type": "operator", + "start": 25283, + "end": 25284, + "value": "%" + }, + { + "type": "brace", + "start": 25284, + "end": 25285, + "value": ")" + }, + { + "type": "whitespace", + "start": 25285, + "end": 25288, + "value": "\n " + }, + { + "type": "operator", + "start": 25288, + "end": 25290, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25290, + "end": 25291, + "value": " " + }, + { + "type": "word", + "start": 25291, + "end": 25295, + "value": "line" + }, + { + "type": "brace", + "start": 25295, + "end": 25296, + "value": "(" + }, + { + "type": "brace", + "start": 25296, + "end": 25297, + "value": "[" + }, + { + "type": "whitespace", + "start": 25297, + "end": 25305, + "value": "\n " + }, + { + "type": "operator", + "start": 25305, + "end": 25306, + "value": "-" + }, + { + "type": "number", + "start": 25306, + "end": 25324, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 25324, + "end": 25325, + "value": "," + }, + { + "type": "whitespace", + "start": 25325, + "end": 25333, + "value": "\n " + }, + { + "type": "number", + "start": 25333, + "end": 25351, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 25351, + "end": 25357, + "value": "\n " + }, + { + "type": "brace", + "start": 25357, + "end": 25358, + "value": "]" + }, + { + "type": "comma", + "start": 25358, + "end": 25359, + "value": "," + }, + { + "type": "whitespace", + "start": 25359, + "end": 25360, + "value": " " + }, + { + "type": "operator", + "start": 25360, + "end": 25361, + "value": "%" + }, + { + "type": "brace", + "start": 25361, + "end": 25362, + "value": ")" + }, + { + "type": "whitespace", + "start": 25362, + "end": 25365, + "value": "\n " + }, + { + "type": "operator", + "start": 25365, + "end": 25367, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25367, + "end": 25368, + "value": " " + }, + { + "type": "word", + "start": 25368, + "end": 25372, + "value": "line" + }, + { + "type": "brace", + "start": 25372, + "end": 25373, + "value": "(" + }, + { + "type": "brace", + "start": 25373, + "end": 25374, + "value": "[" + }, + { + "type": "number", + "start": 25374, + "end": 25392, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 25392, + "end": 25393, + "value": "," + }, + { + "type": "whitespace", + "start": 25393, + "end": 25394, + "value": " " + }, + { + "type": "number", + "start": 25394, + "end": 25412, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 25412, + "end": 25413, + "value": "]" + }, + { + "type": "comma", + "start": 25413, + "end": 25414, + "value": "," + }, + { + "type": "whitespace", + "start": 25414, + "end": 25415, + "value": " " + }, + { + "type": "operator", + "start": 25415, + "end": 25416, + "value": "%" + }, + { + "type": "brace", + "start": 25416, + "end": 25417, + "value": ")" + }, + { + "type": "whitespace", + "start": 25417, + "end": 25420, + "value": "\n " + }, + { + "type": "operator", + "start": 25420, + "end": 25422, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25422, + "end": 25423, + "value": " " + }, + { + "type": "word", + "start": 25423, + "end": 25427, + "value": "line" + }, + { + "type": "brace", + "start": 25427, + "end": 25428, + "value": "(" + }, + { + "type": "brace", + "start": 25428, + "end": 25429, + "value": "[" + }, + { + "type": "whitespace", + "start": 25429, + "end": 25437, + "value": "\n " + }, + { + "type": "number", + "start": 25437, + "end": 25455, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 25455, + "end": 25456, + "value": "," + }, + { + "type": "whitespace", + "start": 25456, + "end": 25464, + "value": "\n " + }, + { + "type": "number", + "start": 25464, + "end": 25483, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 25483, + "end": 25489, + "value": "\n " + }, + { + "type": "brace", + "start": 25489, + "end": 25490, + "value": "]" + }, + { + "type": "comma", + "start": 25490, + "end": 25491, + "value": "," + }, + { + "type": "whitespace", + "start": 25491, + "end": 25492, + "value": " " + }, + { + "type": "operator", + "start": 25492, + "end": 25493, + "value": "%" + }, + { + "type": "brace", + "start": 25493, + "end": 25494, + "value": ")" + }, + { + "type": "whitespace", + "start": 25494, + "end": 25497, + "value": "\n " + }, + { + "type": "operator", + "start": 25497, + "end": 25499, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25499, + "end": 25500, + "value": " " + }, + { + "type": "word", + "start": 25500, + "end": 25504, + "value": "line" + }, + { + "type": "brace", + "start": 25504, + "end": 25505, + "value": "(" + }, + { + "type": "brace", + "start": 25505, + "end": 25506, + "value": "[" + }, + { + "type": "whitespace", + "start": 25506, + "end": 25514, + "value": "\n " + }, + { + "type": "operator", + "start": 25514, + "end": 25515, + "value": "-" + }, + { + "type": "number", + "start": 25515, + "end": 25533, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 25533, + "end": 25534, + "value": "," + }, + { + "type": "whitespace", + "start": 25534, + "end": 25542, + "value": "\n " + }, + { + "type": "operator", + "start": 25542, + "end": 25543, + "value": "-" + }, + { + "type": "number", + "start": 25543, + "end": 25560, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 25560, + "end": 25566, + "value": "\n " + }, + { + "type": "brace", + "start": 25566, + "end": 25567, + "value": "]" + }, + { + "type": "comma", + "start": 25567, + "end": 25568, + "value": "," + }, + { + "type": "whitespace", + "start": 25568, + "end": 25569, + "value": " " + }, + { + "type": "operator", + "start": 25569, + "end": 25570, + "value": "%" + }, + { + "type": "brace", + "start": 25570, + "end": 25571, + "value": ")" + }, + { + "type": "whitespace", + "start": 25571, + "end": 25574, + "value": "\n " + }, + { + "type": "operator", + "start": 25574, + "end": 25576, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25576, + "end": 25577, + "value": " " + }, + { + "type": "word", + "start": 25577, + "end": 25581, + "value": "line" + }, + { + "type": "brace", + "start": 25581, + "end": 25582, + "value": "(" + }, + { + "type": "brace", + "start": 25582, + "end": 25583, + "value": "[" + }, + { + "type": "whitespace", + "start": 25583, + "end": 25591, + "value": "\n " + }, + { + "type": "number", + "start": 25591, + "end": 25609, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 25609, + "end": 25610, + "value": "," + }, + { + "type": "whitespace", + "start": 25610, + "end": 25618, + "value": "\n " + }, + { + "type": "operator", + "start": 25618, + "end": 25619, + "value": "-" + }, + { + "type": "number", + "start": 25619, + "end": 25638, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 25638, + "end": 25644, + "value": "\n " + }, + { + "type": "brace", + "start": 25644, + "end": 25645, + "value": "]" + }, + { + "type": "comma", + "start": 25645, + "end": 25646, + "value": "," + }, + { + "type": "whitespace", + "start": 25646, + "end": 25647, + "value": " " + }, + { + "type": "operator", + "start": 25647, + "end": 25648, + "value": "%" + }, + { + "type": "brace", + "start": 25648, + "end": 25649, + "value": ")" + }, + { + "type": "whitespace", + "start": 25649, + "end": 25652, + "value": "\n " + }, + { + "type": "operator", + "start": 25652, + "end": 25654, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25654, + "end": 25655, + "value": " " + }, + { + "type": "word", + "start": 25655, + "end": 25659, + "value": "line" + }, + { + "type": "brace", + "start": 25659, + "end": 25660, + "value": "(" + }, + { + "type": "brace", + "start": 25660, + "end": 25661, + "value": "[" + }, + { + "type": "whitespace", + "start": 25661, + "end": 25669, + "value": "\n " + }, + { + "type": "operator", + "start": 25669, + "end": 25670, + "value": "-" + }, + { + "type": "number", + "start": 25670, + "end": 25689, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 25689, + "end": 25690, + "value": "," + }, + { + "type": "whitespace", + "start": 25690, + "end": 25698, + "value": "\n " + }, + { + "type": "operator", + "start": 25698, + "end": 25699, + "value": "-" + }, + { + "type": "number", + "start": 25699, + "end": 25718, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 25718, + "end": 25724, + "value": "\n " + }, + { + "type": "brace", + "start": 25724, + "end": 25725, + "value": "]" + }, + { + "type": "comma", + "start": 25725, + "end": 25726, + "value": "," + }, + { + "type": "whitespace", + "start": 25726, + "end": 25727, + "value": " " + }, + { + "type": "operator", + "start": 25727, + "end": 25728, + "value": "%" + }, + { + "type": "brace", + "start": 25728, + "end": 25729, + "value": ")" + }, + { + "type": "whitespace", + "start": 25729, + "end": 25732, + "value": "\n " + }, + { + "type": "operator", + "start": 25732, + "end": 25734, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25734, + "end": 25735, + "value": " " + }, + { + "type": "word", + "start": 25735, + "end": 25739, + "value": "line" + }, + { + "type": "brace", + "start": 25739, + "end": 25740, + "value": "(" + }, + { + "type": "brace", + "start": 25740, + "end": 25741, + "value": "[" + }, + { + "type": "whitespace", + "start": 25741, + "end": 25749, + "value": "\n " + }, + { + "type": "operator", + "start": 25749, + "end": 25750, + "value": "-" + }, + { + "type": "number", + "start": 25750, + "end": 25768, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 25768, + "end": 25769, + "value": "," + }, + { + "type": "whitespace", + "start": 25769, + "end": 25777, + "value": "\n " + }, + { + "type": "operator", + "start": 25777, + "end": 25778, + "value": "-" + }, + { + "type": "number", + "start": 25778, + "end": 25797, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 25797, + "end": 25803, + "value": "\n " + }, + { + "type": "brace", + "start": 25803, + "end": 25804, + "value": "]" + }, + { + "type": "comma", + "start": 25804, + "end": 25805, + "value": "," + }, + { + "type": "whitespace", + "start": 25805, + "end": 25806, + "value": " " + }, + { + "type": "operator", + "start": 25806, + "end": 25807, + "value": "%" + }, + { + "type": "brace", + "start": 25807, + "end": 25808, + "value": ")" + }, + { + "type": "whitespace", + "start": 25808, + "end": 25811, + "value": "\n " + }, + { + "type": "operator", + "start": 25811, + "end": 25813, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25813, + "end": 25814, + "value": " " + }, + { + "type": "word", + "start": 25814, + "end": 25818, + "value": "line" + }, + { + "type": "brace", + "start": 25818, + "end": 25819, + "value": "(" + }, + { + "type": "brace", + "start": 25819, + "end": 25820, + "value": "[" + }, + { + "type": "whitespace", + "start": 25820, + "end": 25828, + "value": "\n " + }, + { + "type": "operator", + "start": 25828, + "end": 25829, + "value": "-" + }, + { + "type": "number", + "start": 25829, + "end": 25847, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 25847, + "end": 25848, + "value": "," + }, + { + "type": "whitespace", + "start": 25848, + "end": 25856, + "value": "\n " + }, + { + "type": "number", + "start": 25856, + "end": 25875, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 25875, + "end": 25881, + "value": "\n " + }, + { + "type": "brace", + "start": 25881, + "end": 25882, + "value": "]" + }, + { + "type": "comma", + "start": 25882, + "end": 25883, + "value": "," + }, + { + "type": "whitespace", + "start": 25883, + "end": 25884, + "value": " " + }, + { + "type": "operator", + "start": 25884, + "end": 25885, + "value": "%" + }, + { + "type": "brace", + "start": 25885, + "end": 25886, + "value": ")" + }, + { + "type": "whitespace", + "start": 25886, + "end": 25889, + "value": "\n " + }, + { + "type": "operator", + "start": 25889, + "end": 25891, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25891, + "end": 25892, + "value": " " + }, + { + "type": "word", + "start": 25892, + "end": 25896, + "value": "line" + }, + { + "type": "brace", + "start": 25896, + "end": 25897, + "value": "(" + }, + { + "type": "brace", + "start": 25897, + "end": 25898, + "value": "[" + }, + { + "type": "whitespace", + "start": 25898, + "end": 25906, + "value": "\n " + }, + { + "type": "operator", + "start": 25906, + "end": 25907, + "value": "-" + }, + { + "type": "number", + "start": 25907, + "end": 25925, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 25925, + "end": 25926, + "value": "," + }, + { + "type": "whitespace", + "start": 25926, + "end": 25934, + "value": "\n " + }, + { + "type": "operator", + "start": 25934, + "end": 25935, + "value": "-" + }, + { + "type": "number", + "start": 25935, + "end": 25954, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 25954, + "end": 25960, + "value": "\n " + }, + { + "type": "brace", + "start": 25960, + "end": 25961, + "value": "]" + }, + { + "type": "comma", + "start": 25961, + "end": 25962, + "value": "," + }, + { + "type": "whitespace", + "start": 25962, + "end": 25963, + "value": " " + }, + { + "type": "operator", + "start": 25963, + "end": 25964, + "value": "%" + }, + { + "type": "brace", + "start": 25964, + "end": 25965, + "value": ")" + }, + { + "type": "whitespace", + "start": 25965, + "end": 25968, + "value": "\n " + }, + { + "type": "operator", + "start": 25968, + "end": 25970, + "value": "|>" + }, + { + "type": "whitespace", + "start": 25970, + "end": 25971, + "value": " " + }, + { + "type": "word", + "start": 25971, + "end": 25975, + "value": "line" + }, + { + "type": "brace", + "start": 25975, + "end": 25976, + "value": "(" + }, + { + "type": "brace", + "start": 25976, + "end": 25977, + "value": "[" + }, + { + "type": "whitespace", + "start": 25977, + "end": 25985, + "value": "\n " + }, + { + "type": "number", + "start": 25985, + "end": 26003, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 26003, + "end": 26004, + "value": "," + }, + { + "type": "whitespace", + "start": 26004, + "end": 26012, + "value": "\n " + }, + { + "type": "operator", + "start": 26012, + "end": 26013, + "value": "-" + }, + { + "type": "number", + "start": 26013, + "end": 26031, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 26031, + "end": 26037, + "value": "\n " + }, + { + "type": "brace", + "start": 26037, + "end": 26038, + "value": "]" + }, + { + "type": "comma", + "start": 26038, + "end": 26039, + "value": "," + }, + { + "type": "whitespace", + "start": 26039, + "end": 26040, + "value": " " + }, + { + "type": "operator", + "start": 26040, + "end": 26041, + "value": "%" + }, + { + "type": "brace", + "start": 26041, + "end": 26042, + "value": ")" + }, + { + "type": "whitespace", + "start": 26042, + "end": 26045, + "value": "\n " + }, + { + "type": "operator", + "start": 26045, + "end": 26047, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26047, + "end": 26048, + "value": " " + }, + { + "type": "word", + "start": 26048, + "end": 26052, + "value": "line" + }, + { + "type": "brace", + "start": 26052, + "end": 26053, + "value": "(" + }, + { + "type": "brace", + "start": 26053, + "end": 26054, + "value": "[" + }, + { + "type": "whitespace", + "start": 26054, + "end": 26062, + "value": "\n " + }, + { + "type": "operator", + "start": 26062, + "end": 26063, + "value": "-" + }, + { + "type": "number", + "start": 26063, + "end": 26081, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 26081, + "end": 26082, + "value": "," + }, + { + "type": "whitespace", + "start": 26082, + "end": 26090, + "value": "\n " + }, + { + "type": "number", + "start": 26090, + "end": 26108, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 26108, + "end": 26114, + "value": "\n " + }, + { + "type": "brace", + "start": 26114, + "end": 26115, + "value": "]" + }, + { + "type": "comma", + "start": 26115, + "end": 26116, + "value": "," + }, + { + "type": "whitespace", + "start": 26116, + "end": 26117, + "value": " " + }, + { + "type": "operator", + "start": 26117, + "end": 26118, + "value": "%" + }, + { + "type": "brace", + "start": 26118, + "end": 26119, + "value": ")" + }, + { + "type": "whitespace", + "start": 26119, + "end": 26122, + "value": "\n " + }, + { + "type": "operator", + "start": 26122, + "end": 26124, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26124, + "end": 26125, + "value": " " + }, + { + "type": "word", + "start": 26125, + "end": 26129, + "value": "line" + }, + { + "type": "brace", + "start": 26129, + "end": 26130, + "value": "(" + }, + { + "type": "brace", + "start": 26130, + "end": 26131, + "value": "[" + }, + { + "type": "whitespace", + "start": 26131, + "end": 26139, + "value": "\n " + }, + { + "type": "operator", + "start": 26139, + "end": 26140, + "value": "-" + }, + { + "type": "number", + "start": 26140, + "end": 26158, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 26158, + "end": 26159, + "value": "," + }, + { + "type": "whitespace", + "start": 26159, + "end": 26167, + "value": "\n " + }, + { + "type": "number", + "start": 26167, + "end": 26185, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 26185, + "end": 26191, + "value": "\n " + }, + { + "type": "brace", + "start": 26191, + "end": 26192, + "value": "]" + }, + { + "type": "comma", + "start": 26192, + "end": 26193, + "value": "," + }, + { + "type": "whitespace", + "start": 26193, + "end": 26194, + "value": " " + }, + { + "type": "operator", + "start": 26194, + "end": 26195, + "value": "%" + }, + { + "type": "brace", + "start": 26195, + "end": 26196, + "value": ")" + }, + { + "type": "whitespace", + "start": 26196, + "end": 26199, + "value": "\n " + }, + { + "type": "operator", + "start": 26199, + "end": 26201, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26201, + "end": 26202, + "value": " " + }, + { + "type": "word", + "start": 26202, + "end": 26206, + "value": "line" + }, + { + "type": "brace", + "start": 26206, + "end": 26207, + "value": "(" + }, + { + "type": "brace", + "start": 26207, + "end": 26208, + "value": "[" + }, + { + "type": "whitespace", + "start": 26208, + "end": 26216, + "value": "\n " + }, + { + "type": "operator", + "start": 26216, + "end": 26217, + "value": "-" + }, + { + "type": "number", + "start": 26217, + "end": 26235, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 26235, + "end": 26236, + "value": "," + }, + { + "type": "whitespace", + "start": 26236, + "end": 26244, + "value": "\n " + }, + { + "type": "operator", + "start": 26244, + "end": 26245, + "value": "-" + }, + { + "type": "number", + "start": 26245, + "end": 26264, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 26264, + "end": 26270, + "value": "\n " + }, + { + "type": "brace", + "start": 26270, + "end": 26271, + "value": "]" + }, + { + "type": "comma", + "start": 26271, + "end": 26272, + "value": "," + }, + { + "type": "whitespace", + "start": 26272, + "end": 26273, + "value": " " + }, + { + "type": "operator", + "start": 26273, + "end": 26274, + "value": "%" + }, + { + "type": "brace", + "start": 26274, + "end": 26275, + "value": ")" + }, + { + "type": "whitespace", + "start": 26275, + "end": 26278, + "value": "\n " + }, + { + "type": "operator", + "start": 26278, + "end": 26280, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26280, + "end": 26281, + "value": " " + }, + { + "type": "word", + "start": 26281, + "end": 26285, + "value": "line" + }, + { + "type": "brace", + "start": 26285, + "end": 26286, + "value": "(" + }, + { + "type": "brace", + "start": 26286, + "end": 26287, + "value": "[" + }, + { + "type": "whitespace", + "start": 26287, + "end": 26295, + "value": "\n " + }, + { + "type": "number", + "start": 26295, + "end": 26314, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 26314, + "end": 26315, + "value": "," + }, + { + "type": "whitespace", + "start": 26315, + "end": 26323, + "value": "\n " + }, + { + "type": "number", + "start": 26323, + "end": 26342, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 26342, + "end": 26348, + "value": "\n " + }, + { + "type": "brace", + "start": 26348, + "end": 26349, + "value": "]" + }, + { + "type": "comma", + "start": 26349, + "end": 26350, + "value": "," + }, + { + "type": "whitespace", + "start": 26350, + "end": 26351, + "value": " " + }, + { + "type": "operator", + "start": 26351, + "end": 26352, + "value": "%" + }, + { + "type": "brace", + "start": 26352, + "end": 26353, + "value": ")" + }, + { + "type": "whitespace", + "start": 26353, + "end": 26356, + "value": "\n " + }, + { + "type": "operator", + "start": 26356, + "end": 26358, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26358, + "end": 26359, + "value": " " + }, + { + "type": "word", + "start": 26359, + "end": 26363, + "value": "line" + }, + { + "type": "brace", + "start": 26363, + "end": 26364, + "value": "(" + }, + { + "type": "brace", + "start": 26364, + "end": 26365, + "value": "[" + }, + { + "type": "whitespace", + "start": 26365, + "end": 26373, + "value": "\n " + }, + { + "type": "number", + "start": 26373, + "end": 26392, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 26392, + "end": 26393, + "value": "," + }, + { + "type": "whitespace", + "start": 26393, + "end": 26401, + "value": "\n " + }, + { + "type": "number", + "start": 26401, + "end": 26420, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 26420, + "end": 26426, + "value": "\n " + }, + { + "type": "brace", + "start": 26426, + "end": 26427, + "value": "]" + }, + { + "type": "comma", + "start": 26427, + "end": 26428, + "value": "," + }, + { + "type": "whitespace", + "start": 26428, + "end": 26429, + "value": " " + }, + { + "type": "operator", + "start": 26429, + "end": 26430, + "value": "%" + }, + { + "type": "brace", + "start": 26430, + "end": 26431, + "value": ")" + }, + { + "type": "whitespace", + "start": 26431, + "end": 26434, + "value": "\n " + }, + { + "type": "operator", + "start": 26434, + "end": 26436, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26436, + "end": 26437, + "value": " " + }, + { + "type": "word", + "start": 26437, + "end": 26441, + "value": "line" + }, + { + "type": "brace", + "start": 26441, + "end": 26442, + "value": "(" + }, + { + "type": "brace", + "start": 26442, + "end": 26443, + "value": "[" + }, + { + "type": "whitespace", + "start": 26443, + "end": 26451, + "value": "\n " + }, + { + "type": "operator", + "start": 26451, + "end": 26452, + "value": "-" + }, + { + "type": "number", + "start": 26452, + "end": 26471, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 26471, + "end": 26472, + "value": "," + }, + { + "type": "whitespace", + "start": 26472, + "end": 26480, + "value": "\n " + }, + { + "type": "number", + "start": 26480, + "end": 26498, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 26498, + "end": 26504, + "value": "\n " + }, + { + "type": "brace", + "start": 26504, + "end": 26505, + "value": "]" + }, + { + "type": "comma", + "start": 26505, + "end": 26506, + "value": "," + }, + { + "type": "whitespace", + "start": 26506, + "end": 26507, + "value": " " + }, + { + "type": "operator", + "start": 26507, + "end": 26508, + "value": "%" + }, + { + "type": "brace", + "start": 26508, + "end": 26509, + "value": ")" + }, + { + "type": "whitespace", + "start": 26509, + "end": 26512, + "value": "\n " + }, + { + "type": "operator", + "start": 26512, + "end": 26514, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26514, + "end": 26515, + "value": " " + }, + { + "type": "word", + "start": 26515, + "end": 26519, + "value": "line" + }, + { + "type": "brace", + "start": 26519, + "end": 26520, + "value": "(" + }, + { + "type": "brace", + "start": 26520, + "end": 26521, + "value": "[" + }, + { + "type": "whitespace", + "start": 26521, + "end": 26529, + "value": "\n " + }, + { + "type": "operator", + "start": 26529, + "end": 26530, + "value": "-" + }, + { + "type": "number", + "start": 26530, + "end": 26549, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 26549, + "end": 26550, + "value": "," + }, + { + "type": "whitespace", + "start": 26550, + "end": 26558, + "value": "\n " + }, + { + "type": "operator", + "start": 26558, + "end": 26559, + "value": "-" + }, + { + "type": "number", + "start": 26559, + "end": 26578, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 26578, + "end": 26584, + "value": "\n " + }, + { + "type": "brace", + "start": 26584, + "end": 26585, + "value": "]" + }, + { + "type": "comma", + "start": 26585, + "end": 26586, + "value": "," + }, + { + "type": "whitespace", + "start": 26586, + "end": 26587, + "value": " " + }, + { + "type": "operator", + "start": 26587, + "end": 26588, + "value": "%" + }, + { + "type": "brace", + "start": 26588, + "end": 26589, + "value": ")" + }, + { + "type": "whitespace", + "start": 26589, + "end": 26592, + "value": "\n " + }, + { + "type": "operator", + "start": 26592, + "end": 26594, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26594, + "end": 26595, + "value": " " + }, + { + "type": "word", + "start": 26595, + "end": 26599, + "value": "line" + }, + { + "type": "brace", + "start": 26599, + "end": 26600, + "value": "(" + }, + { + "type": "brace", + "start": 26600, + "end": 26601, + "value": "[" + }, + { + "type": "whitespace", + "start": 26601, + "end": 26609, + "value": "\n " + }, + { + "type": "number", + "start": 26609, + "end": 26627, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 26627, + "end": 26628, + "value": "," + }, + { + "type": "whitespace", + "start": 26628, + "end": 26636, + "value": "\n " + }, + { + "type": "operator", + "start": 26636, + "end": 26637, + "value": "-" + }, + { + "type": "number", + "start": 26637, + "end": 26656, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 26656, + "end": 26662, + "value": "\n " + }, + { + "type": "brace", + "start": 26662, + "end": 26663, + "value": "]" + }, + { + "type": "comma", + "start": 26663, + "end": 26664, + "value": "," + }, + { + "type": "whitespace", + "start": 26664, + "end": 26665, + "value": " " + }, + { + "type": "operator", + "start": 26665, + "end": 26666, + "value": "%" + }, + { + "type": "brace", + "start": 26666, + "end": 26667, + "value": ")" + }, + { + "type": "whitespace", + "start": 26667, + "end": 26670, + "value": "\n " + }, + { + "type": "operator", + "start": 26670, + "end": 26672, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26672, + "end": 26673, + "value": " " + }, + { + "type": "word", + "start": 26673, + "end": 26677, + "value": "line" + }, + { + "type": "brace", + "start": 26677, + "end": 26678, + "value": "(" + }, + { + "type": "brace", + "start": 26678, + "end": 26679, + "value": "[" + }, + { + "type": "whitespace", + "start": 26679, + "end": 26687, + "value": "\n " + }, + { + "type": "number", + "start": 26687, + "end": 26708, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 26708, + "end": 26709, + "value": "," + }, + { + "type": "whitespace", + "start": 26709, + "end": 26717, + "value": "\n " + }, + { + "type": "operator", + "start": 26717, + "end": 26718, + "value": "-" + }, + { + "type": "number", + "start": 26718, + "end": 26736, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 26736, + "end": 26742, + "value": "\n " + }, + { + "type": "brace", + "start": 26742, + "end": 26743, + "value": "]" + }, + { + "type": "comma", + "start": 26743, + "end": 26744, + "value": "," + }, + { + "type": "whitespace", + "start": 26744, + "end": 26745, + "value": " " + }, + { + "type": "operator", + "start": 26745, + "end": 26746, + "value": "%" + }, + { + "type": "brace", + "start": 26746, + "end": 26747, + "value": ")" + }, + { + "type": "whitespace", + "start": 26747, + "end": 26750, + "value": "\n " + }, + { + "type": "operator", + "start": 26750, + "end": 26752, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26752, + "end": 26753, + "value": " " + }, + { + "type": "word", + "start": 26753, + "end": 26757, + "value": "line" + }, + { + "type": "brace", + "start": 26757, + "end": 26758, + "value": "(" + }, + { + "type": "brace", + "start": 26758, + "end": 26759, + "value": "[" + }, + { + "type": "whitespace", + "start": 26759, + "end": 26767, + "value": "\n " + }, + { + "type": "number", + "start": 26767, + "end": 26785, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 26785, + "end": 26786, + "value": "," + }, + { + "type": "whitespace", + "start": 26786, + "end": 26794, + "value": "\n " + }, + { + "type": "operator", + "start": 26794, + "end": 26795, + "value": "-" + }, + { + "type": "number", + "start": 26795, + "end": 26813, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 26813, + "end": 26819, + "value": "\n " + }, + { + "type": "brace", + "start": 26819, + "end": 26820, + "value": "]" + }, + { + "type": "comma", + "start": 26820, + "end": 26821, + "value": "," + }, + { + "type": "whitespace", + "start": 26821, + "end": 26822, + "value": " " + }, + { + "type": "operator", + "start": 26822, + "end": 26823, + "value": "%" + }, + { + "type": "brace", + "start": 26823, + "end": 26824, + "value": ")" + }, + { + "type": "whitespace", + "start": 26824, + "end": 26827, + "value": "\n " + }, + { + "type": "operator", + "start": 26827, + "end": 26829, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26829, + "end": 26830, + "value": " " + }, + { + "type": "word", + "start": 26830, + "end": 26834, + "value": "line" + }, + { + "type": "brace", + "start": 26834, + "end": 26835, + "value": "(" + }, + { + "type": "brace", + "start": 26835, + "end": 26836, + "value": "[" + }, + { + "type": "whitespace", + "start": 26836, + "end": 26844, + "value": "\n " + }, + { + "type": "operator", + "start": 26844, + "end": 26845, + "value": "-" + }, + { + "type": "number", + "start": 26845, + "end": 26863, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 26863, + "end": 26864, + "value": "," + }, + { + "type": "whitespace", + "start": 26864, + "end": 26872, + "value": "\n " + }, + { + "type": "number", + "start": 26872, + "end": 26890, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 26890, + "end": 26896, + "value": "\n " + }, + { + "type": "brace", + "start": 26896, + "end": 26897, + "value": "]" + }, + { + "type": "comma", + "start": 26897, + "end": 26898, + "value": "," + }, + { + "type": "whitespace", + "start": 26898, + "end": 26899, + "value": " " + }, + { + "type": "operator", + "start": 26899, + "end": 26900, + "value": "%" + }, + { + "type": "brace", + "start": 26900, + "end": 26901, + "value": ")" + }, + { + "type": "whitespace", + "start": 26901, + "end": 26904, + "value": "\n " + }, + { + "type": "operator", + "start": 26904, + "end": 26906, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26906, + "end": 26907, + "value": " " + }, + { + "type": "word", + "start": 26907, + "end": 26911, + "value": "line" + }, + { + "type": "brace", + "start": 26911, + "end": 26912, + "value": "(" + }, + { + "type": "brace", + "start": 26912, + "end": 26913, + "value": "[" + }, + { + "type": "number", + "start": 26913, + "end": 26931, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 26931, + "end": 26932, + "value": "," + }, + { + "type": "whitespace", + "start": 26932, + "end": 26933, + "value": " " + }, + { + "type": "number", + "start": 26933, + "end": 26951, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 26951, + "end": 26952, + "value": "]" + }, + { + "type": "comma", + "start": 26952, + "end": 26953, + "value": "," + }, + { + "type": "whitespace", + "start": 26953, + "end": 26954, + "value": " " + }, + { + "type": "operator", + "start": 26954, + "end": 26955, + "value": "%" + }, + { + "type": "brace", + "start": 26955, + "end": 26956, + "value": ")" + }, + { + "type": "whitespace", + "start": 26956, + "end": 26959, + "value": "\n " + }, + { + "type": "operator", + "start": 26959, + "end": 26961, + "value": "|>" + }, + { + "type": "whitespace", + "start": 26961, + "end": 26962, + "value": " " + }, + { + "type": "word", + "start": 26962, + "end": 26966, + "value": "line" + }, + { + "type": "brace", + "start": 26966, + "end": 26967, + "value": "(" + }, + { + "type": "brace", + "start": 26967, + "end": 26968, + "value": "[" + }, + { + "type": "whitespace", + "start": 26968, + "end": 26976, + "value": "\n " + }, + { + "type": "operator", + "start": 26976, + "end": 26977, + "value": "-" + }, + { + "type": "number", + "start": 26977, + "end": 26996, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 26996, + "end": 26997, + "value": "," + }, + { + "type": "whitespace", + "start": 26997, + "end": 27005, + "value": "\n " + }, + { + "type": "number", + "start": 27005, + "end": 27025, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 27025, + "end": 27031, + "value": "\n " + }, + { + "type": "brace", + "start": 27031, + "end": 27032, + "value": "]" + }, + { + "type": "comma", + "start": 27032, + "end": 27033, + "value": "," + }, + { + "type": "whitespace", + "start": 27033, + "end": 27034, + "value": " " + }, + { + "type": "operator", + "start": 27034, + "end": 27035, + "value": "%" + }, + { + "type": "brace", + "start": 27035, + "end": 27036, + "value": ")" + }, + { + "type": "whitespace", + "start": 27036, + "end": 27039, + "value": "\n " + }, + { + "type": "operator", + "start": 27039, + "end": 27041, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27041, + "end": 27042, + "value": " " + }, + { + "type": "word", + "start": 27042, + "end": 27046, + "value": "line" + }, + { + "type": "brace", + "start": 27046, + "end": 27047, + "value": "(" + }, + { + "type": "brace", + "start": 27047, + "end": 27048, + "value": "[" + }, + { + "type": "whitespace", + "start": 27048, + "end": 27056, + "value": "\n " + }, + { + "type": "operator", + "start": 27056, + "end": 27057, + "value": "-" + }, + { + "type": "number", + "start": 27057, + "end": 27075, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 27075, + "end": 27076, + "value": "," + }, + { + "type": "whitespace", + "start": 27076, + "end": 27084, + "value": "\n " + }, + { + "type": "operator", + "start": 27084, + "end": 27085, + "value": "-" + }, + { + "type": "number", + "start": 27085, + "end": 27104, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 27104, + "end": 27110, + "value": "\n " + }, + { + "type": "brace", + "start": 27110, + "end": 27111, + "value": "]" + }, + { + "type": "comma", + "start": 27111, + "end": 27112, + "value": "," + }, + { + "type": "whitespace", + "start": 27112, + "end": 27113, + "value": " " + }, + { + "type": "operator", + "start": 27113, + "end": 27114, + "value": "%" + }, + { + "type": "brace", + "start": 27114, + "end": 27115, + "value": ")" + }, + { + "type": "whitespace", + "start": 27115, + "end": 27118, + "value": "\n " + }, + { + "type": "operator", + "start": 27118, + "end": 27120, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27120, + "end": 27121, + "value": " " + }, + { + "type": "word", + "start": 27121, + "end": 27125, + "value": "line" + }, + { + "type": "brace", + "start": 27125, + "end": 27126, + "value": "(" + }, + { + "type": "brace", + "start": 27126, + "end": 27127, + "value": "[" + }, + { + "type": "whitespace", + "start": 27127, + "end": 27135, + "value": "\n " + }, + { + "type": "operator", + "start": 27135, + "end": 27136, + "value": "-" + }, + { + "type": "number", + "start": 27136, + "end": 27154, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 27154, + "end": 27155, + "value": "," + }, + { + "type": "whitespace", + "start": 27155, + "end": 27163, + "value": "\n " + }, + { + "type": "operator", + "start": 27163, + "end": 27164, + "value": "-" + }, + { + "type": "number", + "start": 27164, + "end": 27183, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 27183, + "end": 27189, + "value": "\n " + }, + { + "type": "brace", + "start": 27189, + "end": 27190, + "value": "]" + }, + { + "type": "comma", + "start": 27190, + "end": 27191, + "value": "," + }, + { + "type": "whitespace", + "start": 27191, + "end": 27192, + "value": " " + }, + { + "type": "operator", + "start": 27192, + "end": 27193, + "value": "%" + }, + { + "type": "brace", + "start": 27193, + "end": 27194, + "value": ")" + }, + { + "type": "whitespace", + "start": 27194, + "end": 27197, + "value": "\n " + }, + { + "type": "operator", + "start": 27197, + "end": 27199, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27199, + "end": 27200, + "value": " " + }, + { + "type": "word", + "start": 27200, + "end": 27204, + "value": "line" + }, + { + "type": "brace", + "start": 27204, + "end": 27205, + "value": "(" + }, + { + "type": "brace", + "start": 27205, + "end": 27206, + "value": "[" + }, + { + "type": "number", + "start": 27206, + "end": 27223, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 27223, + "end": 27224, + "value": "," + }, + { + "type": "whitespace", + "start": 27224, + "end": 27225, + "value": " " + }, + { + "type": "number", + "start": 27225, + "end": 27243, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 27243, + "end": 27244, + "value": "]" + }, + { + "type": "comma", + "start": 27244, + "end": 27245, + "value": "," + }, + { + "type": "whitespace", + "start": 27245, + "end": 27246, + "value": " " + }, + { + "type": "operator", + "start": 27246, + "end": 27247, + "value": "%" + }, + { + "type": "brace", + "start": 27247, + "end": 27248, + "value": ")" + }, + { + "type": "whitespace", + "start": 27248, + "end": 27251, + "value": "\n " + }, + { + "type": "operator", + "start": 27251, + "end": 27253, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27253, + "end": 27254, + "value": " " + }, + { + "type": "word", + "start": 27254, + "end": 27258, + "value": "line" + }, + { + "type": "brace", + "start": 27258, + "end": 27259, + "value": "(" + }, + { + "type": "brace", + "start": 27259, + "end": 27260, + "value": "[" + }, + { + "type": "whitespace", + "start": 27260, + "end": 27268, + "value": "\n " + }, + { + "type": "number", + "start": 27268, + "end": 27287, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 27287, + "end": 27288, + "value": "," + }, + { + "type": "whitespace", + "start": 27288, + "end": 27296, + "value": "\n " + }, + { + "type": "operator", + "start": 27296, + "end": 27297, + "value": "-" + }, + { + "type": "number", + "start": 27297, + "end": 27316, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 27316, + "end": 27322, + "value": "\n " + }, + { + "type": "brace", + "start": 27322, + "end": 27323, + "value": "]" + }, + { + "type": "comma", + "start": 27323, + "end": 27324, + "value": "," + }, + { + "type": "whitespace", + "start": 27324, + "end": 27325, + "value": " " + }, + { + "type": "operator", + "start": 27325, + "end": 27326, + "value": "%" + }, + { + "type": "brace", + "start": 27326, + "end": 27327, + "value": ")" + }, + { + "type": "whitespace", + "start": 27327, + "end": 27330, + "value": "\n " + }, + { + "type": "operator", + "start": 27330, + "end": 27332, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27332, + "end": 27333, + "value": " " + }, + { + "type": "word", + "start": 27333, + "end": 27337, + "value": "line" + }, + { + "type": "brace", + "start": 27337, + "end": 27338, + "value": "(" + }, + { + "type": "brace", + "start": 27338, + "end": 27339, + "value": "[" + }, + { + "type": "number", + "start": 27339, + "end": 27357, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 27357, + "end": 27358, + "value": "," + }, + { + "type": "whitespace", + "start": 27358, + "end": 27359, + "value": " " + }, + { + "type": "number", + "start": 27359, + "end": 27376, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 27376, + "end": 27377, + "value": "]" + }, + { + "type": "comma", + "start": 27377, + "end": 27378, + "value": "," + }, + { + "type": "whitespace", + "start": 27378, + "end": 27379, + "value": " " + }, + { + "type": "operator", + "start": 27379, + "end": 27380, + "value": "%" + }, + { + "type": "brace", + "start": 27380, + "end": 27381, + "value": ")" + }, + { + "type": "whitespace", + "start": 27381, + "end": 27384, + "value": "\n " + }, + { + "type": "operator", + "start": 27384, + "end": 27386, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27386, + "end": 27387, + "value": " " + }, + { + "type": "word", + "start": 27387, + "end": 27391, + "value": "line" + }, + { + "type": "brace", + "start": 27391, + "end": 27392, + "value": "(" + }, + { + "type": "brace", + "start": 27392, + "end": 27393, + "value": "[" + }, + { + "type": "whitespace", + "start": 27393, + "end": 27401, + "value": "\n " + }, + { + "type": "number", + "start": 27401, + "end": 27420, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 27420, + "end": 27421, + "value": "," + }, + { + "type": "whitespace", + "start": 27421, + "end": 27429, + "value": "\n " + }, + { + "type": "operator", + "start": 27429, + "end": 27430, + "value": "-" + }, + { + "type": "number", + "start": 27430, + "end": 27448, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 27448, + "end": 27454, + "value": "\n " + }, + { + "type": "brace", + "start": 27454, + "end": 27455, + "value": "]" + }, + { + "type": "comma", + "start": 27455, + "end": 27456, + "value": "," + }, + { + "type": "whitespace", + "start": 27456, + "end": 27457, + "value": " " + }, + { + "type": "operator", + "start": 27457, + "end": 27458, + "value": "%" + }, + { + "type": "brace", + "start": 27458, + "end": 27459, + "value": ")" + }, + { + "type": "whitespace", + "start": 27459, + "end": 27462, + "value": "\n " + }, + { + "type": "operator", + "start": 27462, + "end": 27464, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27464, + "end": 27465, + "value": " " + }, + { + "type": "word", + "start": 27465, + "end": 27469, + "value": "line" + }, + { + "type": "brace", + "start": 27469, + "end": 27470, + "value": "(" + }, + { + "type": "brace", + "start": 27470, + "end": 27471, + "value": "[" + }, + { + "type": "number", + "start": 27471, + "end": 27489, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 27489, + "end": 27490, + "value": "," + }, + { + "type": "whitespace", + "start": 27490, + "end": 27491, + "value": " " + }, + { + "type": "number", + "start": 27491, + "end": 27509, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 27509, + "end": 27510, + "value": "]" + }, + { + "type": "comma", + "start": 27510, + "end": 27511, + "value": "," + }, + { + "type": "whitespace", + "start": 27511, + "end": 27512, + "value": " " + }, + { + "type": "operator", + "start": 27512, + "end": 27513, + "value": "%" + }, + { + "type": "brace", + "start": 27513, + "end": 27514, + "value": ")" + }, + { + "type": "whitespace", + "start": 27514, + "end": 27517, + "value": "\n " + }, + { + "type": "operator", + "start": 27517, + "end": 27519, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27519, + "end": 27520, + "value": " " + }, + { + "type": "word", + "start": 27520, + "end": 27524, + "value": "line" + }, + { + "type": "brace", + "start": 27524, + "end": 27525, + "value": "(" + }, + { + "type": "brace", + "start": 27525, + "end": 27526, + "value": "[" + }, + { + "type": "whitespace", + "start": 27526, + "end": 27534, + "value": "\n " + }, + { + "type": "number", + "start": 27534, + "end": 27552, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 27552, + "end": 27553, + "value": "," + }, + { + "type": "whitespace", + "start": 27553, + "end": 27561, + "value": "\n " + }, + { + "type": "number", + "start": 27561, + "end": 27580, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 27580, + "end": 27586, + "value": "\n " + }, + { + "type": "brace", + "start": 27586, + "end": 27587, + "value": "]" + }, + { + "type": "comma", + "start": 27587, + "end": 27588, + "value": "," + }, + { + "type": "whitespace", + "start": 27588, + "end": 27589, + "value": " " + }, + { + "type": "operator", + "start": 27589, + "end": 27590, + "value": "%" + }, + { + "type": "brace", + "start": 27590, + "end": 27591, + "value": ")" + }, + { + "type": "whitespace", + "start": 27591, + "end": 27594, + "value": "\n " + }, + { + "type": "operator", + "start": 27594, + "end": 27596, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27596, + "end": 27597, + "value": " " + }, + { + "type": "word", + "start": 27597, + "end": 27601, + "value": "line" + }, + { + "type": "brace", + "start": 27601, + "end": 27602, + "value": "(" + }, + { + "type": "brace", + "start": 27602, + "end": 27603, + "value": "[" + }, + { + "type": "number", + "start": 27603, + "end": 27621, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 27621, + "end": 27622, + "value": "," + }, + { + "type": "whitespace", + "start": 27622, + "end": 27623, + "value": " " + }, + { + "type": "number", + "start": 27623, + "end": 27641, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 27641, + "end": 27642, + "value": "]" + }, + { + "type": "comma", + "start": 27642, + "end": 27643, + "value": "," + }, + { + "type": "whitespace", + "start": 27643, + "end": 27644, + "value": " " + }, + { + "type": "operator", + "start": 27644, + "end": 27645, + "value": "%" + }, + { + "type": "brace", + "start": 27645, + "end": 27646, + "value": ")" + }, + { + "type": "whitespace", + "start": 27646, + "end": 27649, + "value": "\n " + }, + { + "type": "operator", + "start": 27649, + "end": 27651, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27651, + "end": 27652, + "value": " " + }, + { + "type": "word", + "start": 27652, + "end": 27656, + "value": "line" + }, + { + "type": "brace", + "start": 27656, + "end": 27657, + "value": "(" + }, + { + "type": "brace", + "start": 27657, + "end": 27658, + "value": "[" + }, + { + "type": "whitespace", + "start": 27658, + "end": 27666, + "value": "\n " + }, + { + "type": "operator", + "start": 27666, + "end": 27667, + "value": "-" + }, + { + "type": "number", + "start": 27667, + "end": 27685, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 27685, + "end": 27686, + "value": "," + }, + { + "type": "whitespace", + "start": 27686, + "end": 27694, + "value": "\n " + }, + { + "type": "number", + "start": 27694, + "end": 27713, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 27713, + "end": 27719, + "value": "\n " + }, + { + "type": "brace", + "start": 27719, + "end": 27720, + "value": "]" + }, + { + "type": "comma", + "start": 27720, + "end": 27721, + "value": "," + }, + { + "type": "whitespace", + "start": 27721, + "end": 27722, + "value": " " + }, + { + "type": "operator", + "start": 27722, + "end": 27723, + "value": "%" + }, + { + "type": "brace", + "start": 27723, + "end": 27724, + "value": ")" + }, + { + "type": "whitespace", + "start": 27724, + "end": 27727, + "value": "\n " + }, + { + "type": "operator", + "start": 27727, + "end": 27729, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27729, + "end": 27730, + "value": " " + }, + { + "type": "word", + "start": 27730, + "end": 27734, + "value": "line" + }, + { + "type": "brace", + "start": 27734, + "end": 27735, + "value": "(" + }, + { + "type": "brace", + "start": 27735, + "end": 27736, + "value": "[" + }, + { + "type": "whitespace", + "start": 27736, + "end": 27744, + "value": "\n " + }, + { + "type": "operator", + "start": 27744, + "end": 27745, + "value": "-" + }, + { + "type": "number", + "start": 27745, + "end": 27763, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 27763, + "end": 27764, + "value": "," + }, + { + "type": "whitespace", + "start": 27764, + "end": 27772, + "value": "\n " + }, + { + "type": "number", + "start": 27772, + "end": 27790, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 27790, + "end": 27796, + "value": "\n " + }, + { + "type": "brace", + "start": 27796, + "end": 27797, + "value": "]" + }, + { + "type": "comma", + "start": 27797, + "end": 27798, + "value": "," + }, + { + "type": "whitespace", + "start": 27798, + "end": 27799, + "value": " " + }, + { + "type": "operator", + "start": 27799, + "end": 27800, + "value": "%" + }, + { + "type": "brace", + "start": 27800, + "end": 27801, + "value": ")" + }, + { + "type": "whitespace", + "start": 27801, + "end": 27804, + "value": "\n " + }, + { + "type": "operator", + "start": 27804, + "end": 27806, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27806, + "end": 27807, + "value": " " + }, + { + "type": "word", + "start": 27807, + "end": 27811, + "value": "line" + }, + { + "type": "brace", + "start": 27811, + "end": 27812, + "value": "(" + }, + { + "type": "brace", + "start": 27812, + "end": 27813, + "value": "[" + }, + { + "type": "whitespace", + "start": 27813, + "end": 27821, + "value": "\n " + }, + { + "type": "operator", + "start": 27821, + "end": 27822, + "value": "-" + }, + { + "type": "number", + "start": 27822, + "end": 27840, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 27840, + "end": 27841, + "value": "," + }, + { + "type": "whitespace", + "start": 27841, + "end": 27849, + "value": "\n " + }, + { + "type": "number", + "start": 27849, + "end": 27867, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 27867, + "end": 27873, + "value": "\n " + }, + { + "type": "brace", + "start": 27873, + "end": 27874, + "value": "]" + }, + { + "type": "comma", + "start": 27874, + "end": 27875, + "value": "," + }, + { + "type": "whitespace", + "start": 27875, + "end": 27876, + "value": " " + }, + { + "type": "operator", + "start": 27876, + "end": 27877, + "value": "%" + }, + { + "type": "brace", + "start": 27877, + "end": 27878, + "value": ")" + }, + { + "type": "whitespace", + "start": 27878, + "end": 27881, + "value": "\n " + }, + { + "type": "operator", + "start": 27881, + "end": 27883, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27883, + "end": 27884, + "value": " " + }, + { + "type": "word", + "start": 27884, + "end": 27888, + "value": "line" + }, + { + "type": "brace", + "start": 27888, + "end": 27889, + "value": "(" + }, + { + "type": "brace", + "start": 27889, + "end": 27890, + "value": "[" + }, + { + "type": "whitespace", + "start": 27890, + "end": 27898, + "value": "\n " + }, + { + "type": "operator", + "start": 27898, + "end": 27899, + "value": "-" + }, + { + "type": "number", + "start": 27899, + "end": 27917, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 27917, + "end": 27918, + "value": "," + }, + { + "type": "whitespace", + "start": 27918, + "end": 27926, + "value": "\n " + }, + { + "type": "operator", + "start": 27926, + "end": 27927, + "value": "-" + }, + { + "type": "number", + "start": 27927, + "end": 27946, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 27946, + "end": 27952, + "value": "\n " + }, + { + "type": "brace", + "start": 27952, + "end": 27953, + "value": "]" + }, + { + "type": "comma", + "start": 27953, + "end": 27954, + "value": "," + }, + { + "type": "whitespace", + "start": 27954, + "end": 27955, + "value": " " + }, + { + "type": "operator", + "start": 27955, + "end": 27956, + "value": "%" + }, + { + "type": "brace", + "start": 27956, + "end": 27957, + "value": ")" + }, + { + "type": "whitespace", + "start": 27957, + "end": 27960, + "value": "\n " + }, + { + "type": "operator", + "start": 27960, + "end": 27962, + "value": "|>" + }, + { + "type": "whitespace", + "start": 27962, + "end": 27963, + "value": " " + }, + { + "type": "word", + "start": 27963, + "end": 27967, + "value": "line" + }, + { + "type": "brace", + "start": 27967, + "end": 27968, + "value": "(" + }, + { + "type": "brace", + "start": 27968, + "end": 27969, + "value": "[" + }, + { + "type": "whitespace", + "start": 27969, + "end": 27977, + "value": "\n " + }, + { + "type": "number", + "start": 27977, + "end": 27996, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 27996, + "end": 27997, + "value": "," + }, + { + "type": "whitespace", + "start": 27997, + "end": 28005, + "value": "\n " + }, + { + "type": "number", + "start": 28005, + "end": 28024, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 28024, + "end": 28030, + "value": "\n " + }, + { + "type": "brace", + "start": 28030, + "end": 28031, + "value": "]" + }, + { + "type": "comma", + "start": 28031, + "end": 28032, + "value": "," + }, + { + "type": "whitespace", + "start": 28032, + "end": 28033, + "value": " " + }, + { + "type": "operator", + "start": 28033, + "end": 28034, + "value": "%" + }, + { + "type": "brace", + "start": 28034, + "end": 28035, + "value": ")" + }, + { + "type": "whitespace", + "start": 28035, + "end": 28038, + "value": "\n " + }, + { + "type": "operator", + "start": 28038, + "end": 28040, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28040, + "end": 28041, + "value": " " + }, + { + "type": "word", + "start": 28041, + "end": 28045, + "value": "line" + }, + { + "type": "brace", + "start": 28045, + "end": 28046, + "value": "(" + }, + { + "type": "brace", + "start": 28046, + "end": 28047, + "value": "[" + }, + { + "type": "whitespace", + "start": 28047, + "end": 28055, + "value": "\n " + }, + { + "type": "number", + "start": 28055, + "end": 28074, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 28074, + "end": 28075, + "value": "," + }, + { + "type": "whitespace", + "start": 28075, + "end": 28083, + "value": "\n " + }, + { + "type": "number", + "start": 28083, + "end": 28102, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 28102, + "end": 28108, + "value": "\n " + }, + { + "type": "brace", + "start": 28108, + "end": 28109, + "value": "]" + }, + { + "type": "comma", + "start": 28109, + "end": 28110, + "value": "," + }, + { + "type": "whitespace", + "start": 28110, + "end": 28111, + "value": " " + }, + { + "type": "operator", + "start": 28111, + "end": 28112, + "value": "%" + }, + { + "type": "brace", + "start": 28112, + "end": 28113, + "value": ")" + }, + { + "type": "whitespace", + "start": 28113, + "end": 28116, + "value": "\n " + }, + { + "type": "operator", + "start": 28116, + "end": 28118, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28118, + "end": 28119, + "value": " " + }, + { + "type": "word", + "start": 28119, + "end": 28123, + "value": "line" + }, + { + "type": "brace", + "start": 28123, + "end": 28124, + "value": "(" + }, + { + "type": "brace", + "start": 28124, + "end": 28125, + "value": "[" + }, + { + "type": "whitespace", + "start": 28125, + "end": 28133, + "value": "\n " + }, + { + "type": "operator", + "start": 28133, + "end": 28134, + "value": "-" + }, + { + "type": "number", + "start": 28134, + "end": 28153, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 28153, + "end": 28154, + "value": "," + }, + { + "type": "whitespace", + "start": 28154, + "end": 28162, + "value": "\n " + }, + { + "type": "number", + "start": 28162, + "end": 28180, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 28180, + "end": 28186, + "value": "\n " + }, + { + "type": "brace", + "start": 28186, + "end": 28187, + "value": "]" + }, + { + "type": "comma", + "start": 28187, + "end": 28188, + "value": "," + }, + { + "type": "whitespace", + "start": 28188, + "end": 28189, + "value": " " + }, + { + "type": "operator", + "start": 28189, + "end": 28190, + "value": "%" + }, + { + "type": "brace", + "start": 28190, + "end": 28191, + "value": ")" + }, + { + "type": "whitespace", + "start": 28191, + "end": 28194, + "value": "\n " + }, + { + "type": "operator", + "start": 28194, + "end": 28196, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28196, + "end": 28197, + "value": " " + }, + { + "type": "word", + "start": 28197, + "end": 28201, + "value": "line" + }, + { + "type": "brace", + "start": 28201, + "end": 28202, + "value": "(" + }, + { + "type": "brace", + "start": 28202, + "end": 28203, + "value": "[" + }, + { + "type": "whitespace", + "start": 28203, + "end": 28211, + "value": "\n " + }, + { + "type": "operator", + "start": 28211, + "end": 28212, + "value": "-" + }, + { + "type": "number", + "start": 28212, + "end": 28231, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 28231, + "end": 28232, + "value": "," + }, + { + "type": "whitespace", + "start": 28232, + "end": 28240, + "value": "\n " + }, + { + "type": "operator", + "start": 28240, + "end": 28241, + "value": "-" + }, + { + "type": "number", + "start": 28241, + "end": 28260, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 28260, + "end": 28266, + "value": "\n " + }, + { + "type": "brace", + "start": 28266, + "end": 28267, + "value": "]" + }, + { + "type": "comma", + "start": 28267, + "end": 28268, + "value": "," + }, + { + "type": "whitespace", + "start": 28268, + "end": 28269, + "value": " " + }, + { + "type": "operator", + "start": 28269, + "end": 28270, + "value": "%" + }, + { + "type": "brace", + "start": 28270, + "end": 28271, + "value": ")" + }, + { + "type": "whitespace", + "start": 28271, + "end": 28274, + "value": "\n " + }, + { + "type": "operator", + "start": 28274, + "end": 28276, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28276, + "end": 28277, + "value": " " + }, + { + "type": "word", + "start": 28277, + "end": 28281, + "value": "line" + }, + { + "type": "brace", + "start": 28281, + "end": 28282, + "value": "(" + }, + { + "type": "brace", + "start": 28282, + "end": 28283, + "value": "[" + }, + { + "type": "whitespace", + "start": 28283, + "end": 28291, + "value": "\n " + }, + { + "type": "number", + "start": 28291, + "end": 28309, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 28309, + "end": 28310, + "value": "," + }, + { + "type": "whitespace", + "start": 28310, + "end": 28318, + "value": "\n " + }, + { + "type": "operator", + "start": 28318, + "end": 28319, + "value": "-" + }, + { + "type": "number", + "start": 28319, + "end": 28338, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 28338, + "end": 28344, + "value": "\n " + }, + { + "type": "brace", + "start": 28344, + "end": 28345, + "value": "]" + }, + { + "type": "comma", + "start": 28345, + "end": 28346, + "value": "," + }, + { + "type": "whitespace", + "start": 28346, + "end": 28347, + "value": " " + }, + { + "type": "operator", + "start": 28347, + "end": 28348, + "value": "%" + }, + { + "type": "brace", + "start": 28348, + "end": 28349, + "value": ")" + }, + { + "type": "whitespace", + "start": 28349, + "end": 28352, + "value": "\n " + }, + { + "type": "operator", + "start": 28352, + "end": 28354, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28354, + "end": 28355, + "value": " " + }, + { + "type": "word", + "start": 28355, + "end": 28359, + "value": "line" + }, + { + "type": "brace", + "start": 28359, + "end": 28360, + "value": "(" + }, + { + "type": "brace", + "start": 28360, + "end": 28361, + "value": "[" + }, + { + "type": "whitespace", + "start": 28361, + "end": 28369, + "value": "\n " + }, + { + "type": "number", + "start": 28369, + "end": 28390, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 28390, + "end": 28391, + "value": "," + }, + { + "type": "whitespace", + "start": 28391, + "end": 28399, + "value": "\n " + }, + { + "type": "operator", + "start": 28399, + "end": 28400, + "value": "-" + }, + { + "type": "number", + "start": 28400, + "end": 28418, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 28418, + "end": 28424, + "value": "\n " + }, + { + "type": "brace", + "start": 28424, + "end": 28425, + "value": "]" + }, + { + "type": "comma", + "start": 28425, + "end": 28426, + "value": "," + }, + { + "type": "whitespace", + "start": 28426, + "end": 28427, + "value": " " + }, + { + "type": "operator", + "start": 28427, + "end": 28428, + "value": "%" + }, + { + "type": "brace", + "start": 28428, + "end": 28429, + "value": ")" + }, + { + "type": "whitespace", + "start": 28429, + "end": 28432, + "value": "\n " + }, + { + "type": "operator", + "start": 28432, + "end": 28434, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28434, + "end": 28435, + "value": " " + }, + { + "type": "word", + "start": 28435, + "end": 28439, + "value": "line" + }, + { + "type": "brace", + "start": 28439, + "end": 28440, + "value": "(" + }, + { + "type": "brace", + "start": 28440, + "end": 28441, + "value": "[" + }, + { + "type": "whitespace", + "start": 28441, + "end": 28449, + "value": "\n " + }, + { + "type": "number", + "start": 28449, + "end": 28467, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 28467, + "end": 28468, + "value": "," + }, + { + "type": "whitespace", + "start": 28468, + "end": 28476, + "value": "\n " + }, + { + "type": "operator", + "start": 28476, + "end": 28477, + "value": "-" + }, + { + "type": "number", + "start": 28477, + "end": 28495, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 28495, + "end": 28501, + "value": "\n " + }, + { + "type": "brace", + "start": 28501, + "end": 28502, + "value": "]" + }, + { + "type": "comma", + "start": 28502, + "end": 28503, + "value": "," + }, + { + "type": "whitespace", + "start": 28503, + "end": 28504, + "value": " " + }, + { + "type": "operator", + "start": 28504, + "end": 28505, + "value": "%" + }, + { + "type": "brace", + "start": 28505, + "end": 28506, + "value": ")" + }, + { + "type": "whitespace", + "start": 28506, + "end": 28509, + "value": "\n " + }, + { + "type": "operator", + "start": 28509, + "end": 28511, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28511, + "end": 28512, + "value": " " + }, + { + "type": "word", + "start": 28512, + "end": 28516, + "value": "line" + }, + { + "type": "brace", + "start": 28516, + "end": 28517, + "value": "(" + }, + { + "type": "brace", + "start": 28517, + "end": 28518, + "value": "[" + }, + { + "type": "whitespace", + "start": 28518, + "end": 28526, + "value": "\n " + }, + { + "type": "operator", + "start": 28526, + "end": 28527, + "value": "-" + }, + { + "type": "number", + "start": 28527, + "end": 28545, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 28545, + "end": 28546, + "value": "," + }, + { + "type": "whitespace", + "start": 28546, + "end": 28554, + "value": "\n " + }, + { + "type": "number", + "start": 28554, + "end": 28572, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 28572, + "end": 28578, + "value": "\n " + }, + { + "type": "brace", + "start": 28578, + "end": 28579, + "value": "]" + }, + { + "type": "comma", + "start": 28579, + "end": 28580, + "value": "," + }, + { + "type": "whitespace", + "start": 28580, + "end": 28581, + "value": " " + }, + { + "type": "operator", + "start": 28581, + "end": 28582, + "value": "%" + }, + { + "type": "brace", + "start": 28582, + "end": 28583, + "value": ")" + }, + { + "type": "whitespace", + "start": 28583, + "end": 28586, + "value": "\n " + }, + { + "type": "operator", + "start": 28586, + "end": 28588, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28588, + "end": 28589, + "value": " " + }, + { + "type": "word", + "start": 28589, + "end": 28593, + "value": "line" + }, + { + "type": "brace", + "start": 28593, + "end": 28594, + "value": "(" + }, + { + "type": "brace", + "start": 28594, + "end": 28595, + "value": "[" + }, + { + "type": "number", + "start": 28595, + "end": 28613, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 28613, + "end": 28614, + "value": "," + }, + { + "type": "whitespace", + "start": 28614, + "end": 28615, + "value": " " + }, + { + "type": "number", + "start": 28615, + "end": 28633, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 28633, + "end": 28634, + "value": "]" + }, + { + "type": "comma", + "start": 28634, + "end": 28635, + "value": "," + }, + { + "type": "whitespace", + "start": 28635, + "end": 28636, + "value": " " + }, + { + "type": "operator", + "start": 28636, + "end": 28637, + "value": "%" + }, + { + "type": "brace", + "start": 28637, + "end": 28638, + "value": ")" + }, + { + "type": "whitespace", + "start": 28638, + "end": 28641, + "value": "\n " + }, + { + "type": "operator", + "start": 28641, + "end": 28643, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28643, + "end": 28644, + "value": " " + }, + { + "type": "word", + "start": 28644, + "end": 28648, + "value": "line" + }, + { + "type": "brace", + "start": 28648, + "end": 28649, + "value": "(" + }, + { + "type": "brace", + "start": 28649, + "end": 28650, + "value": "[" + }, + { + "type": "whitespace", + "start": 28650, + "end": 28658, + "value": "\n " + }, + { + "type": "operator", + "start": 28658, + "end": 28659, + "value": "-" + }, + { + "type": "number", + "start": 28659, + "end": 28678, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 28678, + "end": 28679, + "value": "," + }, + { + "type": "whitespace", + "start": 28679, + "end": 28687, + "value": "\n " + }, + { + "type": "number", + "start": 28687, + "end": 28707, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 28707, + "end": 28713, + "value": "\n " + }, + { + "type": "brace", + "start": 28713, + "end": 28714, + "value": "]" + }, + { + "type": "comma", + "start": 28714, + "end": 28715, + "value": "," + }, + { + "type": "whitespace", + "start": 28715, + "end": 28716, + "value": " " + }, + { + "type": "operator", + "start": 28716, + "end": 28717, + "value": "%" + }, + { + "type": "brace", + "start": 28717, + "end": 28718, + "value": ")" + }, + { + "type": "whitespace", + "start": 28718, + "end": 28721, + "value": "\n " + }, + { + "type": "operator", + "start": 28721, + "end": 28723, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28723, + "end": 28724, + "value": " " + }, + { + "type": "word", + "start": 28724, + "end": 28728, + "value": "line" + }, + { + "type": "brace", + "start": 28728, + "end": 28729, + "value": "(" + }, + { + "type": "brace", + "start": 28729, + "end": 28730, + "value": "[" + }, + { + "type": "whitespace", + "start": 28730, + "end": 28738, + "value": "\n " + }, + { + "type": "operator", + "start": 28738, + "end": 28739, + "value": "-" + }, + { + "type": "number", + "start": 28739, + "end": 28757, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 28757, + "end": 28758, + "value": "," + }, + { + "type": "whitespace", + "start": 28758, + "end": 28766, + "value": "\n " + }, + { + "type": "operator", + "start": 28766, + "end": 28767, + "value": "-" + }, + { + "type": "number", + "start": 28767, + "end": 28786, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 28786, + "end": 28792, + "value": "\n " + }, + { + "type": "brace", + "start": 28792, + "end": 28793, + "value": "]" + }, + { + "type": "comma", + "start": 28793, + "end": 28794, + "value": "," + }, + { + "type": "whitespace", + "start": 28794, + "end": 28795, + "value": " " + }, + { + "type": "operator", + "start": 28795, + "end": 28796, + "value": "%" + }, + { + "type": "brace", + "start": 28796, + "end": 28797, + "value": ")" + }, + { + "type": "whitespace", + "start": 28797, + "end": 28800, + "value": "\n " + }, + { + "type": "operator", + "start": 28800, + "end": 28802, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28802, + "end": 28803, + "value": " " + }, + { + "type": "word", + "start": 28803, + "end": 28807, + "value": "line" + }, + { + "type": "brace", + "start": 28807, + "end": 28808, + "value": "(" + }, + { + "type": "brace", + "start": 28808, + "end": 28809, + "value": "[" + }, + { + "type": "whitespace", + "start": 28809, + "end": 28817, + "value": "\n " + }, + { + "type": "operator", + "start": 28817, + "end": 28818, + "value": "-" + }, + { + "type": "number", + "start": 28818, + "end": 28836, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 28836, + "end": 28837, + "value": "," + }, + { + "type": "whitespace", + "start": 28837, + "end": 28845, + "value": "\n " + }, + { + "type": "operator", + "start": 28845, + "end": 28846, + "value": "-" + }, + { + "type": "number", + "start": 28846, + "end": 28865, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 28865, + "end": 28871, + "value": "\n " + }, + { + "type": "brace", + "start": 28871, + "end": 28872, + "value": "]" + }, + { + "type": "comma", + "start": 28872, + "end": 28873, + "value": "," + }, + { + "type": "whitespace", + "start": 28873, + "end": 28874, + "value": " " + }, + { + "type": "operator", + "start": 28874, + "end": 28875, + "value": "%" + }, + { + "type": "brace", + "start": 28875, + "end": 28876, + "value": ")" + }, + { + "type": "whitespace", + "start": 28876, + "end": 28879, + "value": "\n " + }, + { + "type": "operator", + "start": 28879, + "end": 28881, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28881, + "end": 28882, + "value": " " + }, + { + "type": "word", + "start": 28882, + "end": 28886, + "value": "line" + }, + { + "type": "brace", + "start": 28886, + "end": 28887, + "value": "(" + }, + { + "type": "brace", + "start": 28887, + "end": 28888, + "value": "[" + }, + { + "type": "number", + "start": 28888, + "end": 28905, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 28905, + "end": 28906, + "value": "," + }, + { + "type": "whitespace", + "start": 28906, + "end": 28907, + "value": " " + }, + { + "type": "number", + "start": 28907, + "end": 28925, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 28925, + "end": 28926, + "value": "]" + }, + { + "type": "comma", + "start": 28926, + "end": 28927, + "value": "," + }, + { + "type": "whitespace", + "start": 28927, + "end": 28928, + "value": " " + }, + { + "type": "operator", + "start": 28928, + "end": 28929, + "value": "%" + }, + { + "type": "brace", + "start": 28929, + "end": 28930, + "value": ")" + }, + { + "type": "whitespace", + "start": 28930, + "end": 28933, + "value": "\n " + }, + { + "type": "operator", + "start": 28933, + "end": 28935, + "value": "|>" + }, + { + "type": "whitespace", + "start": 28935, + "end": 28936, + "value": " " + }, + { + "type": "word", + "start": 28936, + "end": 28940, + "value": "line" + }, + { + "type": "brace", + "start": 28940, + "end": 28941, + "value": "(" + }, + { + "type": "brace", + "start": 28941, + "end": 28942, + "value": "[" + }, + { + "type": "whitespace", + "start": 28942, + "end": 28950, + "value": "\n " + }, + { + "type": "number", + "start": 28950, + "end": 28969, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 28969, + "end": 28970, + "value": "," + }, + { + "type": "whitespace", + "start": 28970, + "end": 28978, + "value": "\n " + }, + { + "type": "operator", + "start": 28978, + "end": 28979, + "value": "-" + }, + { + "type": "number", + "start": 28979, + "end": 28998, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 28998, + "end": 29004, + "value": "\n " + }, + { + "type": "brace", + "start": 29004, + "end": 29005, + "value": "]" + }, + { + "type": "comma", + "start": 29005, + "end": 29006, + "value": "," + }, + { + "type": "whitespace", + "start": 29006, + "end": 29007, + "value": " " + }, + { + "type": "operator", + "start": 29007, + "end": 29008, + "value": "%" + }, + { + "type": "brace", + "start": 29008, + "end": 29009, + "value": ")" + }, + { + "type": "whitespace", + "start": 29009, + "end": 29012, + "value": "\n " + }, + { + "type": "operator", + "start": 29012, + "end": 29014, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29014, + "end": 29015, + "value": " " + }, + { + "type": "word", + "start": 29015, + "end": 29019, + "value": "line" + }, + { + "type": "brace", + "start": 29019, + "end": 29020, + "value": "(" + }, + { + "type": "brace", + "start": 29020, + "end": 29021, + "value": "[" + }, + { + "type": "number", + "start": 29021, + "end": 29039, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 29039, + "end": 29040, + "value": "," + }, + { + "type": "whitespace", + "start": 29040, + "end": 29041, + "value": " " + }, + { + "type": "number", + "start": 29041, + "end": 29058, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 29058, + "end": 29059, + "value": "]" + }, + { + "type": "comma", + "start": 29059, + "end": 29060, + "value": "," + }, + { + "type": "whitespace", + "start": 29060, + "end": 29061, + "value": " " + }, + { + "type": "operator", + "start": 29061, + "end": 29062, + "value": "%" + }, + { + "type": "brace", + "start": 29062, + "end": 29063, + "value": ")" + }, + { + "type": "whitespace", + "start": 29063, + "end": 29066, + "value": "\n " + }, + { + "type": "operator", + "start": 29066, + "end": 29068, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29068, + "end": 29069, + "value": " " + }, + { + "type": "word", + "start": 29069, + "end": 29073, + "value": "line" + }, + { + "type": "brace", + "start": 29073, + "end": 29074, + "value": "(" + }, + { + "type": "brace", + "start": 29074, + "end": 29075, + "value": "[" + }, + { + "type": "whitespace", + "start": 29075, + "end": 29083, + "value": "\n " + }, + { + "type": "number", + "start": 29083, + "end": 29102, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 29102, + "end": 29103, + "value": "," + }, + { + "type": "whitespace", + "start": 29103, + "end": 29111, + "value": "\n " + }, + { + "type": "operator", + "start": 29111, + "end": 29112, + "value": "-" + }, + { + "type": "number", + "start": 29112, + "end": 29130, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 29130, + "end": 29136, + "value": "\n " + }, + { + "type": "brace", + "start": 29136, + "end": 29137, + "value": "]" + }, + { + "type": "comma", + "start": 29137, + "end": 29138, + "value": "," + }, + { + "type": "whitespace", + "start": 29138, + "end": 29139, + "value": " " + }, + { + "type": "operator", + "start": 29139, + "end": 29140, + "value": "%" + }, + { + "type": "brace", + "start": 29140, + "end": 29141, + "value": ")" + }, + { + "type": "whitespace", + "start": 29141, + "end": 29144, + "value": "\n " + }, + { + "type": "operator", + "start": 29144, + "end": 29146, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29146, + "end": 29147, + "value": " " + }, + { + "type": "word", + "start": 29147, + "end": 29151, + "value": "line" + }, + { + "type": "brace", + "start": 29151, + "end": 29152, + "value": "(" + }, + { + "type": "brace", + "start": 29152, + "end": 29153, + "value": "[" + }, + { + "type": "number", + "start": 29153, + "end": 29171, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 29171, + "end": 29172, + "value": "," + }, + { + "type": "whitespace", + "start": 29172, + "end": 29173, + "value": " " + }, + { + "type": "number", + "start": 29173, + "end": 29191, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 29191, + "end": 29192, + "value": "]" + }, + { + "type": "comma", + "start": 29192, + "end": 29193, + "value": "," + }, + { + "type": "whitespace", + "start": 29193, + "end": 29194, + "value": " " + }, + { + "type": "operator", + "start": 29194, + "end": 29195, + "value": "%" + }, + { + "type": "brace", + "start": 29195, + "end": 29196, + "value": ")" + }, + { + "type": "whitespace", + "start": 29196, + "end": 29199, + "value": "\n " + }, + { + "type": "operator", + "start": 29199, + "end": 29201, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29201, + "end": 29202, + "value": " " + }, + { + "type": "word", + "start": 29202, + "end": 29206, + "value": "line" + }, + { + "type": "brace", + "start": 29206, + "end": 29207, + "value": "(" + }, + { + "type": "brace", + "start": 29207, + "end": 29208, + "value": "[" + }, + { + "type": "whitespace", + "start": 29208, + "end": 29216, + "value": "\n " + }, + { + "type": "number", + "start": 29216, + "end": 29234, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 29234, + "end": 29235, + "value": "," + }, + { + "type": "whitespace", + "start": 29235, + "end": 29243, + "value": "\n " + }, + { + "type": "number", + "start": 29243, + "end": 29262, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 29262, + "end": 29268, + "value": "\n " + }, + { + "type": "brace", + "start": 29268, + "end": 29269, + "value": "]" + }, + { + "type": "comma", + "start": 29269, + "end": 29270, + "value": "," + }, + { + "type": "whitespace", + "start": 29270, + "end": 29271, + "value": " " + }, + { + "type": "operator", + "start": 29271, + "end": 29272, + "value": "%" + }, + { + "type": "brace", + "start": 29272, + "end": 29273, + "value": ")" + }, + { + "type": "whitespace", + "start": 29273, + "end": 29276, + "value": "\n " + }, + { + "type": "operator", + "start": 29276, + "end": 29278, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29278, + "end": 29279, + "value": " " + }, + { + "type": "word", + "start": 29279, + "end": 29283, + "value": "line" + }, + { + "type": "brace", + "start": 29283, + "end": 29284, + "value": "(" + }, + { + "type": "brace", + "start": 29284, + "end": 29285, + "value": "[" + }, + { + "type": "number", + "start": 29285, + "end": 29303, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 29303, + "end": 29304, + "value": "," + }, + { + "type": "whitespace", + "start": 29304, + "end": 29305, + "value": " " + }, + { + "type": "number", + "start": 29305, + "end": 29323, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 29323, + "end": 29324, + "value": "]" + }, + { + "type": "comma", + "start": 29324, + "end": 29325, + "value": "," + }, + { + "type": "whitespace", + "start": 29325, + "end": 29326, + "value": " " + }, + { + "type": "operator", + "start": 29326, + "end": 29327, + "value": "%" + }, + { + "type": "brace", + "start": 29327, + "end": 29328, + "value": ")" + }, + { + "type": "whitespace", + "start": 29328, + "end": 29331, + "value": "\n " + }, + { + "type": "operator", + "start": 29331, + "end": 29333, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29333, + "end": 29334, + "value": " " + }, + { + "type": "word", + "start": 29334, + "end": 29338, + "value": "line" + }, + { + "type": "brace", + "start": 29338, + "end": 29339, + "value": "(" + }, + { + "type": "brace", + "start": 29339, + "end": 29340, + "value": "[" + }, + { + "type": "whitespace", + "start": 29340, + "end": 29348, + "value": "\n " + }, + { + "type": "operator", + "start": 29348, + "end": 29349, + "value": "-" + }, + { + "type": "number", + "start": 29349, + "end": 29368, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 29368, + "end": 29369, + "value": "," + }, + { + "type": "whitespace", + "start": 29369, + "end": 29377, + "value": "\n " + }, + { + "type": "operator", + "start": 29377, + "end": 29378, + "value": "-" + }, + { + "type": "number", + "start": 29378, + "end": 29396, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 29396, + "end": 29402, + "value": "\n " + }, + { + "type": "brace", + "start": 29402, + "end": 29403, + "value": "]" + }, + { + "type": "comma", + "start": 29403, + "end": 29404, + "value": "," + }, + { + "type": "whitespace", + "start": 29404, + "end": 29405, + "value": " " + }, + { + "type": "operator", + "start": 29405, + "end": 29406, + "value": "%" + }, + { + "type": "brace", + "start": 29406, + "end": 29407, + "value": ")" + }, + { + "type": "whitespace", + "start": 29407, + "end": 29410, + "value": "\n " + }, + { + "type": "operator", + "start": 29410, + "end": 29412, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29412, + "end": 29413, + "value": " " + }, + { + "type": "word", + "start": 29413, + "end": 29417, + "value": "line" + }, + { + "type": "brace", + "start": 29417, + "end": 29418, + "value": "(" + }, + { + "type": "brace", + "start": 29418, + "end": 29419, + "value": "[" + }, + { + "type": "whitespace", + "start": 29419, + "end": 29427, + "value": "\n " + }, + { + "type": "number", + "start": 29427, + "end": 29445, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 29445, + "end": 29446, + "value": "," + }, + { + "type": "whitespace", + "start": 29446, + "end": 29454, + "value": "\n " + }, + { + "type": "operator", + "start": 29454, + "end": 29455, + "value": "-" + }, + { + "type": "number", + "start": 29455, + "end": 29473, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 29473, + "end": 29479, + "value": "\n " + }, + { + "type": "brace", + "start": 29479, + "end": 29480, + "value": "]" + }, + { + "type": "comma", + "start": 29480, + "end": 29481, + "value": "," + }, + { + "type": "whitespace", + "start": 29481, + "end": 29482, + "value": " " + }, + { + "type": "operator", + "start": 29482, + "end": 29483, + "value": "%" + }, + { + "type": "brace", + "start": 29483, + "end": 29484, + "value": ")" + }, + { + "type": "whitespace", + "start": 29484, + "end": 29487, + "value": "\n " + }, + { + "type": "operator", + "start": 29487, + "end": 29489, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29489, + "end": 29490, + "value": " " + }, + { + "type": "word", + "start": 29490, + "end": 29494, + "value": "line" + }, + { + "type": "brace", + "start": 29494, + "end": 29495, + "value": "(" + }, + { + "type": "brace", + "start": 29495, + "end": 29496, + "value": "[" + }, + { + "type": "whitespace", + "start": 29496, + "end": 29504, + "value": "\n " + }, + { + "type": "operator", + "start": 29504, + "end": 29505, + "value": "-" + }, + { + "type": "number", + "start": 29505, + "end": 29523, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 29523, + "end": 29524, + "value": "," + }, + { + "type": "whitespace", + "start": 29524, + "end": 29532, + "value": "\n " + }, + { + "type": "operator", + "start": 29532, + "end": 29533, + "value": "-" + }, + { + "type": "number", + "start": 29533, + "end": 29551, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 29551, + "end": 29557, + "value": "\n " + }, + { + "type": "brace", + "start": 29557, + "end": 29558, + "value": "]" + }, + { + "type": "comma", + "start": 29558, + "end": 29559, + "value": "," + }, + { + "type": "whitespace", + "start": 29559, + "end": 29560, + "value": " " + }, + { + "type": "operator", + "start": 29560, + "end": 29561, + "value": "%" + }, + { + "type": "brace", + "start": 29561, + "end": 29562, + "value": ")" + }, + { + "type": "whitespace", + "start": 29562, + "end": 29565, + "value": "\n " + }, + { + "type": "operator", + "start": 29565, + "end": 29567, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29567, + "end": 29568, + "value": " " + }, + { + "type": "word", + "start": 29568, + "end": 29572, + "value": "line" + }, + { + "type": "brace", + "start": 29572, + "end": 29573, + "value": "(" + }, + { + "type": "brace", + "start": 29573, + "end": 29574, + "value": "[" + }, + { + "type": "whitespace", + "start": 29574, + "end": 29582, + "value": "\n " + }, + { + "type": "number", + "start": 29582, + "end": 29602, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 29602, + "end": 29603, + "value": "," + }, + { + "type": "whitespace", + "start": 29603, + "end": 29611, + "value": "\n " + }, + { + "type": "operator", + "start": 29611, + "end": 29612, + "value": "-" + }, + { + "type": "number", + "start": 29612, + "end": 29631, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 29631, + "end": 29637, + "value": "\n " + }, + { + "type": "brace", + "start": 29637, + "end": 29638, + "value": "]" + }, + { + "type": "comma", + "start": 29638, + "end": 29639, + "value": "," + }, + { + "type": "whitespace", + "start": 29639, + "end": 29640, + "value": " " + }, + { + "type": "operator", + "start": 29640, + "end": 29641, + "value": "%" + }, + { + "type": "brace", + "start": 29641, + "end": 29642, + "value": ")" + }, + { + "type": "whitespace", + "start": 29642, + "end": 29645, + "value": "\n " + }, + { + "type": "operator", + "start": 29645, + "end": 29647, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29647, + "end": 29648, + "value": " " + }, + { + "type": "word", + "start": 29648, + "end": 29652, + "value": "line" + }, + { + "type": "brace", + "start": 29652, + "end": 29653, + "value": "(" + }, + { + "type": "brace", + "start": 29653, + "end": 29654, + "value": "[" + }, + { + "type": "whitespace", + "start": 29654, + "end": 29662, + "value": "\n " + }, + { + "type": "number", + "start": 29662, + "end": 29681, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 29681, + "end": 29682, + "value": "," + }, + { + "type": "whitespace", + "start": 29682, + "end": 29690, + "value": "\n " + }, + { + "type": "operator", + "start": 29690, + "end": 29691, + "value": "-" + }, + { + "type": "number", + "start": 29691, + "end": 29710, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 29710, + "end": 29716, + "value": "\n " + }, + { + "type": "brace", + "start": 29716, + "end": 29717, + "value": "]" + }, + { + "type": "comma", + "start": 29717, + "end": 29718, + "value": "," + }, + { + "type": "whitespace", + "start": 29718, + "end": 29719, + "value": " " + }, + { + "type": "operator", + "start": 29719, + "end": 29720, + "value": "%" + }, + { + "type": "brace", + "start": 29720, + "end": 29721, + "value": ")" + }, + { + "type": "whitespace", + "start": 29721, + "end": 29724, + "value": "\n " + }, + { + "type": "operator", + "start": 29724, + "end": 29726, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29726, + "end": 29727, + "value": " " + }, + { + "type": "word", + "start": 29727, + "end": 29731, + "value": "line" + }, + { + "type": "brace", + "start": 29731, + "end": 29732, + "value": "(" + }, + { + "type": "brace", + "start": 29732, + "end": 29733, + "value": "[" + }, + { + "type": "whitespace", + "start": 29733, + "end": 29741, + "value": "\n " + }, + { + "type": "number", + "start": 29741, + "end": 29759, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 29759, + "end": 29760, + "value": "," + }, + { + "type": "whitespace", + "start": 29760, + "end": 29768, + "value": "\n " + }, + { + "type": "operator", + "start": 29768, + "end": 29769, + "value": "-" + }, + { + "type": "number", + "start": 29769, + "end": 29788, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 29788, + "end": 29794, + "value": "\n " + }, + { + "type": "brace", + "start": 29794, + "end": 29795, + "value": "]" + }, + { + "type": "comma", + "start": 29795, + "end": 29796, + "value": "," + }, + { + "type": "whitespace", + "start": 29796, + "end": 29797, + "value": " " + }, + { + "type": "operator", + "start": 29797, + "end": 29798, + "value": "%" + }, + { + "type": "brace", + "start": 29798, + "end": 29799, + "value": ")" + }, + { + "type": "whitespace", + "start": 29799, + "end": 29802, + "value": "\n " + }, + { + "type": "operator", + "start": 29802, + "end": 29804, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29804, + "end": 29805, + "value": " " + }, + { + "type": "word", + "start": 29805, + "end": 29809, + "value": "line" + }, + { + "type": "brace", + "start": 29809, + "end": 29810, + "value": "(" + }, + { + "type": "brace", + "start": 29810, + "end": 29811, + "value": "[" + }, + { + "type": "whitespace", + "start": 29811, + "end": 29819, + "value": "\n " + }, + { + "type": "operator", + "start": 29819, + "end": 29820, + "value": "-" + }, + { + "type": "number", + "start": 29820, + "end": 29838, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 29838, + "end": 29839, + "value": "," + }, + { + "type": "whitespace", + "start": 29839, + "end": 29847, + "value": "\n " + }, + { + "type": "operator", + "start": 29847, + "end": 29848, + "value": "-" + }, + { + "type": "number", + "start": 29848, + "end": 29866, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 29866, + "end": 29872, + "value": "\n " + }, + { + "type": "brace", + "start": 29872, + "end": 29873, + "value": "]" + }, + { + "type": "comma", + "start": 29873, + "end": 29874, + "value": "," + }, + { + "type": "whitespace", + "start": 29874, + "end": 29875, + "value": " " + }, + { + "type": "operator", + "start": 29875, + "end": 29876, + "value": "%" + }, + { + "type": "brace", + "start": 29876, + "end": 29877, + "value": ")" + }, + { + "type": "whitespace", + "start": 29877, + "end": 29880, + "value": "\n " + }, + { + "type": "operator", + "start": 29880, + "end": 29882, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29882, + "end": 29883, + "value": " " + }, + { + "type": "word", + "start": 29883, + "end": 29887, + "value": "line" + }, + { + "type": "brace", + "start": 29887, + "end": 29888, + "value": "(" + }, + { + "type": "brace", + "start": 29888, + "end": 29889, + "value": "[" + }, + { + "type": "number", + "start": 29889, + "end": 29907, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 29907, + "end": 29908, + "value": "," + }, + { + "type": "whitespace", + "start": 29908, + "end": 29909, + "value": " " + }, + { + "type": "number", + "start": 29909, + "end": 29927, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 29927, + "end": 29928, + "value": "]" + }, + { + "type": "comma", + "start": 29928, + "end": 29929, + "value": "," + }, + { + "type": "whitespace", + "start": 29929, + "end": 29930, + "value": " " + }, + { + "type": "operator", + "start": 29930, + "end": 29931, + "value": "%" + }, + { + "type": "brace", + "start": 29931, + "end": 29932, + "value": ")" + }, + { + "type": "whitespace", + "start": 29932, + "end": 29935, + "value": "\n " + }, + { + "type": "operator", + "start": 29935, + "end": 29937, + "value": "|>" + }, + { + "type": "whitespace", + "start": 29937, + "end": 29938, + "value": " " + }, + { + "type": "word", + "start": 29938, + "end": 29942, + "value": "line" + }, + { + "type": "brace", + "start": 29942, + "end": 29943, + "value": "(" + }, + { + "type": "brace", + "start": 29943, + "end": 29944, + "value": "[" + }, + { + "type": "whitespace", + "start": 29944, + "end": 29952, + "value": "\n " + }, + { + "type": "number", + "start": 29952, + "end": 29970, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 29970, + "end": 29971, + "value": "," + }, + { + "type": "whitespace", + "start": 29971, + "end": 29979, + "value": "\n " + }, + { + "type": "number", + "start": 29979, + "end": 29998, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 29998, + "end": 30004, + "value": "\n " + }, + { + "type": "brace", + "start": 30004, + "end": 30005, + "value": "]" + }, + { + "type": "comma", + "start": 30005, + "end": 30006, + "value": "," + }, + { + "type": "whitespace", + "start": 30006, + "end": 30007, + "value": " " + }, + { + "type": "operator", + "start": 30007, + "end": 30008, + "value": "%" + }, + { + "type": "brace", + "start": 30008, + "end": 30009, + "value": ")" + }, + { + "type": "whitespace", + "start": 30009, + "end": 30012, + "value": "\n " + }, + { + "type": "operator", + "start": 30012, + "end": 30014, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30014, + "end": 30015, + "value": " " + }, + { + "type": "word", + "start": 30015, + "end": 30019, + "value": "line" + }, + { + "type": "brace", + "start": 30019, + "end": 30020, + "value": "(" + }, + { + "type": "brace", + "start": 30020, + "end": 30021, + "value": "[" + }, + { + "type": "whitespace", + "start": 30021, + "end": 30029, + "value": "\n " + }, + { + "type": "operator", + "start": 30029, + "end": 30030, + "value": "-" + }, + { + "type": "number", + "start": 30030, + "end": 30049, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 30049, + "end": 30050, + "value": "," + }, + { + "type": "whitespace", + "start": 30050, + "end": 30058, + "value": "\n " + }, + { + "type": "number", + "start": 30058, + "end": 30076, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 30076, + "end": 30082, + "value": "\n " + }, + { + "type": "brace", + "start": 30082, + "end": 30083, + "value": "]" + }, + { + "type": "comma", + "start": 30083, + "end": 30084, + "value": "," + }, + { + "type": "whitespace", + "start": 30084, + "end": 30085, + "value": " " + }, + { + "type": "operator", + "start": 30085, + "end": 30086, + "value": "%" + }, + { + "type": "brace", + "start": 30086, + "end": 30087, + "value": ")" + }, + { + "type": "whitespace", + "start": 30087, + "end": 30090, + "value": "\n " + }, + { + "type": "operator", + "start": 30090, + "end": 30092, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30092, + "end": 30093, + "value": " " + }, + { + "type": "word", + "start": 30093, + "end": 30097, + "value": "line" + }, + { + "type": "brace", + "start": 30097, + "end": 30098, + "value": "(" + }, + { + "type": "brace", + "start": 30098, + "end": 30099, + "value": "[" + }, + { + "type": "whitespace", + "start": 30099, + "end": 30107, + "value": "\n " + }, + { + "type": "operator", + "start": 30107, + "end": 30108, + "value": "-" + }, + { + "type": "number", + "start": 30108, + "end": 30127, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 30127, + "end": 30128, + "value": "," + }, + { + "type": "whitespace", + "start": 30128, + "end": 30136, + "value": "\n " + }, + { + "type": "operator", + "start": 30136, + "end": 30137, + "value": "-" + }, + { + "type": "number", + "start": 30137, + "end": 30156, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 30156, + "end": 30162, + "value": "\n " + }, + { + "type": "brace", + "start": 30162, + "end": 30163, + "value": "]" + }, + { + "type": "comma", + "start": 30163, + "end": 30164, + "value": "," + }, + { + "type": "whitespace", + "start": 30164, + "end": 30165, + "value": " " + }, + { + "type": "operator", + "start": 30165, + "end": 30166, + "value": "%" + }, + { + "type": "brace", + "start": 30166, + "end": 30167, + "value": ")" + }, + { + "type": "whitespace", + "start": 30167, + "end": 30170, + "value": "\n " + }, + { + "type": "operator", + "start": 30170, + "end": 30172, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30172, + "end": 30173, + "value": " " + }, + { + "type": "word", + "start": 30173, + "end": 30177, + "value": "line" + }, + { + "type": "brace", + "start": 30177, + "end": 30178, + "value": "(" + }, + { + "type": "brace", + "start": 30178, + "end": 30179, + "value": "[" + }, + { + "type": "whitespace", + "start": 30179, + "end": 30187, + "value": "\n " + }, + { + "type": "number", + "start": 30187, + "end": 30206, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 30206, + "end": 30207, + "value": "," + }, + { + "type": "whitespace", + "start": 30207, + "end": 30215, + "value": "\n " + }, + { + "type": "operator", + "start": 30215, + "end": 30216, + "value": "-" + }, + { + "type": "number", + "start": 30216, + "end": 30234, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 30234, + "end": 30240, + "value": "\n " + }, + { + "type": "brace", + "start": 30240, + "end": 30241, + "value": "]" + }, + { + "type": "comma", + "start": 30241, + "end": 30242, + "value": "," + }, + { + "type": "whitespace", + "start": 30242, + "end": 30243, + "value": " " + }, + { + "type": "operator", + "start": 30243, + "end": 30244, + "value": "%" + }, + { + "type": "brace", + "start": 30244, + "end": 30245, + "value": ")" + }, + { + "type": "whitespace", + "start": 30245, + "end": 30248, + "value": "\n " + }, + { + "type": "operator", + "start": 30248, + "end": 30250, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30250, + "end": 30251, + "value": " " + }, + { + "type": "word", + "start": 30251, + "end": 30255, + "value": "line" + }, + { + "type": "brace", + "start": 30255, + "end": 30256, + "value": "(" + }, + { + "type": "brace", + "start": 30256, + "end": 30257, + "value": "[" + }, + { + "type": "whitespace", + "start": 30257, + "end": 30265, + "value": "\n " + }, + { + "type": "operator", + "start": 30265, + "end": 30266, + "value": "-" + }, + { + "type": "number", + "start": 30266, + "end": 30284, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 30284, + "end": 30285, + "value": "," + }, + { + "type": "whitespace", + "start": 30285, + "end": 30293, + "value": "\n " + }, + { + "type": "number", + "start": 30293, + "end": 30312, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 30312, + "end": 30318, + "value": "\n " + }, + { + "type": "brace", + "start": 30318, + "end": 30319, + "value": "]" + }, + { + "type": "comma", + "start": 30319, + "end": 30320, + "value": "," + }, + { + "type": "whitespace", + "start": 30320, + "end": 30321, + "value": " " + }, + { + "type": "operator", + "start": 30321, + "end": 30322, + "value": "%" + }, + { + "type": "brace", + "start": 30322, + "end": 30323, + "value": ")" + }, + { + "type": "whitespace", + "start": 30323, + "end": 30326, + "value": "\n " + }, + { + "type": "operator", + "start": 30326, + "end": 30328, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30328, + "end": 30329, + "value": " " + }, + { + "type": "word", + "start": 30329, + "end": 30333, + "value": "line" + }, + { + "type": "brace", + "start": 30333, + "end": 30334, + "value": "(" + }, + { + "type": "brace", + "start": 30334, + "end": 30335, + "value": "[" + }, + { + "type": "number", + "start": 30335, + "end": 30353, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 30353, + "end": 30354, + "value": "," + }, + { + "type": "whitespace", + "start": 30354, + "end": 30355, + "value": " " + }, + { + "type": "number", + "start": 30355, + "end": 30373, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 30373, + "end": 30374, + "value": "]" + }, + { + "type": "comma", + "start": 30374, + "end": 30375, + "value": "," + }, + { + "type": "whitespace", + "start": 30375, + "end": 30376, + "value": " " + }, + { + "type": "operator", + "start": 30376, + "end": 30377, + "value": "%" + }, + { + "type": "brace", + "start": 30377, + "end": 30378, + "value": ")" + }, + { + "type": "whitespace", + "start": 30378, + "end": 30381, + "value": "\n " + }, + { + "type": "operator", + "start": 30381, + "end": 30383, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30383, + "end": 30384, + "value": " " + }, + { + "type": "word", + "start": 30384, + "end": 30388, + "value": "line" + }, + { + "type": "brace", + "start": 30388, + "end": 30389, + "value": "(" + }, + { + "type": "brace", + "start": 30389, + "end": 30390, + "value": "[" + }, + { + "type": "whitespace", + "start": 30390, + "end": 30398, + "value": "\n " + }, + { + "type": "operator", + "start": 30398, + "end": 30399, + "value": "-" + }, + { + "type": "number", + "start": 30399, + "end": 30417, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 30417, + "end": 30418, + "value": "," + }, + { + "type": "whitespace", + "start": 30418, + "end": 30426, + "value": "\n " + }, + { + "type": "operator", + "start": 30426, + "end": 30427, + "value": "-" + }, + { + "type": "number", + "start": 30427, + "end": 30446, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 30446, + "end": 30452, + "value": "\n " + }, + { + "type": "brace", + "start": 30452, + "end": 30453, + "value": "]" + }, + { + "type": "comma", + "start": 30453, + "end": 30454, + "value": "," + }, + { + "type": "whitespace", + "start": 30454, + "end": 30455, + "value": " " + }, + { + "type": "operator", + "start": 30455, + "end": 30456, + "value": "%" + }, + { + "type": "brace", + "start": 30456, + "end": 30457, + "value": ")" + }, + { + "type": "whitespace", + "start": 30457, + "end": 30460, + "value": "\n " + }, + { + "type": "operator", + "start": 30460, + "end": 30462, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30462, + "end": 30463, + "value": " " + }, + { + "type": "word", + "start": 30463, + "end": 30467, + "value": "line" + }, + { + "type": "brace", + "start": 30467, + "end": 30468, + "value": "(" + }, + { + "type": "brace", + "start": 30468, + "end": 30469, + "value": "[" + }, + { + "type": "whitespace", + "start": 30469, + "end": 30477, + "value": "\n " + }, + { + "type": "number", + "start": 30477, + "end": 30495, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 30495, + "end": 30496, + "value": "," + }, + { + "type": "whitespace", + "start": 30496, + "end": 30504, + "value": "\n " + }, + { + "type": "operator", + "start": 30504, + "end": 30505, + "value": "-" + }, + { + "type": "number", + "start": 30505, + "end": 30523, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 30523, + "end": 30529, + "value": "\n " + }, + { + "type": "brace", + "start": 30529, + "end": 30530, + "value": "]" + }, + { + "type": "comma", + "start": 30530, + "end": 30531, + "value": "," + }, + { + "type": "whitespace", + "start": 30531, + "end": 30532, + "value": " " + }, + { + "type": "operator", + "start": 30532, + "end": 30533, + "value": "%" + }, + { + "type": "brace", + "start": 30533, + "end": 30534, + "value": ")" + }, + { + "type": "whitespace", + "start": 30534, + "end": 30537, + "value": "\n " + }, + { + "type": "operator", + "start": 30537, + "end": 30539, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30539, + "end": 30540, + "value": " " + }, + { + "type": "word", + "start": 30540, + "end": 30544, + "value": "line" + }, + { + "type": "brace", + "start": 30544, + "end": 30545, + "value": "(" + }, + { + "type": "brace", + "start": 30545, + "end": 30546, + "value": "[" + }, + { + "type": "whitespace", + "start": 30546, + "end": 30554, + "value": "\n " + }, + { + "type": "number", + "start": 30554, + "end": 30572, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 30572, + "end": 30573, + "value": "," + }, + { + "type": "whitespace", + "start": 30573, + "end": 30581, + "value": "\n " + }, + { + "type": "operator", + "start": 30581, + "end": 30582, + "value": "-" + }, + { + "type": "number", + "start": 30582, + "end": 30600, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 30600, + "end": 30606, + "value": "\n " + }, + { + "type": "brace", + "start": 30606, + "end": 30607, + "value": "]" + }, + { + "type": "comma", + "start": 30607, + "end": 30608, + "value": "," + }, + { + "type": "whitespace", + "start": 30608, + "end": 30609, + "value": " " + }, + { + "type": "operator", + "start": 30609, + "end": 30610, + "value": "%" + }, + { + "type": "brace", + "start": 30610, + "end": 30611, + "value": ")" + }, + { + "type": "whitespace", + "start": 30611, + "end": 30614, + "value": "\n " + }, + { + "type": "operator", + "start": 30614, + "end": 30616, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30616, + "end": 30617, + "value": " " + }, + { + "type": "word", + "start": 30617, + "end": 30621, + "value": "line" + }, + { + "type": "brace", + "start": 30621, + "end": 30622, + "value": "(" + }, + { + "type": "brace", + "start": 30622, + "end": 30623, + "value": "[" + }, + { + "type": "number", + "start": 30623, + "end": 30641, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 30641, + "end": 30642, + "value": "," + }, + { + "type": "whitespace", + "start": 30642, + "end": 30643, + "value": " " + }, + { + "type": "number", + "start": 30643, + "end": 30661, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 30661, + "end": 30662, + "value": "]" + }, + { + "type": "comma", + "start": 30662, + "end": 30663, + "value": "," + }, + { + "type": "whitespace", + "start": 30663, + "end": 30664, + "value": " " + }, + { + "type": "operator", + "start": 30664, + "end": 30665, + "value": "%" + }, + { + "type": "brace", + "start": 30665, + "end": 30666, + "value": ")" + }, + { + "type": "whitespace", + "start": 30666, + "end": 30669, + "value": "\n " + }, + { + "type": "operator", + "start": 30669, + "end": 30671, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30671, + "end": 30672, + "value": " " + }, + { + "type": "word", + "start": 30672, + "end": 30676, + "value": "line" + }, + { + "type": "brace", + "start": 30676, + "end": 30677, + "value": "(" + }, + { + "type": "brace", + "start": 30677, + "end": 30678, + "value": "[" + }, + { + "type": "whitespace", + "start": 30678, + "end": 30686, + "value": "\n " + }, + { + "type": "operator", + "start": 30686, + "end": 30687, + "value": "-" + }, + { + "type": "number", + "start": 30687, + "end": 30705, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 30705, + "end": 30706, + "value": "," + }, + { + "type": "whitespace", + "start": 30706, + "end": 30714, + "value": "\n " + }, + { + "type": "number", + "start": 30714, + "end": 30732, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 30732, + "end": 30738, + "value": "\n " + }, + { + "type": "brace", + "start": 30738, + "end": 30739, + "value": "]" + }, + { + "type": "comma", + "start": 30739, + "end": 30740, + "value": "," + }, + { + "type": "whitespace", + "start": 30740, + "end": 30741, + "value": " " + }, + { + "type": "operator", + "start": 30741, + "end": 30742, + "value": "%" + }, + { + "type": "brace", + "start": 30742, + "end": 30743, + "value": ")" + }, + { + "type": "whitespace", + "start": 30743, + "end": 30746, + "value": "\n " + }, + { + "type": "operator", + "start": 30746, + "end": 30748, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30748, + "end": 30749, + "value": " " + }, + { + "type": "word", + "start": 30749, + "end": 30753, + "value": "line" + }, + { + "type": "brace", + "start": 30753, + "end": 30754, + "value": "(" + }, + { + "type": "brace", + "start": 30754, + "end": 30755, + "value": "[" + }, + { + "type": "number", + "start": 30755, + "end": 30773, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 30773, + "end": 30774, + "value": "," + }, + { + "type": "whitespace", + "start": 30774, + "end": 30775, + "value": " " + }, + { + "type": "number", + "start": 30775, + "end": 30793, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 30793, + "end": 30794, + "value": "]" + }, + { + "type": "comma", + "start": 30794, + "end": 30795, + "value": "," + }, + { + "type": "whitespace", + "start": 30795, + "end": 30796, + "value": " " + }, + { + "type": "operator", + "start": 30796, + "end": 30797, + "value": "%" + }, + { + "type": "brace", + "start": 30797, + "end": 30798, + "value": ")" + }, + { + "type": "whitespace", + "start": 30798, + "end": 30801, + "value": "\n " + }, + { + "type": "operator", + "start": 30801, + "end": 30803, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30803, + "end": 30804, + "value": " " + }, + { + "type": "word", + "start": 30804, + "end": 30808, + "value": "line" + }, + { + "type": "brace", + "start": 30808, + "end": 30809, + "value": "(" + }, + { + "type": "brace", + "start": 30809, + "end": 30810, + "value": "[" + }, + { + "type": "whitespace", + "start": 30810, + "end": 30818, + "value": "\n " + }, + { + "type": "number", + "start": 30818, + "end": 30836, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 30836, + "end": 30837, + "value": "," + }, + { + "type": "whitespace", + "start": 30837, + "end": 30845, + "value": "\n " + }, + { + "type": "number", + "start": 30845, + "end": 30864, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 30864, + "end": 30870, + "value": "\n " + }, + { + "type": "brace", + "start": 30870, + "end": 30871, + "value": "]" + }, + { + "type": "comma", + "start": 30871, + "end": 30872, + "value": "," + }, + { + "type": "whitespace", + "start": 30872, + "end": 30873, + "value": " " + }, + { + "type": "operator", + "start": 30873, + "end": 30874, + "value": "%" + }, + { + "type": "brace", + "start": 30874, + "end": 30875, + "value": ")" + }, + { + "type": "whitespace", + "start": 30875, + "end": 30878, + "value": "\n " + }, + { + "type": "operator", + "start": 30878, + "end": 30880, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30880, + "end": 30881, + "value": " " + }, + { + "type": "word", + "start": 30881, + "end": 30885, + "value": "line" + }, + { + "type": "brace", + "start": 30885, + "end": 30886, + "value": "(" + }, + { + "type": "brace", + "start": 30886, + "end": 30887, + "value": "[" + }, + { + "type": "whitespace", + "start": 30887, + "end": 30895, + "value": "\n " + }, + { + "type": "operator", + "start": 30895, + "end": 30896, + "value": "-" + }, + { + "type": "number", + "start": 30896, + "end": 30914, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 30914, + "end": 30915, + "value": "," + }, + { + "type": "whitespace", + "start": 30915, + "end": 30923, + "value": "\n " + }, + { + "type": "operator", + "start": 30923, + "end": 30924, + "value": "-" + }, + { + "type": "number", + "start": 30924, + "end": 30941, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 30941, + "end": 30947, + "value": "\n " + }, + { + "type": "brace", + "start": 30947, + "end": 30948, + "value": "]" + }, + { + "type": "comma", + "start": 30948, + "end": 30949, + "value": "," + }, + { + "type": "whitespace", + "start": 30949, + "end": 30950, + "value": " " + }, + { + "type": "operator", + "start": 30950, + "end": 30951, + "value": "%" + }, + { + "type": "brace", + "start": 30951, + "end": 30952, + "value": ")" + }, + { + "type": "whitespace", + "start": 30952, + "end": 30955, + "value": "\n " + }, + { + "type": "operator", + "start": 30955, + "end": 30957, + "value": "|>" + }, + { + "type": "whitespace", + "start": 30957, + "end": 30958, + "value": " " + }, + { + "type": "word", + "start": 30958, + "end": 30962, + "value": "line" + }, + { + "type": "brace", + "start": 30962, + "end": 30963, + "value": "(" + }, + { + "type": "brace", + "start": 30963, + "end": 30964, + "value": "[" + }, + { + "type": "whitespace", + "start": 30964, + "end": 30972, + "value": "\n " + }, + { + "type": "number", + "start": 30972, + "end": 30990, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 30990, + "end": 30991, + "value": "," + }, + { + "type": "whitespace", + "start": 30991, + "end": 30999, + "value": "\n " + }, + { + "type": "operator", + "start": 30999, + "end": 31000, + "value": "-" + }, + { + "type": "number", + "start": 31000, + "end": 31019, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 31019, + "end": 31025, + "value": "\n " + }, + { + "type": "brace", + "start": 31025, + "end": 31026, + "value": "]" + }, + { + "type": "comma", + "start": 31026, + "end": 31027, + "value": "," + }, + { + "type": "whitespace", + "start": 31027, + "end": 31028, + "value": " " + }, + { + "type": "operator", + "start": 31028, + "end": 31029, + "value": "%" + }, + { + "type": "brace", + "start": 31029, + "end": 31030, + "value": ")" + }, + { + "type": "whitespace", + "start": 31030, + "end": 31033, + "value": "\n " + }, + { + "type": "operator", + "start": 31033, + "end": 31035, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31035, + "end": 31036, + "value": " " + }, + { + "type": "word", + "start": 31036, + "end": 31040, + "value": "line" + }, + { + "type": "brace", + "start": 31040, + "end": 31041, + "value": "(" + }, + { + "type": "brace", + "start": 31041, + "end": 31042, + "value": "[" + }, + { + "type": "whitespace", + "start": 31042, + "end": 31050, + "value": "\n " + }, + { + "type": "operator", + "start": 31050, + "end": 31051, + "value": "-" + }, + { + "type": "number", + "start": 31051, + "end": 31070, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 31070, + "end": 31071, + "value": "," + }, + { + "type": "whitespace", + "start": 31071, + "end": 31079, + "value": "\n " + }, + { + "type": "operator", + "start": 31079, + "end": 31080, + "value": "-" + }, + { + "type": "number", + "start": 31080, + "end": 31099, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 31099, + "end": 31105, + "value": "\n " + }, + { + "type": "brace", + "start": 31105, + "end": 31106, + "value": "]" + }, + { + "type": "comma", + "start": 31106, + "end": 31107, + "value": "," + }, + { + "type": "whitespace", + "start": 31107, + "end": 31108, + "value": " " + }, + { + "type": "operator", + "start": 31108, + "end": 31109, + "value": "%" + }, + { + "type": "brace", + "start": 31109, + "end": 31110, + "value": ")" + }, + { + "type": "whitespace", + "start": 31110, + "end": 31113, + "value": "\n " + }, + { + "type": "operator", + "start": 31113, + "end": 31115, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31115, + "end": 31116, + "value": " " + }, + { + "type": "word", + "start": 31116, + "end": 31120, + "value": "line" + }, + { + "type": "brace", + "start": 31120, + "end": 31121, + "value": "(" + }, + { + "type": "brace", + "start": 31121, + "end": 31122, + "value": "[" + }, + { + "type": "whitespace", + "start": 31122, + "end": 31130, + "value": "\n " + }, + { + "type": "operator", + "start": 31130, + "end": 31131, + "value": "-" + }, + { + "type": "number", + "start": 31131, + "end": 31149, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 31149, + "end": 31150, + "value": "," + }, + { + "type": "whitespace", + "start": 31150, + "end": 31158, + "value": "\n " + }, + { + "type": "operator", + "start": 31158, + "end": 31159, + "value": "-" + }, + { + "type": "number", + "start": 31159, + "end": 31178, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 31178, + "end": 31184, + "value": "\n " + }, + { + "type": "brace", + "start": 31184, + "end": 31185, + "value": "]" + }, + { + "type": "comma", + "start": 31185, + "end": 31186, + "value": "," + }, + { + "type": "whitespace", + "start": 31186, + "end": 31187, + "value": " " + }, + { + "type": "operator", + "start": 31187, + "end": 31188, + "value": "%" + }, + { + "type": "brace", + "start": 31188, + "end": 31189, + "value": ")" + }, + { + "type": "whitespace", + "start": 31189, + "end": 31192, + "value": "\n " + }, + { + "type": "operator", + "start": 31192, + "end": 31194, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31194, + "end": 31195, + "value": " " + }, + { + "type": "word", + "start": 31195, + "end": 31199, + "value": "line" + }, + { + "type": "brace", + "start": 31199, + "end": 31200, + "value": "(" + }, + { + "type": "brace", + "start": 31200, + "end": 31201, + "value": "[" + }, + { + "type": "whitespace", + "start": 31201, + "end": 31209, + "value": "\n " + }, + { + "type": "operator", + "start": 31209, + "end": 31210, + "value": "-" + }, + { + "type": "number", + "start": 31210, + "end": 31228, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 31228, + "end": 31229, + "value": "," + }, + { + "type": "whitespace", + "start": 31229, + "end": 31237, + "value": "\n " + }, + { + "type": "number", + "start": 31237, + "end": 31256, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 31256, + "end": 31262, + "value": "\n " + }, + { + "type": "brace", + "start": 31262, + "end": 31263, + "value": "]" + }, + { + "type": "comma", + "start": 31263, + "end": 31264, + "value": "," + }, + { + "type": "whitespace", + "start": 31264, + "end": 31265, + "value": " " + }, + { + "type": "operator", + "start": 31265, + "end": 31266, + "value": "%" + }, + { + "type": "brace", + "start": 31266, + "end": 31267, + "value": ")" + }, + { + "type": "whitespace", + "start": 31267, + "end": 31270, + "value": "\n " + }, + { + "type": "operator", + "start": 31270, + "end": 31272, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31272, + "end": 31273, + "value": " " + }, + { + "type": "word", + "start": 31273, + "end": 31277, + "value": "line" + }, + { + "type": "brace", + "start": 31277, + "end": 31278, + "value": "(" + }, + { + "type": "brace", + "start": 31278, + "end": 31279, + "value": "[" + }, + { + "type": "whitespace", + "start": 31279, + "end": 31287, + "value": "\n " + }, + { + "type": "operator", + "start": 31287, + "end": 31288, + "value": "-" + }, + { + "type": "number", + "start": 31288, + "end": 31306, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 31306, + "end": 31307, + "value": "," + }, + { + "type": "whitespace", + "start": 31307, + "end": 31315, + "value": "\n " + }, + { + "type": "operator", + "start": 31315, + "end": 31316, + "value": "-" + }, + { + "type": "number", + "start": 31316, + "end": 31335, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 31335, + "end": 31341, + "value": "\n " + }, + { + "type": "brace", + "start": 31341, + "end": 31342, + "value": "]" + }, + { + "type": "comma", + "start": 31342, + "end": 31343, + "value": "," + }, + { + "type": "whitespace", + "start": 31343, + "end": 31344, + "value": " " + }, + { + "type": "operator", + "start": 31344, + "end": 31345, + "value": "%" + }, + { + "type": "brace", + "start": 31345, + "end": 31346, + "value": ")" + }, + { + "type": "whitespace", + "start": 31346, + "end": 31349, + "value": "\n " + }, + { + "type": "operator", + "start": 31349, + "end": 31351, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31351, + "end": 31352, + "value": " " + }, + { + "type": "word", + "start": 31352, + "end": 31356, + "value": "line" + }, + { + "type": "brace", + "start": 31356, + "end": 31357, + "value": "(" + }, + { + "type": "brace", + "start": 31357, + "end": 31358, + "value": "[" + }, + { + "type": "whitespace", + "start": 31358, + "end": 31366, + "value": "\n " + }, + { + "type": "number", + "start": 31366, + "end": 31384, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 31384, + "end": 31385, + "value": "," + }, + { + "type": "whitespace", + "start": 31385, + "end": 31393, + "value": "\n " + }, + { + "type": "operator", + "start": 31393, + "end": 31394, + "value": "-" + }, + { + "type": "number", + "start": 31394, + "end": 31412, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 31412, + "end": 31418, + "value": "\n " + }, + { + "type": "brace", + "start": 31418, + "end": 31419, + "value": "]" + }, + { + "type": "comma", + "start": 31419, + "end": 31420, + "value": "," + }, + { + "type": "whitespace", + "start": 31420, + "end": 31421, + "value": " " + }, + { + "type": "operator", + "start": 31421, + "end": 31422, + "value": "%" + }, + { + "type": "brace", + "start": 31422, + "end": 31423, + "value": ")" + }, + { + "type": "whitespace", + "start": 31423, + "end": 31426, + "value": "\n " + }, + { + "type": "operator", + "start": 31426, + "end": 31428, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31428, + "end": 31429, + "value": " " + }, + { + "type": "word", + "start": 31429, + "end": 31433, + "value": "line" + }, + { + "type": "brace", + "start": 31433, + "end": 31434, + "value": "(" + }, + { + "type": "brace", + "start": 31434, + "end": 31435, + "value": "[" + }, + { + "type": "whitespace", + "start": 31435, + "end": 31443, + "value": "\n " + }, + { + "type": "operator", + "start": 31443, + "end": 31444, + "value": "-" + }, + { + "type": "number", + "start": 31444, + "end": 31462, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 31462, + "end": 31463, + "value": "," + }, + { + "type": "whitespace", + "start": 31463, + "end": 31471, + "value": "\n " + }, + { + "type": "number", + "start": 31471, + "end": 31489, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 31489, + "end": 31495, + "value": "\n " + }, + { + "type": "brace", + "start": 31495, + "end": 31496, + "value": "]" + }, + { + "type": "comma", + "start": 31496, + "end": 31497, + "value": "," + }, + { + "type": "whitespace", + "start": 31497, + "end": 31498, + "value": " " + }, + { + "type": "operator", + "start": 31498, + "end": 31499, + "value": "%" + }, + { + "type": "brace", + "start": 31499, + "end": 31500, + "value": ")" + }, + { + "type": "whitespace", + "start": 31500, + "end": 31503, + "value": "\n " + }, + { + "type": "operator", + "start": 31503, + "end": 31505, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31505, + "end": 31506, + "value": " " + }, + { + "type": "word", + "start": 31506, + "end": 31510, + "value": "line" + }, + { + "type": "brace", + "start": 31510, + "end": 31511, + "value": "(" + }, + { + "type": "brace", + "start": 31511, + "end": 31512, + "value": "[" + }, + { + "type": "whitespace", + "start": 31512, + "end": 31520, + "value": "\n " + }, + { + "type": "operator", + "start": 31520, + "end": 31521, + "value": "-" + }, + { + "type": "number", + "start": 31521, + "end": 31539, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 31539, + "end": 31540, + "value": "," + }, + { + "type": "whitespace", + "start": 31540, + "end": 31548, + "value": "\n " + }, + { + "type": "number", + "start": 31548, + "end": 31566, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 31566, + "end": 31572, + "value": "\n " + }, + { + "type": "brace", + "start": 31572, + "end": 31573, + "value": "]" + }, + { + "type": "comma", + "start": 31573, + "end": 31574, + "value": "," + }, + { + "type": "whitespace", + "start": 31574, + "end": 31575, + "value": " " + }, + { + "type": "operator", + "start": 31575, + "end": 31576, + "value": "%" + }, + { + "type": "brace", + "start": 31576, + "end": 31577, + "value": ")" + }, + { + "type": "whitespace", + "start": 31577, + "end": 31580, + "value": "\n " + }, + { + "type": "operator", + "start": 31580, + "end": 31582, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31582, + "end": 31583, + "value": " " + }, + { + "type": "word", + "start": 31583, + "end": 31587, + "value": "line" + }, + { + "type": "brace", + "start": 31587, + "end": 31588, + "value": "(" + }, + { + "type": "brace", + "start": 31588, + "end": 31589, + "value": "[" + }, + { + "type": "whitespace", + "start": 31589, + "end": 31597, + "value": "\n " + }, + { + "type": "operator", + "start": 31597, + "end": 31598, + "value": "-" + }, + { + "type": "number", + "start": 31598, + "end": 31616, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 31616, + "end": 31617, + "value": "," + }, + { + "type": "whitespace", + "start": 31617, + "end": 31625, + "value": "\n " + }, + { + "type": "operator", + "start": 31625, + "end": 31626, + "value": "-" + }, + { + "type": "number", + "start": 31626, + "end": 31645, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 31645, + "end": 31651, + "value": "\n " + }, + { + "type": "brace", + "start": 31651, + "end": 31652, + "value": "]" + }, + { + "type": "comma", + "start": 31652, + "end": 31653, + "value": "," + }, + { + "type": "whitespace", + "start": 31653, + "end": 31654, + "value": " " + }, + { + "type": "operator", + "start": 31654, + "end": 31655, + "value": "%" + }, + { + "type": "brace", + "start": 31655, + "end": 31656, + "value": ")" + }, + { + "type": "whitespace", + "start": 31656, + "end": 31659, + "value": "\n " + }, + { + "type": "operator", + "start": 31659, + "end": 31661, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31661, + "end": 31662, + "value": " " + }, + { + "type": "word", + "start": 31662, + "end": 31666, + "value": "line" + }, + { + "type": "brace", + "start": 31666, + "end": 31667, + "value": "(" + }, + { + "type": "brace", + "start": 31667, + "end": 31668, + "value": "[" + }, + { + "type": "whitespace", + "start": 31668, + "end": 31676, + "value": "\n " + }, + { + "type": "number", + "start": 31676, + "end": 31695, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 31695, + "end": 31696, + "value": "," + }, + { + "type": "whitespace", + "start": 31696, + "end": 31704, + "value": "\n " + }, + { + "type": "number", + "start": 31704, + "end": 31723, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 31723, + "end": 31729, + "value": "\n " + }, + { + "type": "brace", + "start": 31729, + "end": 31730, + "value": "]" + }, + { + "type": "comma", + "start": 31730, + "end": 31731, + "value": "," + }, + { + "type": "whitespace", + "start": 31731, + "end": 31732, + "value": " " + }, + { + "type": "operator", + "start": 31732, + "end": 31733, + "value": "%" + }, + { + "type": "brace", + "start": 31733, + "end": 31734, + "value": ")" + }, + { + "type": "whitespace", + "start": 31734, + "end": 31737, + "value": "\n " + }, + { + "type": "operator", + "start": 31737, + "end": 31739, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31739, + "end": 31740, + "value": " " + }, + { + "type": "word", + "start": 31740, + "end": 31744, + "value": "line" + }, + { + "type": "brace", + "start": 31744, + "end": 31745, + "value": "(" + }, + { + "type": "brace", + "start": 31745, + "end": 31746, + "value": "[" + }, + { + "type": "whitespace", + "start": 31746, + "end": 31754, + "value": "\n " + }, + { + "type": "number", + "start": 31754, + "end": 31773, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 31773, + "end": 31774, + "value": "," + }, + { + "type": "whitespace", + "start": 31774, + "end": 31782, + "value": "\n " + }, + { + "type": "number", + "start": 31782, + "end": 31801, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 31801, + "end": 31807, + "value": "\n " + }, + { + "type": "brace", + "start": 31807, + "end": 31808, + "value": "]" + }, + { + "type": "comma", + "start": 31808, + "end": 31809, + "value": "," + }, + { + "type": "whitespace", + "start": 31809, + "end": 31810, + "value": " " + }, + { + "type": "operator", + "start": 31810, + "end": 31811, + "value": "%" + }, + { + "type": "brace", + "start": 31811, + "end": 31812, + "value": ")" + }, + { + "type": "whitespace", + "start": 31812, + "end": 31815, + "value": "\n " + }, + { + "type": "operator", + "start": 31815, + "end": 31817, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31817, + "end": 31818, + "value": " " + }, + { + "type": "word", + "start": 31818, + "end": 31822, + "value": "line" + }, + { + "type": "brace", + "start": 31822, + "end": 31823, + "value": "(" + }, + { + "type": "brace", + "start": 31823, + "end": 31824, + "value": "[" + }, + { + "type": "whitespace", + "start": 31824, + "end": 31832, + "value": "\n " + }, + { + "type": "operator", + "start": 31832, + "end": 31833, + "value": "-" + }, + { + "type": "number", + "start": 31833, + "end": 31852, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 31852, + "end": 31853, + "value": "," + }, + { + "type": "whitespace", + "start": 31853, + "end": 31861, + "value": "\n " + }, + { + "type": "number", + "start": 31861, + "end": 31879, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 31879, + "end": 31885, + "value": "\n " + }, + { + "type": "brace", + "start": 31885, + "end": 31886, + "value": "]" + }, + { + "type": "comma", + "start": 31886, + "end": 31887, + "value": "," + }, + { + "type": "whitespace", + "start": 31887, + "end": 31888, + "value": " " + }, + { + "type": "operator", + "start": 31888, + "end": 31889, + "value": "%" + }, + { + "type": "brace", + "start": 31889, + "end": 31890, + "value": ")" + }, + { + "type": "whitespace", + "start": 31890, + "end": 31893, + "value": "\n " + }, + { + "type": "operator", + "start": 31893, + "end": 31895, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31895, + "end": 31896, + "value": " " + }, + { + "type": "word", + "start": 31896, + "end": 31900, + "value": "line" + }, + { + "type": "brace", + "start": 31900, + "end": 31901, + "value": "(" + }, + { + "type": "brace", + "start": 31901, + "end": 31902, + "value": "[" + }, + { + "type": "whitespace", + "start": 31902, + "end": 31910, + "value": "\n " + }, + { + "type": "operator", + "start": 31910, + "end": 31911, + "value": "-" + }, + { + "type": "number", + "start": 31911, + "end": 31930, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 31930, + "end": 31931, + "value": "," + }, + { + "type": "whitespace", + "start": 31931, + "end": 31939, + "value": "\n " + }, + { + "type": "operator", + "start": 31939, + "end": 31940, + "value": "-" + }, + { + "type": "number", + "start": 31940, + "end": 31959, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 31959, + "end": 31965, + "value": "\n " + }, + { + "type": "brace", + "start": 31965, + "end": 31966, + "value": "]" + }, + { + "type": "comma", + "start": 31966, + "end": 31967, + "value": "," + }, + { + "type": "whitespace", + "start": 31967, + "end": 31968, + "value": " " + }, + { + "type": "operator", + "start": 31968, + "end": 31969, + "value": "%" + }, + { + "type": "brace", + "start": 31969, + "end": 31970, + "value": ")" + }, + { + "type": "whitespace", + "start": 31970, + "end": 31973, + "value": "\n " + }, + { + "type": "operator", + "start": 31973, + "end": 31975, + "value": "|>" + }, + { + "type": "whitespace", + "start": 31975, + "end": 31976, + "value": " " + }, + { + "type": "word", + "start": 31976, + "end": 31980, + "value": "line" + }, + { + "type": "brace", + "start": 31980, + "end": 31981, + "value": "(" + }, + { + "type": "brace", + "start": 31981, + "end": 31982, + "value": "[" + }, + { + "type": "whitespace", + "start": 31982, + "end": 31990, + "value": "\n " + }, + { + "type": "number", + "start": 31990, + "end": 32008, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 32008, + "end": 32009, + "value": "," + }, + { + "type": "whitespace", + "start": 32009, + "end": 32017, + "value": "\n " + }, + { + "type": "operator", + "start": 32017, + "end": 32018, + "value": "-" + }, + { + "type": "number", + "start": 32018, + "end": 32037, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 32037, + "end": 32043, + "value": "\n " + }, + { + "type": "brace", + "start": 32043, + "end": 32044, + "value": "]" + }, + { + "type": "comma", + "start": 32044, + "end": 32045, + "value": "," + }, + { + "type": "whitespace", + "start": 32045, + "end": 32046, + "value": " " + }, + { + "type": "operator", + "start": 32046, + "end": 32047, + "value": "%" + }, + { + "type": "brace", + "start": 32047, + "end": 32048, + "value": ")" + }, + { + "type": "whitespace", + "start": 32048, + "end": 32051, + "value": "\n " + }, + { + "type": "operator", + "start": 32051, + "end": 32053, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32053, + "end": 32054, + "value": " " + }, + { + "type": "word", + "start": 32054, + "end": 32058, + "value": "line" + }, + { + "type": "brace", + "start": 32058, + "end": 32059, + "value": "(" + }, + { + "type": "brace", + "start": 32059, + "end": 32060, + "value": "[" + }, + { + "type": "whitespace", + "start": 32060, + "end": 32068, + "value": "\n " + }, + { + "type": "number", + "start": 32068, + "end": 32089, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 32089, + "end": 32090, + "value": "," + }, + { + "type": "whitespace", + "start": 32090, + "end": 32098, + "value": "\n " + }, + { + "type": "operator", + "start": 32098, + "end": 32099, + "value": "-" + }, + { + "type": "number", + "start": 32099, + "end": 32117, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 32117, + "end": 32123, + "value": "\n " + }, + { + "type": "brace", + "start": 32123, + "end": 32124, + "value": "]" + }, + { + "type": "comma", + "start": 32124, + "end": 32125, + "value": "," + }, + { + "type": "whitespace", + "start": 32125, + "end": 32126, + "value": " " + }, + { + "type": "operator", + "start": 32126, + "end": 32127, + "value": "%" + }, + { + "type": "brace", + "start": 32127, + "end": 32128, + "value": ")" + }, + { + "type": "whitespace", + "start": 32128, + "end": 32131, + "value": "\n " + }, + { + "type": "operator", + "start": 32131, + "end": 32133, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32133, + "end": 32134, + "value": " " + }, + { + "type": "word", + "start": 32134, + "end": 32138, + "value": "line" + }, + { + "type": "brace", + "start": 32138, + "end": 32139, + "value": "(" + }, + { + "type": "brace", + "start": 32139, + "end": 32140, + "value": "[" + }, + { + "type": "whitespace", + "start": 32140, + "end": 32148, + "value": "\n " + }, + { + "type": "number", + "start": 32148, + "end": 32166, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 32166, + "end": 32167, + "value": "," + }, + { + "type": "whitespace", + "start": 32167, + "end": 32175, + "value": "\n " + }, + { + "type": "operator", + "start": 32175, + "end": 32176, + "value": "-" + }, + { + "type": "number", + "start": 32176, + "end": 32194, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 32194, + "end": 32200, + "value": "\n " + }, + { + "type": "brace", + "start": 32200, + "end": 32201, + "value": "]" + }, + { + "type": "comma", + "start": 32201, + "end": 32202, + "value": "," + }, + { + "type": "whitespace", + "start": 32202, + "end": 32203, + "value": " " + }, + { + "type": "operator", + "start": 32203, + "end": 32204, + "value": "%" + }, + { + "type": "brace", + "start": 32204, + "end": 32205, + "value": ")" + }, + { + "type": "whitespace", + "start": 32205, + "end": 32208, + "value": "\n " + }, + { + "type": "operator", + "start": 32208, + "end": 32210, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32210, + "end": 32211, + "value": " " + }, + { + "type": "word", + "start": 32211, + "end": 32215, + "value": "line" + }, + { + "type": "brace", + "start": 32215, + "end": 32216, + "value": "(" + }, + { + "type": "brace", + "start": 32216, + "end": 32217, + "value": "[" + }, + { + "type": "whitespace", + "start": 32217, + "end": 32225, + "value": "\n " + }, + { + "type": "operator", + "start": 32225, + "end": 32226, + "value": "-" + }, + { + "type": "number", + "start": 32226, + "end": 32244, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 32244, + "end": 32245, + "value": "," + }, + { + "type": "whitespace", + "start": 32245, + "end": 32253, + "value": "\n " + }, + { + "type": "number", + "start": 32253, + "end": 32271, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 32271, + "end": 32277, + "value": "\n " + }, + { + "type": "brace", + "start": 32277, + "end": 32278, + "value": "]" + }, + { + "type": "comma", + "start": 32278, + "end": 32279, + "value": "," + }, + { + "type": "whitespace", + "start": 32279, + "end": 32280, + "value": " " + }, + { + "type": "operator", + "start": 32280, + "end": 32281, + "value": "%" + }, + { + "type": "brace", + "start": 32281, + "end": 32282, + "value": ")" + }, + { + "type": "whitespace", + "start": 32282, + "end": 32285, + "value": "\n " + }, + { + "type": "operator", + "start": 32285, + "end": 32287, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32287, + "end": 32288, + "value": " " + }, + { + "type": "word", + "start": 32288, + "end": 32292, + "value": "line" + }, + { + "type": "brace", + "start": 32292, + "end": 32293, + "value": "(" + }, + { + "type": "brace", + "start": 32293, + "end": 32294, + "value": "[" + }, + { + "type": "number", + "start": 32294, + "end": 32312, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 32312, + "end": 32313, + "value": "," + }, + { + "type": "whitespace", + "start": 32313, + "end": 32314, + "value": " " + }, + { + "type": "number", + "start": 32314, + "end": 32332, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 32332, + "end": 32333, + "value": "]" + }, + { + "type": "comma", + "start": 32333, + "end": 32334, + "value": "," + }, + { + "type": "whitespace", + "start": 32334, + "end": 32335, + "value": " " + }, + { + "type": "operator", + "start": 32335, + "end": 32336, + "value": "%" + }, + { + "type": "brace", + "start": 32336, + "end": 32337, + "value": ")" + }, + { + "type": "whitespace", + "start": 32337, + "end": 32340, + "value": "\n " + }, + { + "type": "operator", + "start": 32340, + "end": 32342, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32342, + "end": 32343, + "value": " " + }, + { + "type": "word", + "start": 32343, + "end": 32347, + "value": "line" + }, + { + "type": "brace", + "start": 32347, + "end": 32348, + "value": "(" + }, + { + "type": "brace", + "start": 32348, + "end": 32349, + "value": "[" + }, + { + "type": "whitespace", + "start": 32349, + "end": 32357, + "value": "\n " + }, + { + "type": "operator", + "start": 32357, + "end": 32358, + "value": "-" + }, + { + "type": "number", + "start": 32358, + "end": 32377, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 32377, + "end": 32378, + "value": "," + }, + { + "type": "whitespace", + "start": 32378, + "end": 32386, + "value": "\n " + }, + { + "type": "number", + "start": 32386, + "end": 32406, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 32406, + "end": 32412, + "value": "\n " + }, + { + "type": "brace", + "start": 32412, + "end": 32413, + "value": "]" + }, + { + "type": "comma", + "start": 32413, + "end": 32414, + "value": "," + }, + { + "type": "whitespace", + "start": 32414, + "end": 32415, + "value": " " + }, + { + "type": "operator", + "start": 32415, + "end": 32416, + "value": "%" + }, + { + "type": "brace", + "start": 32416, + "end": 32417, + "value": ")" + }, + { + "type": "whitespace", + "start": 32417, + "end": 32420, + "value": "\n " + }, + { + "type": "operator", + "start": 32420, + "end": 32422, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32422, + "end": 32423, + "value": " " + }, + { + "type": "word", + "start": 32423, + "end": 32427, + "value": "line" + }, + { + "type": "brace", + "start": 32427, + "end": 32428, + "value": "(" + }, + { + "type": "brace", + "start": 32428, + "end": 32429, + "value": "[" + }, + { + "type": "whitespace", + "start": 32429, + "end": 32437, + "value": "\n " + }, + { + "type": "operator", + "start": 32437, + "end": 32438, + "value": "-" + }, + { + "type": "number", + "start": 32438, + "end": 32456, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 32456, + "end": 32457, + "value": "," + }, + { + "type": "whitespace", + "start": 32457, + "end": 32465, + "value": "\n " + }, + { + "type": "operator", + "start": 32465, + "end": 32466, + "value": "-" + }, + { + "type": "number", + "start": 32466, + "end": 32485, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 32485, + "end": 32491, + "value": "\n " + }, + { + "type": "brace", + "start": 32491, + "end": 32492, + "value": "]" + }, + { + "type": "comma", + "start": 32492, + "end": 32493, + "value": "," + }, + { + "type": "whitespace", + "start": 32493, + "end": 32494, + "value": " " + }, + { + "type": "operator", + "start": 32494, + "end": 32495, + "value": "%" + }, + { + "type": "brace", + "start": 32495, + "end": 32496, + "value": ")" + }, + { + "type": "whitespace", + "start": 32496, + "end": 32499, + "value": "\n " + }, + { + "type": "operator", + "start": 32499, + "end": 32501, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32501, + "end": 32502, + "value": " " + }, + { + "type": "word", + "start": 32502, + "end": 32506, + "value": "line" + }, + { + "type": "brace", + "start": 32506, + "end": 32507, + "value": "(" + }, + { + "type": "brace", + "start": 32507, + "end": 32508, + "value": "[" + }, + { + "type": "whitespace", + "start": 32508, + "end": 32516, + "value": "\n " + }, + { + "type": "operator", + "start": 32516, + "end": 32517, + "value": "-" + }, + { + "type": "number", + "start": 32517, + "end": 32535, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 32535, + "end": 32536, + "value": "," + }, + { + "type": "whitespace", + "start": 32536, + "end": 32544, + "value": "\n " + }, + { + "type": "operator", + "start": 32544, + "end": 32545, + "value": "-" + }, + { + "type": "number", + "start": 32545, + "end": 32564, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 32564, + "end": 32570, + "value": "\n " + }, + { + "type": "brace", + "start": 32570, + "end": 32571, + "value": "]" + }, + { + "type": "comma", + "start": 32571, + "end": 32572, + "value": "," + }, + { + "type": "whitespace", + "start": 32572, + "end": 32573, + "value": " " + }, + { + "type": "operator", + "start": 32573, + "end": 32574, + "value": "%" + }, + { + "type": "brace", + "start": 32574, + "end": 32575, + "value": ")" + }, + { + "type": "whitespace", + "start": 32575, + "end": 32578, + "value": "\n " + }, + { + "type": "operator", + "start": 32578, + "end": 32580, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32580, + "end": 32581, + "value": " " + }, + { + "type": "word", + "start": 32581, + "end": 32585, + "value": "line" + }, + { + "type": "brace", + "start": 32585, + "end": 32586, + "value": "(" + }, + { + "type": "brace", + "start": 32586, + "end": 32587, + "value": "[" + }, + { + "type": "number", + "start": 32587, + "end": 32604, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 32604, + "end": 32605, + "value": "," + }, + { + "type": "whitespace", + "start": 32605, + "end": 32606, + "value": " " + }, + { + "type": "number", + "start": 32606, + "end": 32624, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 32624, + "end": 32625, + "value": "]" + }, + { + "type": "comma", + "start": 32625, + "end": 32626, + "value": "," + }, + { + "type": "whitespace", + "start": 32626, + "end": 32627, + "value": " " + }, + { + "type": "operator", + "start": 32627, + "end": 32628, + "value": "%" + }, + { + "type": "brace", + "start": 32628, + "end": 32629, + "value": ")" + }, + { + "type": "whitespace", + "start": 32629, + "end": 32632, + "value": "\n " + }, + { + "type": "operator", + "start": 32632, + "end": 32634, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32634, + "end": 32635, + "value": " " + }, + { + "type": "word", + "start": 32635, + "end": 32639, + "value": "line" + }, + { + "type": "brace", + "start": 32639, + "end": 32640, + "value": "(" + }, + { + "type": "brace", + "start": 32640, + "end": 32641, + "value": "[" + }, + { + "type": "whitespace", + "start": 32641, + "end": 32649, + "value": "\n " + }, + { + "type": "number", + "start": 32649, + "end": 32668, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 32668, + "end": 32669, + "value": "," + }, + { + "type": "whitespace", + "start": 32669, + "end": 32677, + "value": "\n " + }, + { + "type": "operator", + "start": 32677, + "end": 32678, + "value": "-" + }, + { + "type": "number", + "start": 32678, + "end": 32697, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 32697, + "end": 32703, + "value": "\n " + }, + { + "type": "brace", + "start": 32703, + "end": 32704, + "value": "]" + }, + { + "type": "comma", + "start": 32704, + "end": 32705, + "value": "," + }, + { + "type": "whitespace", + "start": 32705, + "end": 32706, + "value": " " + }, + { + "type": "operator", + "start": 32706, + "end": 32707, + "value": "%" + }, + { + "type": "brace", + "start": 32707, + "end": 32708, + "value": ")" + }, + { + "type": "whitespace", + "start": 32708, + "end": 32711, + "value": "\n " + }, + { + "type": "operator", + "start": 32711, + "end": 32713, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32713, + "end": 32714, + "value": " " + }, + { + "type": "word", + "start": 32714, + "end": 32718, + "value": "line" + }, + { + "type": "brace", + "start": 32718, + "end": 32719, + "value": "(" + }, + { + "type": "brace", + "start": 32719, + "end": 32720, + "value": "[" + }, + { + "type": "number", + "start": 32720, + "end": 32738, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 32738, + "end": 32739, + "value": "," + }, + { + "type": "whitespace", + "start": 32739, + "end": 32740, + "value": " " + }, + { + "type": "number", + "start": 32740, + "end": 32757, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 32757, + "end": 32758, + "value": "]" + }, + { + "type": "comma", + "start": 32758, + "end": 32759, + "value": "," + }, + { + "type": "whitespace", + "start": 32759, + "end": 32760, + "value": " " + }, + { + "type": "operator", + "start": 32760, + "end": 32761, + "value": "%" + }, + { + "type": "brace", + "start": 32761, + "end": 32762, + "value": ")" + }, + { + "type": "whitespace", + "start": 32762, + "end": 32765, + "value": "\n " + }, + { + "type": "operator", + "start": 32765, + "end": 32767, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32767, + "end": 32768, + "value": " " + }, + { + "type": "word", + "start": 32768, + "end": 32772, + "value": "line" + }, + { + "type": "brace", + "start": 32772, + "end": 32773, + "value": "(" + }, + { + "type": "brace", + "start": 32773, + "end": 32774, + "value": "[" + }, + { + "type": "whitespace", + "start": 32774, + "end": 32782, + "value": "\n " + }, + { + "type": "number", + "start": 32782, + "end": 32801, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 32801, + "end": 32802, + "value": "," + }, + { + "type": "whitespace", + "start": 32802, + "end": 32810, + "value": "\n " + }, + { + "type": "operator", + "start": 32810, + "end": 32811, + "value": "-" + }, + { + "type": "number", + "start": 32811, + "end": 32829, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 32829, + "end": 32835, + "value": "\n " + }, + { + "type": "brace", + "start": 32835, + "end": 32836, + "value": "]" + }, + { + "type": "comma", + "start": 32836, + "end": 32837, + "value": "," + }, + { + "type": "whitespace", + "start": 32837, + "end": 32838, + "value": " " + }, + { + "type": "operator", + "start": 32838, + "end": 32839, + "value": "%" + }, + { + "type": "brace", + "start": 32839, + "end": 32840, + "value": ")" + }, + { + "type": "whitespace", + "start": 32840, + "end": 32843, + "value": "\n " + }, + { + "type": "operator", + "start": 32843, + "end": 32845, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32845, + "end": 32846, + "value": " " + }, + { + "type": "word", + "start": 32846, + "end": 32850, + "value": "line" + }, + { + "type": "brace", + "start": 32850, + "end": 32851, + "value": "(" + }, + { + "type": "brace", + "start": 32851, + "end": 32852, + "value": "[" + }, + { + "type": "number", + "start": 32852, + "end": 32870, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 32870, + "end": 32871, + "value": "," + }, + { + "type": "whitespace", + "start": 32871, + "end": 32872, + "value": " " + }, + { + "type": "number", + "start": 32872, + "end": 32890, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 32890, + "end": 32891, + "value": "]" + }, + { + "type": "comma", + "start": 32891, + "end": 32892, + "value": "," + }, + { + "type": "whitespace", + "start": 32892, + "end": 32893, + "value": " " + }, + { + "type": "operator", + "start": 32893, + "end": 32894, + "value": "%" + }, + { + "type": "brace", + "start": 32894, + "end": 32895, + "value": ")" + }, + { + "type": "whitespace", + "start": 32895, + "end": 32898, + "value": "\n " + }, + { + "type": "operator", + "start": 32898, + "end": 32900, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32900, + "end": 32901, + "value": " " + }, + { + "type": "word", + "start": 32901, + "end": 32905, + "value": "line" + }, + { + "type": "brace", + "start": 32905, + "end": 32906, + "value": "(" + }, + { + "type": "brace", + "start": 32906, + "end": 32907, + "value": "[" + }, + { + "type": "whitespace", + "start": 32907, + "end": 32915, + "value": "\n " + }, + { + "type": "number", + "start": 32915, + "end": 32933, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 32933, + "end": 32934, + "value": "," + }, + { + "type": "whitespace", + "start": 32934, + "end": 32942, + "value": "\n " + }, + { + "type": "number", + "start": 32942, + "end": 32961, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 32961, + "end": 32967, + "value": "\n " + }, + { + "type": "brace", + "start": 32967, + "end": 32968, + "value": "]" + }, + { + "type": "comma", + "start": 32968, + "end": 32969, + "value": "," + }, + { + "type": "whitespace", + "start": 32969, + "end": 32970, + "value": " " + }, + { + "type": "operator", + "start": 32970, + "end": 32971, + "value": "%" + }, + { + "type": "brace", + "start": 32971, + "end": 32972, + "value": ")" + }, + { + "type": "whitespace", + "start": 32972, + "end": 32975, + "value": "\n " + }, + { + "type": "operator", + "start": 32975, + "end": 32977, + "value": "|>" + }, + { + "type": "whitespace", + "start": 32977, + "end": 32978, + "value": " " + }, + { + "type": "word", + "start": 32978, + "end": 32982, + "value": "line" + }, + { + "type": "brace", + "start": 32982, + "end": 32983, + "value": "(" + }, + { + "type": "brace", + "start": 32983, + "end": 32984, + "value": "[" + }, + { + "type": "whitespace", + "start": 32984, + "end": 32992, + "value": "\n " + }, + { + "type": "operator", + "start": 32992, + "end": 32993, + "value": "-" + }, + { + "type": "number", + "start": 32993, + "end": 33012, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 33012, + "end": 33013, + "value": "," + }, + { + "type": "whitespace", + "start": 33013, + "end": 33021, + "value": "\n " + }, + { + "type": "operator", + "start": 33021, + "end": 33022, + "value": "-" + }, + { + "type": "number", + "start": 33022, + "end": 33040, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 33040, + "end": 33046, + "value": "\n " + }, + { + "type": "brace", + "start": 33046, + "end": 33047, + "value": "]" + }, + { + "type": "comma", + "start": 33047, + "end": 33048, + "value": "," + }, + { + "type": "whitespace", + "start": 33048, + "end": 33049, + "value": " " + }, + { + "type": "operator", + "start": 33049, + "end": 33050, + "value": "%" + }, + { + "type": "brace", + "start": 33050, + "end": 33051, + "value": ")" + }, + { + "type": "whitespace", + "start": 33051, + "end": 33054, + "value": "\n " + }, + { + "type": "operator", + "start": 33054, + "end": 33056, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33056, + "end": 33057, + "value": " " + }, + { + "type": "word", + "start": 33057, + "end": 33061, + "value": "line" + }, + { + "type": "brace", + "start": 33061, + "end": 33062, + "value": "(" + }, + { + "type": "brace", + "start": 33062, + "end": 33063, + "value": "[" + }, + { + "type": "whitespace", + "start": 33063, + "end": 33071, + "value": "\n " + }, + { + "type": "operator", + "start": 33071, + "end": 33072, + "value": "-" + }, + { + "type": "number", + "start": 33072, + "end": 33091, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 33091, + "end": 33092, + "value": "," + }, + { + "type": "whitespace", + "start": 33092, + "end": 33100, + "value": "\n " + }, + { + "type": "operator", + "start": 33100, + "end": 33101, + "value": "-" + }, + { + "type": "number", + "start": 33101, + "end": 33119, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 33119, + "end": 33125, + "value": "\n " + }, + { + "type": "brace", + "start": 33125, + "end": 33126, + "value": "]" + }, + { + "type": "comma", + "start": 33126, + "end": 33127, + "value": "," + }, + { + "type": "whitespace", + "start": 33127, + "end": 33128, + "value": " " + }, + { + "type": "operator", + "start": 33128, + "end": 33129, + "value": "%" + }, + { + "type": "brace", + "start": 33129, + "end": 33130, + "value": ")" + }, + { + "type": "whitespace", + "start": 33130, + "end": 33133, + "value": "\n " + }, + { + "type": "operator", + "start": 33133, + "end": 33135, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33135, + "end": 33136, + "value": " " + }, + { + "type": "word", + "start": 33136, + "end": 33140, + "value": "line" + }, + { + "type": "brace", + "start": 33140, + "end": 33141, + "value": "(" + }, + { + "type": "brace", + "start": 33141, + "end": 33142, + "value": "[" + }, + { + "type": "number", + "start": 33142, + "end": 33160, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 33160, + "end": 33161, + "value": "," + }, + { + "type": "whitespace", + "start": 33161, + "end": 33162, + "value": " " + }, + { + "type": "number", + "start": 33162, + "end": 33180, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 33180, + "end": 33181, + "value": "]" + }, + { + "type": "comma", + "start": 33181, + "end": 33182, + "value": "," + }, + { + "type": "whitespace", + "start": 33182, + "end": 33183, + "value": " " + }, + { + "type": "operator", + "start": 33183, + "end": 33184, + "value": "%" + }, + { + "type": "brace", + "start": 33184, + "end": 33185, + "value": ")" + }, + { + "type": "whitespace", + "start": 33185, + "end": 33188, + "value": "\n " + }, + { + "type": "operator", + "start": 33188, + "end": 33190, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33190, + "end": 33191, + "value": " " + }, + { + "type": "word", + "start": 33191, + "end": 33195, + "value": "line" + }, + { + "type": "brace", + "start": 33195, + "end": 33196, + "value": "(" + }, + { + "type": "brace", + "start": 33196, + "end": 33197, + "value": "[" + }, + { + "type": "whitespace", + "start": 33197, + "end": 33205, + "value": "\n " + }, + { + "type": "operator", + "start": 33205, + "end": 33206, + "value": "-" + }, + { + "type": "number", + "start": 33206, + "end": 33225, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 33225, + "end": 33226, + "value": "," + }, + { + "type": "whitespace", + "start": 33226, + "end": 33234, + "value": "\n " + }, + { + "type": "operator", + "start": 33234, + "end": 33235, + "value": "-" + }, + { + "type": "number", + "start": 33235, + "end": 33253, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 33253, + "end": 33259, + "value": "\n " + }, + { + "type": "brace", + "start": 33259, + "end": 33260, + "value": "]" + }, + { + "type": "comma", + "start": 33260, + "end": 33261, + "value": "," + }, + { + "type": "whitespace", + "start": 33261, + "end": 33262, + "value": " " + }, + { + "type": "operator", + "start": 33262, + "end": 33263, + "value": "%" + }, + { + "type": "brace", + "start": 33263, + "end": 33264, + "value": ")" + }, + { + "type": "whitespace", + "start": 33264, + "end": 33267, + "value": "\n " + }, + { + "type": "operator", + "start": 33267, + "end": 33269, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33269, + "end": 33270, + "value": " " + }, + { + "type": "word", + "start": 33270, + "end": 33274, + "value": "line" + }, + { + "type": "brace", + "start": 33274, + "end": 33275, + "value": "(" + }, + { + "type": "brace", + "start": 33275, + "end": 33276, + "value": "[" + }, + { + "type": "whitespace", + "start": 33276, + "end": 33284, + "value": "\n " + }, + { + "type": "number", + "start": 33284, + "end": 33302, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 33302, + "end": 33303, + "value": "," + }, + { + "type": "whitespace", + "start": 33303, + "end": 33311, + "value": "\n " + }, + { + "type": "operator", + "start": 33311, + "end": 33312, + "value": "-" + }, + { + "type": "number", + "start": 33312, + "end": 33330, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 33330, + "end": 33336, + "value": "\n " + }, + { + "type": "brace", + "start": 33336, + "end": 33337, + "value": "]" + }, + { + "type": "comma", + "start": 33337, + "end": 33338, + "value": "," + }, + { + "type": "whitespace", + "start": 33338, + "end": 33339, + "value": " " + }, + { + "type": "operator", + "start": 33339, + "end": 33340, + "value": "%" + }, + { + "type": "brace", + "start": 33340, + "end": 33341, + "value": ")" + }, + { + "type": "whitespace", + "start": 33341, + "end": 33344, + "value": "\n " + }, + { + "type": "operator", + "start": 33344, + "end": 33346, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33346, + "end": 33347, + "value": " " + }, + { + "type": "word", + "start": 33347, + "end": 33351, + "value": "line" + }, + { + "type": "brace", + "start": 33351, + "end": 33352, + "value": "(" + }, + { + "type": "brace", + "start": 33352, + "end": 33353, + "value": "[" + }, + { + "type": "whitespace", + "start": 33353, + "end": 33361, + "value": "\n " + }, + { + "type": "number", + "start": 33361, + "end": 33379, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 33379, + "end": 33380, + "value": "," + }, + { + "type": "whitespace", + "start": 33380, + "end": 33388, + "value": "\n " + }, + { + "type": "operator", + "start": 33388, + "end": 33389, + "value": "-" + }, + { + "type": "number", + "start": 33389, + "end": 33407, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 33407, + "end": 33413, + "value": "\n " + }, + { + "type": "brace", + "start": 33413, + "end": 33414, + "value": "]" + }, + { + "type": "comma", + "start": 33414, + "end": 33415, + "value": "," + }, + { + "type": "whitespace", + "start": 33415, + "end": 33416, + "value": " " + }, + { + "type": "operator", + "start": 33416, + "end": 33417, + "value": "%" + }, + { + "type": "brace", + "start": 33417, + "end": 33418, + "value": ")" + }, + { + "type": "whitespace", + "start": 33418, + "end": 33421, + "value": "\n " + }, + { + "type": "operator", + "start": 33421, + "end": 33423, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33423, + "end": 33424, + "value": " " + }, + { + "type": "word", + "start": 33424, + "end": 33428, + "value": "line" + }, + { + "type": "brace", + "start": 33428, + "end": 33429, + "value": "(" + }, + { + "type": "brace", + "start": 33429, + "end": 33430, + "value": "[" + }, + { + "type": "whitespace", + "start": 33430, + "end": 33438, + "value": "\n " + }, + { + "type": "operator", + "start": 33438, + "end": 33439, + "value": "-" + }, + { + "type": "number", + "start": 33439, + "end": 33457, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 33457, + "end": 33458, + "value": "," + }, + { + "type": "whitespace", + "start": 33458, + "end": 33466, + "value": "\n " + }, + { + "type": "number", + "start": 33466, + "end": 33484, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 33484, + "end": 33490, + "value": "\n " + }, + { + "type": "brace", + "start": 33490, + "end": 33491, + "value": "]" + }, + { + "type": "comma", + "start": 33491, + "end": 33492, + "value": "," + }, + { + "type": "whitespace", + "start": 33492, + "end": 33493, + "value": " " + }, + { + "type": "operator", + "start": 33493, + "end": 33494, + "value": "%" + }, + { + "type": "brace", + "start": 33494, + "end": 33495, + "value": ")" + }, + { + "type": "whitespace", + "start": 33495, + "end": 33498, + "value": "\n " + }, + { + "type": "operator", + "start": 33498, + "end": 33500, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33500, + "end": 33501, + "value": " " + }, + { + "type": "word", + "start": 33501, + "end": 33505, + "value": "line" + }, + { + "type": "brace", + "start": 33505, + "end": 33506, + "value": "(" + }, + { + "type": "brace", + "start": 33506, + "end": 33507, + "value": "[" + }, + { + "type": "whitespace", + "start": 33507, + "end": 33515, + "value": "\n " + }, + { + "type": "number", + "start": 33515, + "end": 33533, + "value": "0.9464450621708211" + }, + { + "type": "comma", + "start": 33533, + "end": 33534, + "value": "," + }, + { + "type": "whitespace", + "start": 33534, + "end": 33542, + "value": "\n " + }, + { + "type": "operator", + "start": 33542, + "end": 33543, + "value": "-" + }, + { + "type": "number", + "start": 33543, + "end": 33561, + "value": "0.2684908127803667" + }, + { + "type": "whitespace", + "start": 33561, + "end": 33567, + "value": "\n " + }, + { + "type": "brace", + "start": 33567, + "end": 33568, + "value": "]" + }, + { + "type": "comma", + "start": 33568, + "end": 33569, + "value": "," + }, + { + "type": "whitespace", + "start": 33569, + "end": 33570, + "value": " " + }, + { + "type": "operator", + "start": 33570, + "end": 33571, + "value": "%" + }, + { + "type": "brace", + "start": 33571, + "end": 33572, + "value": ")" + }, + { + "type": "whitespace", + "start": 33572, + "end": 33575, + "value": "\n " + }, + { + "type": "operator", + "start": 33575, + "end": 33577, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33577, + "end": 33578, + "value": " " + }, + { + "type": "word", + "start": 33578, + "end": 33582, + "value": "line" + }, + { + "type": "brace", + "start": 33582, + "end": 33583, + "value": "(" + }, + { + "type": "brace", + "start": 33583, + "end": 33584, + "value": "[" + }, + { + "type": "number", + "start": 33584, + "end": 33602, + "value": "0.5241732366617591" + }, + { + "type": "comma", + "start": 33602, + "end": 33603, + "value": "," + }, + { + "type": "whitespace", + "start": 33603, + "end": 33604, + "value": " " + }, + { + "type": "number", + "start": 33604, + "end": 33622, + "value": "0.9011437416408563" + }, + { + "type": "brace", + "start": 33622, + "end": 33623, + "value": "]" + }, + { + "type": "comma", + "start": 33623, + "end": 33624, + "value": "," + }, + { + "type": "whitespace", + "start": 33624, + "end": 33625, + "value": " " + }, + { + "type": "operator", + "start": 33625, + "end": 33626, + "value": "%" + }, + { + "type": "brace", + "start": 33626, + "end": 33627, + "value": ")" + }, + { + "type": "whitespace", + "start": 33627, + "end": 33630, + "value": "\n " + }, + { + "type": "operator", + "start": 33630, + "end": 33632, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33632, + "end": 33633, + "value": " " + }, + { + "type": "word", + "start": 33633, + "end": 33637, + "value": "line" + }, + { + "type": "brace", + "start": 33637, + "end": 33638, + "value": "(" + }, + { + "type": "brace", + "start": 33638, + "end": 33639, + "value": "[" + }, + { + "type": "whitespace", + "start": 33639, + "end": 33647, + "value": "\n " + }, + { + "type": "operator", + "start": 33647, + "end": 33648, + "value": "-" + }, + { + "type": "number", + "start": 33648, + "end": 33667, + "value": "0.14255393713960607" + }, + { + "type": "comma", + "start": 33667, + "end": 33668, + "value": "," + }, + { + "type": "whitespace", + "start": 33668, + "end": 33676, + "value": "\n " + }, + { + "type": "operator", + "start": 33676, + "end": 33677, + "value": "-" + }, + { + "type": "number", + "start": 33677, + "end": 33695, + "value": "0.5194262624564814" + }, + { + "type": "whitespace", + "start": 33695, + "end": 33701, + "value": "\n " + }, + { + "type": "brace", + "start": 33701, + "end": 33702, + "value": "]" + }, + { + "type": "comma", + "start": 33702, + "end": 33703, + "value": "," + }, + { + "type": "whitespace", + "start": 33703, + "end": 33704, + "value": " " + }, + { + "type": "operator", + "start": 33704, + "end": 33705, + "value": "%" + }, + { + "type": "brace", + "start": 33705, + "end": 33706, + "value": ")" + }, + { + "type": "whitespace", + "start": 33706, + "end": 33709, + "value": "\n " + }, + { + "type": "operator", + "start": 33709, + "end": 33711, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33711, + "end": 33712, + "value": " " + }, + { + "type": "word", + "start": 33712, + "end": 33716, + "value": "line" + }, + { + "type": "brace", + "start": 33716, + "end": 33717, + "value": "(" + }, + { + "type": "brace", + "start": 33717, + "end": 33718, + "value": "[" + }, + { + "type": "whitespace", + "start": 33718, + "end": 33726, + "value": "\n " + }, + { + "type": "operator", + "start": 33726, + "end": 33727, + "value": "-" + }, + { + "type": "number", + "start": 33727, + "end": 33745, + "value": "0.4287123231350338" + }, + { + "type": "comma", + "start": 33745, + "end": 33746, + "value": "," + }, + { + "type": "whitespace", + "start": 33746, + "end": 33754, + "value": "\n " + }, + { + "type": "operator", + "start": 33754, + "end": 33755, + "value": "-" + }, + { + "type": "number", + "start": 33755, + "end": 33773, + "value": "0.4223564528725028" + }, + { + "type": "whitespace", + "start": 33773, + "end": 33779, + "value": "\n " + }, + { + "type": "brace", + "start": 33779, + "end": 33780, + "value": "]" + }, + { + "type": "comma", + "start": 33780, + "end": 33781, + "value": "," + }, + { + "type": "whitespace", + "start": 33781, + "end": 33782, + "value": " " + }, + { + "type": "operator", + "start": 33782, + "end": 33783, + "value": "%" + }, + { + "type": "brace", + "start": 33783, + "end": 33784, + "value": ")" + }, + { + "type": "whitespace", + "start": 33784, + "end": 33787, + "value": "\n " + }, + { + "type": "operator", + "start": 33787, + "end": 33789, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33789, + "end": 33790, + "value": " " + }, + { + "type": "word", + "start": 33790, + "end": 33794, + "value": "line" + }, + { + "type": "brace", + "start": 33794, + "end": 33795, + "value": "(" + }, + { + "type": "brace", + "start": 33795, + "end": 33796, + "value": "[" + }, + { + "type": "whitespace", + "start": 33796, + "end": 33804, + "value": "\n " + }, + { + "type": "operator", + "start": 33804, + "end": 33805, + "value": "-" + }, + { + "type": "number", + "start": 33805, + "end": 33824, + "value": "0.09316367294024519" + }, + { + "type": "comma", + "start": 33824, + "end": 33825, + "value": "," + }, + { + "type": "whitespace", + "start": 33825, + "end": 33833, + "value": "\n " + }, + { + "type": "operator", + "start": 33833, + "end": 33834, + "value": "-" + }, + { + "type": "number", + "start": 33834, + "end": 33852, + "value": "0.9063127021008246" + }, + { + "type": "whitespace", + "start": 33852, + "end": 33858, + "value": "\n " + }, + { + "type": "brace", + "start": 33858, + "end": 33859, + "value": "]" + }, + { + "type": "comma", + "start": 33859, + "end": 33860, + "value": "," + }, + { + "type": "whitespace", + "start": 33860, + "end": 33861, + "value": " " + }, + { + "type": "operator", + "start": 33861, + "end": 33862, + "value": "%" + }, + { + "type": "brace", + "start": 33862, + "end": 33863, + "value": ")" + }, + { + "type": "whitespace", + "start": 33863, + "end": 33866, + "value": "\n " + }, + { + "type": "operator", + "start": 33866, + "end": 33868, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33868, + "end": 33869, + "value": " " + }, + { + "type": "word", + "start": 33869, + "end": 33873, + "value": "line" + }, + { + "type": "brace", + "start": 33873, + "end": 33874, + "value": "(" + }, + { + "type": "brace", + "start": 33874, + "end": 33875, + "value": "[" + }, + { + "type": "whitespace", + "start": 33875, + "end": 33883, + "value": "\n " + }, + { + "type": "operator", + "start": 33883, + "end": 33884, + "value": "-" + }, + { + "type": "number", + "start": 33884, + "end": 33902, + "value": "0.2767766535558669" + }, + { + "type": "comma", + "start": 33902, + "end": 33903, + "value": "," + }, + { + "type": "whitespace", + "start": 33903, + "end": 33911, + "value": "\n " + }, + { + "type": "number", + "start": 33911, + "end": 33929, + "value": "0.6816248114129131" + }, + { + "type": "whitespace", + "start": 33929, + "end": 33935, + "value": "\n " + }, + { + "type": "brace", + "start": 33935, + "end": 33936, + "value": "]" + }, + { + "type": "comma", + "start": 33936, + "end": 33937, + "value": "," + }, + { + "type": "whitespace", + "start": 33937, + "end": 33938, + "value": " " + }, + { + "type": "operator", + "start": 33938, + "end": 33939, + "value": "%" + }, + { + "type": "brace", + "start": 33939, + "end": 33940, + "value": ")" + }, + { + "type": "whitespace", + "start": 33940, + "end": 33943, + "value": "\n " + }, + { + "type": "operator", + "start": 33943, + "end": 33945, + "value": "|>" + }, + { + "type": "whitespace", + "start": 33945, + "end": 33946, + "value": " " + }, + { + "type": "word", + "start": 33946, + "end": 33950, + "value": "line" + }, + { + "type": "brace", + "start": 33950, + "end": 33951, + "value": "(" + }, + { + "type": "brace", + "start": 33951, + "end": 33952, + "value": "[" + }, + { + "type": "whitespace", + "start": 33952, + "end": 33960, + "value": "\n " + }, + { + "type": "number", + "start": 33960, + "end": 33978, + "value": "0.9796762495562534" + }, + { + "type": "comma", + "start": 33978, + "end": 33979, + "value": "," + }, + { + "type": "whitespace", + "start": 33979, + "end": 33987, + "value": "\n " + }, + { + "type": "operator", + "start": 33987, + "end": 33988, + "value": "-" + }, + { + "type": "number", + "start": 33988, + "end": 34006, + "value": "0.0822145668330625" + }, + { + "type": "whitespace", + "start": 34006, + "end": 34012, + "value": "\n " + }, + { + "type": "brace", + "start": 34012, + "end": 34013, + "value": "]" + }, + { + "type": "comma", + "start": 34013, + "end": 34014, + "value": "," + }, + { + "type": "whitespace", + "start": 34014, + "end": 34015, + "value": " " + }, + { + "type": "operator", + "start": 34015, + "end": 34016, + "value": "%" + }, + { + "type": "brace", + "start": 34016, + "end": 34017, + "value": ")" + }, + { + "type": "whitespace", + "start": 34017, + "end": 34020, + "value": "\n " + }, + { + "type": "operator", + "start": 34020, + "end": 34022, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34022, + "end": 34023, + "value": " " + }, + { + "type": "word", + "start": 34023, + "end": 34027, + "value": "line" + }, + { + "type": "brace", + "start": 34027, + "end": 34028, + "value": "(" + }, + { + "type": "brace", + "start": 34028, + "end": 34029, + "value": "[" + }, + { + "type": "whitespace", + "start": 34029, + "end": 34037, + "value": "\n " + }, + { + "type": "operator", + "start": 34037, + "end": 34038, + "value": "-" + }, + { + "type": "number", + "start": 34038, + "end": 34056, + "value": "0.8666513070867441" + }, + { + "type": "comma", + "start": 34056, + "end": 34057, + "value": "," + }, + { + "type": "whitespace", + "start": 34057, + "end": 34065, + "value": "\n " + }, + { + "type": "operator", + "start": 34065, + "end": 34066, + "value": "-" + }, + { + "type": "number", + "start": 34066, + "end": 34083, + "value": "0.301053160242023" + }, + { + "type": "whitespace", + "start": 34083, + "end": 34089, + "value": "\n " + }, + { + "type": "brace", + "start": 34089, + "end": 34090, + "value": "]" + }, + { + "type": "comma", + "start": 34090, + "end": 34091, + "value": "," + }, + { + "type": "whitespace", + "start": 34091, + "end": 34092, + "value": " " + }, + { + "type": "operator", + "start": 34092, + "end": 34093, + "value": "%" + }, + { + "type": "brace", + "start": 34093, + "end": 34094, + "value": ")" + }, + { + "type": "whitespace", + "start": 34094, + "end": 34097, + "value": "\n " + }, + { + "type": "operator", + "start": 34097, + "end": 34099, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34099, + "end": 34100, + "value": " " + }, + { + "type": "word", + "start": 34100, + "end": 34104, + "value": "line" + }, + { + "type": "brace", + "start": 34104, + "end": 34105, + "value": "(" + }, + { + "type": "brace", + "start": 34105, + "end": 34106, + "value": "[" + }, + { + "type": "whitespace", + "start": 34106, + "end": 34114, + "value": "\n " + }, + { + "type": "number", + "start": 34114, + "end": 34131, + "value": "0.537415656028112" + }, + { + "type": "comma", + "start": 34131, + "end": 34132, + "value": "," + }, + { + "type": "whitespace", + "start": 34132, + "end": 34140, + "value": "\n " + }, + { + "type": "number", + "start": 34140, + "end": 34160, + "value": "0.020272692875002774" + }, + { + "type": "whitespace", + "start": 34160, + "end": 34166, + "value": "\n " + }, + { + "type": "brace", + "start": 34166, + "end": 34167, + "value": "]" + }, + { + "type": "comma", + "start": 34167, + "end": 34168, + "value": "," + }, + { + "type": "whitespace", + "start": 34168, + "end": 34169, + "value": " " + }, + { + "type": "operator", + "start": 34169, + "end": 34170, + "value": "%" + }, + { + "type": "brace", + "start": 34170, + "end": 34171, + "value": ")" + }, + { + "type": "whitespace", + "start": 34171, + "end": 34174, + "value": "\n " + }, + { + "type": "operator", + "start": 34174, + "end": 34176, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34176, + "end": 34177, + "value": " " + }, + { + "type": "word", + "start": 34177, + "end": 34181, + "value": "line" + }, + { + "type": "brace", + "start": 34181, + "end": 34182, + "value": "(" + }, + { + "type": "brace", + "start": 34182, + "end": 34183, + "value": "[" + }, + { + "type": "whitespace", + "start": 34183, + "end": 34191, + "value": "\n " + }, + { + "type": "number", + "start": 34191, + "end": 34209, + "value": "0.9332396256457531" + }, + { + "type": "comma", + "start": 34209, + "end": 34210, + "value": "," + }, + { + "type": "whitespace", + "start": 34210, + "end": 34218, + "value": "\n " + }, + { + "type": "operator", + "start": 34218, + "end": 34219, + "value": "-" + }, + { + "type": "number", + "start": 34219, + "end": 34237, + "value": "0.6228175690649898" + }, + { + "type": "whitespace", + "start": 34237, + "end": 34243, + "value": "\n " + }, + { + "type": "brace", + "start": 34243, + "end": 34244, + "value": "]" + }, + { + "type": "comma", + "start": 34244, + "end": 34245, + "value": "," + }, + { + "type": "whitespace", + "start": 34245, + "end": 34246, + "value": " " + }, + { + "type": "operator", + "start": 34246, + "end": 34247, + "value": "%" + }, + { + "type": "brace", + "start": 34247, + "end": 34248, + "value": ")" + }, + { + "type": "whitespace", + "start": 34248, + "end": 34251, + "value": "\n " + }, + { + "type": "operator", + "start": 34251, + "end": 34253, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34253, + "end": 34254, + "value": " " + }, + { + "type": "word", + "start": 34254, + "end": 34258, + "value": "line" + }, + { + "type": "brace", + "start": 34258, + "end": 34259, + "value": "(" + }, + { + "type": "brace", + "start": 34259, + "end": 34260, + "value": "[" + }, + { + "type": "whitespace", + "start": 34260, + "end": 34268, + "value": "\n " + }, + { + "type": "number", + "start": 34268, + "end": 34287, + "value": "0.18052415837320734" + }, + { + "type": "comma", + "start": 34287, + "end": 34288, + "value": "," + }, + { + "type": "whitespace", + "start": 34288, + "end": 34296, + "value": "\n " + }, + { + "type": "operator", + "start": 34296, + "end": 34297, + "value": "-" + }, + { + "type": "number", + "start": 34297, + "end": 34316, + "value": "0.36894384647296197" + }, + { + "type": "whitespace", + "start": 34316, + "end": 34322, + "value": "\n " + }, + { + "type": "brace", + "start": 34322, + "end": 34323, + "value": "]" + }, + { + "type": "comma", + "start": 34323, + "end": 34324, + "value": "," + }, + { + "type": "whitespace", + "start": 34324, + "end": 34325, + "value": " " + }, + { + "type": "operator", + "start": 34325, + "end": 34326, + "value": "%" + }, + { + "type": "brace", + "start": 34326, + "end": 34327, + "value": ")" + }, + { + "type": "whitespace", + "start": 34327, + "end": 34330, + "value": "\n " + }, + { + "type": "operator", + "start": 34330, + "end": 34332, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34332, + "end": 34333, + "value": " " + }, + { + "type": "word", + "start": 34333, + "end": 34337, + "value": "line" + }, + { + "type": "brace", + "start": 34337, + "end": 34338, + "value": "(" + }, + { + "type": "brace", + "start": 34338, + "end": 34339, + "value": "[" + }, + { + "type": "number", + "start": 34339, + "end": 34357, + "value": "0.5384372634075449" + }, + { + "type": "comma", + "start": 34357, + "end": 34358, + "value": "," + }, + { + "type": "whitespace", + "start": 34358, + "end": 34359, + "value": " " + }, + { + "type": "number", + "start": 34359, + "end": 34377, + "value": "0.2377565050887107" + }, + { + "type": "brace", + "start": 34377, + "end": 34378, + "value": "]" + }, + { + "type": "comma", + "start": 34378, + "end": 34379, + "value": "," + }, + { + "type": "whitespace", + "start": 34379, + "end": 34380, + "value": " " + }, + { + "type": "operator", + "start": 34380, + "end": 34381, + "value": "%" + }, + { + "type": "brace", + "start": 34381, + "end": 34382, + "value": ")" + }, + { + "type": "whitespace", + "start": 34382, + "end": 34385, + "value": "\n " + }, + { + "type": "operator", + "start": 34385, + "end": 34387, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34387, + "end": 34388, + "value": " " + }, + { + "type": "word", + "start": 34388, + "end": 34392, + "value": "line" + }, + { + "type": "brace", + "start": 34392, + "end": 34393, + "value": "(" + }, + { + "type": "brace", + "start": 34393, + "end": 34394, + "value": "[" + }, + { + "type": "whitespace", + "start": 34394, + "end": 34402, + "value": "\n " + }, + { + "type": "number", + "start": 34402, + "end": 34421, + "value": "0.39043436929278874" + }, + { + "type": "comma", + "start": 34421, + "end": 34422, + "value": "," + }, + { + "type": "whitespace", + "start": 34422, + "end": 34430, + "value": "\n " + }, + { + "type": "number", + "start": 34430, + "end": 34449, + "value": "0.14273182483160451" + }, + { + "type": "whitespace", + "start": 34449, + "end": 34455, + "value": "\n " + }, + { + "type": "brace", + "start": 34455, + "end": 34456, + "value": "]" + }, + { + "type": "comma", + "start": 34456, + "end": 34457, + "value": "," + }, + { + "type": "whitespace", + "start": 34457, + "end": 34458, + "value": " " + }, + { + "type": "operator", + "start": 34458, + "end": 34459, + "value": "%" + }, + { + "type": "brace", + "start": 34459, + "end": 34460, + "value": ")" + }, + { + "type": "whitespace", + "start": 34460, + "end": 34463, + "value": "\n " + }, + { + "type": "operator", + "start": 34463, + "end": 34465, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34465, + "end": 34466, + "value": " " + }, + { + "type": "word", + "start": 34466, + "end": 34470, + "value": "line" + }, + { + "type": "brace", + "start": 34470, + "end": 34471, + "value": "(" + }, + { + "type": "brace", + "start": 34471, + "end": 34472, + "value": "[" + }, + { + "type": "whitespace", + "start": 34472, + "end": 34480, + "value": "\n " + }, + { + "type": "number", + "start": 34480, + "end": 34499, + "value": "0.09782890412897283" + }, + { + "type": "comma", + "start": 34499, + "end": 34500, + "value": "," + }, + { + "type": "whitespace", + "start": 34500, + "end": 34508, + "value": "\n " + }, + { + "type": "number", + "start": 34508, + "end": 34526, + "value": "0.9907667536909659" + }, + { + "type": "whitespace", + "start": 34526, + "end": 34532, + "value": "\n " + }, + { + "type": "brace", + "start": 34532, + "end": 34533, + "value": "]" + }, + { + "type": "comma", + "start": 34533, + "end": 34534, + "value": "," + }, + { + "type": "whitespace", + "start": 34534, + "end": 34535, + "value": " " + }, + { + "type": "operator", + "start": 34535, + "end": 34536, + "value": "%" + }, + { + "type": "brace", + "start": 34536, + "end": 34537, + "value": ")" + }, + { + "type": "whitespace", + "start": 34537, + "end": 34540, + "value": "\n " + }, + { + "type": "operator", + "start": 34540, + "end": 34542, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34542, + "end": 34543, + "value": " " + }, + { + "type": "word", + "start": 34543, + "end": 34547, + "value": "line" + }, + { + "type": "brace", + "start": 34547, + "end": 34548, + "value": "(" + }, + { + "type": "brace", + "start": 34548, + "end": 34549, + "value": "[" + }, + { + "type": "whitespace", + "start": 34549, + "end": 34557, + "value": "\n " + }, + { + "type": "number", + "start": 34557, + "end": 34575, + "value": "0.5286610085921146" + }, + { + "type": "comma", + "start": 34575, + "end": 34576, + "value": "," + }, + { + "type": "whitespace", + "start": 34576, + "end": 34584, + "value": "\n " + }, + { + "type": "operator", + "start": 34584, + "end": 34585, + "value": "-" + }, + { + "type": "number", + "start": 34585, + "end": 34603, + "value": "0.7924508308419256" + }, + { + "type": "whitespace", + "start": 34603, + "end": 34609, + "value": "\n " + }, + { + "type": "brace", + "start": 34609, + "end": 34610, + "value": "]" + }, + { + "type": "comma", + "start": 34610, + "end": 34611, + "value": "," + }, + { + "type": "whitespace", + "start": 34611, + "end": 34612, + "value": " " + }, + { + "type": "operator", + "start": 34612, + "end": 34613, + "value": "%" + }, + { + "type": "brace", + "start": 34613, + "end": 34614, + "value": ")" + }, + { + "type": "whitespace", + "start": 34614, + "end": 34617, + "value": "\n " + }, + { + "type": "operator", + "start": 34617, + "end": 34619, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34619, + "end": 34620, + "value": " " + }, + { + "type": "word", + "start": 34620, + "end": 34624, + "value": "line" + }, + { + "type": "brace", + "start": 34624, + "end": 34625, + "value": "(" + }, + { + "type": "brace", + "start": 34625, + "end": 34626, + "value": "[" + }, + { + "type": "whitespace", + "start": 34626, + "end": 34634, + "value": "\n " + }, + { + "type": "number", + "start": 34634, + "end": 34652, + "value": "0.3789978184503342" + }, + { + "type": "comma", + "start": 34652, + "end": 34653, + "value": "," + }, + { + "type": "whitespace", + "start": 34653, + "end": 34661, + "value": "\n " + }, + { + "type": "number", + "start": 34661, + "end": 34680, + "value": "0.12396120576838676" + }, + { + "type": "whitespace", + "start": 34680, + "end": 34686, + "value": "\n " + }, + { + "type": "brace", + "start": 34686, + "end": 34687, + "value": "]" + }, + { + "type": "comma", + "start": 34687, + "end": 34688, + "value": "," + }, + { + "type": "whitespace", + "start": 34688, + "end": 34689, + "value": " " + }, + { + "type": "operator", + "start": 34689, + "end": 34690, + "value": "%" + }, + { + "type": "brace", + "start": 34690, + "end": 34691, + "value": ")" + }, + { + "type": "whitespace", + "start": 34691, + "end": 34694, + "value": "\n " + }, + { + "type": "operator", + "start": 34694, + "end": 34696, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34696, + "end": 34697, + "value": " " + }, + { + "type": "word", + "start": 34697, + "end": 34701, + "value": "line" + }, + { + "type": "brace", + "start": 34701, + "end": 34702, + "value": "(" + }, + { + "type": "brace", + "start": 34702, + "end": 34703, + "value": "[" + }, + { + "type": "whitespace", + "start": 34703, + "end": 34711, + "value": "\n " + }, + { + "type": "operator", + "start": 34711, + "end": 34712, + "value": "-" + }, + { + "type": "number", + "start": 34712, + "end": 34730, + "value": "0.9484912744890612" + }, + { + "type": "comma", + "start": 34730, + "end": 34731, + "value": "," + }, + { + "type": "whitespace", + "start": 34731, + "end": 34739, + "value": "\n " + }, + { + "type": "number", + "start": 34739, + "end": 34757, + "value": "0.6729649846476855" + }, + { + "type": "whitespace", + "start": 34757, + "end": 34763, + "value": "\n " + }, + { + "type": "brace", + "start": 34763, + "end": 34764, + "value": "]" + }, + { + "type": "comma", + "start": 34764, + "end": 34765, + "value": "," + }, + { + "type": "whitespace", + "start": 34765, + "end": 34766, + "value": " " + }, + { + "type": "operator", + "start": 34766, + "end": 34767, + "value": "%" + }, + { + "type": "brace", + "start": 34767, + "end": 34768, + "value": ")" + }, + { + "type": "whitespace", + "start": 34768, + "end": 34771, + "value": "\n " + }, + { + "type": "operator", + "start": 34771, + "end": 34773, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34773, + "end": 34774, + "value": " " + }, + { + "type": "word", + "start": 34774, + "end": 34778, + "value": "line" + }, + { + "type": "brace", + "start": 34778, + "end": 34779, + "value": "(" + }, + { + "type": "brace", + "start": 34779, + "end": 34780, + "value": "[" + }, + { + "type": "whitespace", + "start": 34780, + "end": 34788, + "value": "\n " + }, + { + "type": "number", + "start": 34788, + "end": 34806, + "value": "0.7451758753425153" + }, + { + "type": "comma", + "start": 34806, + "end": 34807, + "value": "," + }, + { + "type": "whitespace", + "start": 34807, + "end": 34815, + "value": "\n " + }, + { + "type": "operator", + "start": 34815, + "end": 34816, + "value": "-" + }, + { + "type": "number", + "start": 34816, + "end": 34835, + "value": "0.21318737562458967" + }, + { + "type": "whitespace", + "start": 34835, + "end": 34841, + "value": "\n " + }, + { + "type": "brace", + "start": 34841, + "end": 34842, + "value": "]" + }, + { + "type": "comma", + "start": 34842, + "end": 34843, + "value": "," + }, + { + "type": "whitespace", + "start": 34843, + "end": 34844, + "value": " " + }, + { + "type": "operator", + "start": 34844, + "end": 34845, + "value": "%" + }, + { + "type": "brace", + "start": 34845, + "end": 34846, + "value": ")" + }, + { + "type": "whitespace", + "start": 34846, + "end": 34849, + "value": "\n " + }, + { + "type": "operator", + "start": 34849, + "end": 34851, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34851, + "end": 34852, + "value": " " + }, + { + "type": "word", + "start": 34852, + "end": 34856, + "value": "line" + }, + { + "type": "brace", + "start": 34856, + "end": 34857, + "value": "(" + }, + { + "type": "brace", + "start": 34857, + "end": 34858, + "value": "[" + }, + { + "type": "whitespace", + "start": 34858, + "end": 34866, + "value": "\n " + }, + { + "type": "number", + "start": 34866, + "end": 34884, + "value": "0.1873200727251887" + }, + { + "type": "comma", + "start": 34884, + "end": 34885, + "value": "," + }, + { + "type": "whitespace", + "start": 34885, + "end": 34893, + "value": "\n " + }, + { + "type": "operator", + "start": 34893, + "end": 34894, + "value": "-" + }, + { + "type": "number", + "start": 34894, + "end": 34913, + "value": "0.15961374297992448" + }, + { + "type": "whitespace", + "start": 34913, + "end": 34919, + "value": "\n " + }, + { + "type": "brace", + "start": 34919, + "end": 34920, + "value": "]" + }, + { + "type": "comma", + "start": 34920, + "end": 34921, + "value": "," + }, + { + "type": "whitespace", + "start": 34921, + "end": 34922, + "value": " " + }, + { + "type": "operator", + "start": 34922, + "end": 34923, + "value": "%" + }, + { + "type": "brace", + "start": 34923, + "end": 34924, + "value": ")" + }, + { + "type": "whitespace", + "start": 34924, + "end": 34927, + "value": "\n " + }, + { + "type": "operator", + "start": 34927, + "end": 34929, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34929, + "end": 34930, + "value": " " + }, + { + "type": "word", + "start": 34930, + "end": 34934, + "value": "line" + }, + { + "type": "brace", + "start": 34934, + "end": 34935, + "value": "(" + }, + { + "type": "brace", + "start": 34935, + "end": 34936, + "value": "[" + }, + { + "type": "whitespace", + "start": 34936, + "end": 34944, + "value": "\n " + }, + { + "type": "operator", + "start": 34944, + "end": 34945, + "value": "-" + }, + { + "type": "number", + "start": 34945, + "end": 34964, + "value": "0.05729464924537564" + }, + { + "type": "comma", + "start": 34964, + "end": 34965, + "value": "," + }, + { + "type": "whitespace", + "start": 34965, + "end": 34973, + "value": "\n " + }, + { + "type": "operator", + "start": 34973, + "end": 34974, + "value": "-" + }, + { + "type": "number", + "start": 34974, + "end": 34992, + "value": "0.5436345558508746" + }, + { + "type": "whitespace", + "start": 34992, + "end": 34998, + "value": "\n " + }, + { + "type": "brace", + "start": 34998, + "end": 34999, + "value": "]" + }, + { + "type": "comma", + "start": 34999, + "end": 35000, + "value": "," + }, + { + "type": "whitespace", + "start": 35000, + "end": 35001, + "value": " " + }, + { + "type": "operator", + "start": 35001, + "end": 35002, + "value": "%" + }, + { + "type": "brace", + "start": 35002, + "end": 35003, + "value": ")" + }, + { + "type": "whitespace", + "start": 35003, + "end": 35006, + "value": "\n " + }, + { + "type": "operator", + "start": 35006, + "end": 35008, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35008, + "end": 35009, + "value": " " + }, + { + "type": "word", + "start": 35009, + "end": 35013, + "value": "line" + }, + { + "type": "brace", + "start": 35013, + "end": 35014, + "value": "(" + }, + { + "type": "brace", + "start": 35014, + "end": 35015, + "value": "[" + }, + { + "type": "whitespace", + "start": 35015, + "end": 35023, + "value": "\n " + }, + { + "type": "operator", + "start": 35023, + "end": 35024, + "value": "-" + }, + { + "type": "number", + "start": 35024, + "end": 35043, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 35043, + "end": 35044, + "value": "," + }, + { + "type": "whitespace", + "start": 35044, + "end": 35052, + "value": "\n " + }, + { + "type": "operator", + "start": 35052, + "end": 35053, + "value": "-" + }, + { + "type": "number", + "start": 35053, + "end": 35071, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 35071, + "end": 35077, + "value": "\n " + }, + { + "type": "brace", + "start": 35077, + "end": 35078, + "value": "]" + }, + { + "type": "comma", + "start": 35078, + "end": 35079, + "value": "," + }, + { + "type": "whitespace", + "start": 35079, + "end": 35080, + "value": " " + }, + { + "type": "operator", + "start": 35080, + "end": 35081, + "value": "%" + }, + { + "type": "brace", + "start": 35081, + "end": 35082, + "value": ")" + }, + { + "type": "whitespace", + "start": 35082, + "end": 35085, + "value": "\n " + }, + { + "type": "operator", + "start": 35085, + "end": 35087, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35087, + "end": 35088, + "value": " " + }, + { + "type": "word", + "start": 35088, + "end": 35092, + "value": "line" + }, + { + "type": "brace", + "start": 35092, + "end": 35093, + "value": "(" + }, + { + "type": "brace", + "start": 35093, + "end": 35094, + "value": "[" + }, + { + "type": "whitespace", + "start": 35094, + "end": 35102, + "value": "\n " + }, + { + "type": "operator", + "start": 35102, + "end": 35103, + "value": "-" + }, + { + "type": "number", + "start": 35103, + "end": 35122, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 35122, + "end": 35123, + "value": "," + }, + { + "type": "whitespace", + "start": 35123, + "end": 35131, + "value": "\n " + }, + { + "type": "operator", + "start": 35131, + "end": 35132, + "value": "-" + }, + { + "type": "number", + "start": 35132, + "end": 35150, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 35150, + "end": 35156, + "value": "\n " + }, + { + "type": "brace", + "start": 35156, + "end": 35157, + "value": "]" + }, + { + "type": "comma", + "start": 35157, + "end": 35158, + "value": "," + }, + { + "type": "whitespace", + "start": 35158, + "end": 35159, + "value": " " + }, + { + "type": "operator", + "start": 35159, + "end": 35160, + "value": "%" + }, + { + "type": "brace", + "start": 35160, + "end": 35161, + "value": ")" + }, + { + "type": "whitespace", + "start": 35161, + "end": 35164, + "value": "\n " + }, + { + "type": "operator", + "start": 35164, + "end": 35166, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35166, + "end": 35167, + "value": " " + }, + { + "type": "word", + "start": 35167, + "end": 35171, + "value": "line" + }, + { + "type": "brace", + "start": 35171, + "end": 35172, + "value": "(" + }, + { + "type": "brace", + "start": 35172, + "end": 35173, + "value": "[" + }, + { + "type": "number", + "start": 35173, + "end": 35191, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 35191, + "end": 35192, + "value": "," + }, + { + "type": "whitespace", + "start": 35192, + "end": 35193, + "value": " " + }, + { + "type": "number", + "start": 35193, + "end": 35211, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 35211, + "end": 35212, + "value": "]" + }, + { + "type": "comma", + "start": 35212, + "end": 35213, + "value": "," + }, + { + "type": "whitespace", + "start": 35213, + "end": 35214, + "value": " " + }, + { + "type": "operator", + "start": 35214, + "end": 35215, + "value": "%" + }, + { + "type": "brace", + "start": 35215, + "end": 35216, + "value": ")" + }, + { + "type": "whitespace", + "start": 35216, + "end": 35219, + "value": "\n " + }, + { + "type": "operator", + "start": 35219, + "end": 35221, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35221, + "end": 35222, + "value": " " + }, + { + "type": "word", + "start": 35222, + "end": 35226, + "value": "line" + }, + { + "type": "brace", + "start": 35226, + "end": 35227, + "value": "(" + }, + { + "type": "brace", + "start": 35227, + "end": 35228, + "value": "[" + }, + { + "type": "whitespace", + "start": 35228, + "end": 35236, + "value": "\n " + }, + { + "type": "operator", + "start": 35236, + "end": 35237, + "value": "-" + }, + { + "type": "number", + "start": 35237, + "end": 35255, + "value": "0.6238548626325471" + }, + { + "type": "comma", + "start": 35255, + "end": 35256, + "value": "," + }, + { + "type": "whitespace", + "start": 35256, + "end": 35264, + "value": "\n " + }, + { + "type": "number", + "start": 35264, + "end": 35282, + "value": "0.4053626746020169" + }, + { + "type": "whitespace", + "start": 35282, + "end": 35288, + "value": "\n " + }, + { + "type": "brace", + "start": 35288, + "end": 35289, + "value": "]" + }, + { + "type": "comma", + "start": 35289, + "end": 35290, + "value": "," + }, + { + "type": "whitespace", + "start": 35290, + "end": 35291, + "value": " " + }, + { + "type": "operator", + "start": 35291, + "end": 35292, + "value": "%" + }, + { + "type": "brace", + "start": 35292, + "end": 35293, + "value": ")" + }, + { + "type": "whitespace", + "start": 35293, + "end": 35296, + "value": "\n " + }, + { + "type": "operator", + "start": 35296, + "end": 35298, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35298, + "end": 35299, + "value": " " + }, + { + "type": "word", + "start": 35299, + "end": 35303, + "value": "line" + }, + { + "type": "brace", + "start": 35303, + "end": 35304, + "value": "(" + }, + { + "type": "brace", + "start": 35304, + "end": 35305, + "value": "[" + }, + { + "type": "whitespace", + "start": 35305, + "end": 35313, + "value": "\n " + }, + { + "type": "number", + "start": 35313, + "end": 35331, + "value": "0.1379445992766417" + }, + { + "type": "comma", + "start": 35331, + "end": 35332, + "value": "," + }, + { + "type": "whitespace", + "start": 35332, + "end": 35340, + "value": "\n " + }, + { + "type": "operator", + "start": 35340, + "end": 35341, + "value": "-" + }, + { + "type": "number", + "start": 35341, + "end": 35360, + "value": "0.47871087958516045" + }, + { + "type": "whitespace", + "start": 35360, + "end": 35366, + "value": "\n " + }, + { + "type": "brace", + "start": 35366, + "end": 35367, + "value": "]" + }, + { + "type": "comma", + "start": 35367, + "end": 35368, + "value": "," + }, + { + "type": "whitespace", + "start": 35368, + "end": 35369, + "value": " " + }, + { + "type": "operator", + "start": 35369, + "end": 35370, + "value": "%" + }, + { + "type": "brace", + "start": 35370, + "end": 35371, + "value": ")" + }, + { + "type": "whitespace", + "start": 35371, + "end": 35374, + "value": "\n " + }, + { + "type": "operator", + "start": 35374, + "end": 35376, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35376, + "end": 35377, + "value": " " + }, + { + "type": "word", + "start": 35377, + "end": 35381, + "value": "line" + }, + { + "type": "brace", + "start": 35381, + "end": 35382, + "value": "(" + }, + { + "type": "brace", + "start": 35382, + "end": 35383, + "value": "[" + }, + { + "type": "whitespace", + "start": 35383, + "end": 35391, + "value": "\n " + }, + { + "type": "operator", + "start": 35391, + "end": 35392, + "value": "-" + }, + { + "type": "number", + "start": 35392, + "end": 35410, + "value": "0.9516767113283946" + }, + { + "type": "comma", + "start": 35410, + "end": 35411, + "value": "," + }, + { + "type": "whitespace", + "start": 35411, + "end": 35419, + "value": "\n " + }, + { + "type": "number", + "start": 35419, + "end": 35437, + "value": "0.8619900618578948" + }, + { + "type": "whitespace", + "start": 35437, + "end": 35443, + "value": "\n " + }, + { + "type": "brace", + "start": 35443, + "end": 35444, + "value": "]" + }, + { + "type": "comma", + "start": 35444, + "end": 35445, + "value": "," + }, + { + "type": "whitespace", + "start": 35445, + "end": 35446, + "value": " " + }, + { + "type": "operator", + "start": 35446, + "end": 35447, + "value": "%" + }, + { + "type": "brace", + "start": 35447, + "end": 35448, + "value": ")" + }, + { + "type": "whitespace", + "start": 35448, + "end": 35451, + "value": "\n " + }, + { + "type": "operator", + "start": 35451, + "end": 35453, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35453, + "end": 35454, + "value": " " + }, + { + "type": "word", + "start": 35454, + "end": 35458, + "value": "line" + }, + { + "type": "brace", + "start": 35458, + "end": 35459, + "value": "(" + }, + { + "type": "brace", + "start": 35459, + "end": 35460, + "value": "[" + }, + { + "type": "number", + "start": 35460, + "end": 35478, + "value": "0.9398732950992088" + }, + { + "type": "comma", + "start": 35478, + "end": 35479, + "value": "," + }, + { + "type": "whitespace", + "start": 35479, + "end": 35480, + "value": " " + }, + { + "type": "number", + "start": 35480, + "end": 35498, + "value": "0.6326239915683629" + }, + { + "type": "brace", + "start": 35498, + "end": 35499, + "value": "]" + }, + { + "type": "comma", + "start": 35499, + "end": 35500, + "value": "," + }, + { + "type": "whitespace", + "start": 35500, + "end": 35501, + "value": " " + }, + { + "type": "operator", + "start": 35501, + "end": 35502, + "value": "%" + }, + { + "type": "brace", + "start": 35502, + "end": 35503, + "value": ")" + }, + { + "type": "whitespace", + "start": 35503, + "end": 35506, + "value": "\n " + }, + { + "type": "operator", + "start": 35506, + "end": 35508, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35508, + "end": 35509, + "value": " " + }, + { + "type": "word", + "start": 35509, + "end": 35513, + "value": "line" + }, + { + "type": "brace", + "start": 35513, + "end": 35514, + "value": "(" + }, + { + "type": "brace", + "start": 35514, + "end": 35515, + "value": "[" + }, + { + "type": "whitespace", + "start": 35515, + "end": 35523, + "value": "\n " + }, + { + "type": "operator", + "start": 35523, + "end": 35524, + "value": "-" + }, + { + "type": "number", + "start": 35524, + "end": 35542, + "value": "0.8631974445502164" + }, + { + "type": "comma", + "start": 35542, + "end": 35543, + "value": "," + }, + { + "type": "whitespace", + "start": 35543, + "end": 35551, + "value": "\n " + }, + { + "type": "number", + "start": 35551, + "end": 35571, + "value": "0.016153555523963137" + }, + { + "type": "whitespace", + "start": 35571, + "end": 35577, + "value": "\n " + }, + { + "type": "brace", + "start": 35577, + "end": 35578, + "value": "]" + }, + { + "type": "comma", + "start": 35578, + "end": 35579, + "value": "," + }, + { + "type": "whitespace", + "start": 35579, + "end": 35580, + "value": " " + }, + { + "type": "operator", + "start": 35580, + "end": 35581, + "value": "%" + }, + { + "type": "brace", + "start": 35581, + "end": 35582, + "value": ")" + }, + { + "type": "whitespace", + "start": 35582, + "end": 35585, + "value": "\n " + }, + { + "type": "operator", + "start": 35585, + "end": 35587, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35587, + "end": 35588, + "value": " " + }, + { + "type": "word", + "start": 35588, + "end": 35592, + "value": "line" + }, + { + "type": "brace", + "start": 35592, + "end": 35593, + "value": "(" + }, + { + "type": "brace", + "start": 35593, + "end": 35594, + "value": "[" + }, + { + "type": "whitespace", + "start": 35594, + "end": 35602, + "value": "\n " + }, + { + "type": "number", + "start": 35602, + "end": 35621, + "value": "0.19167797120152907" + }, + { + "type": "comma", + "start": 35621, + "end": 35622, + "value": "," + }, + { + "type": "whitespace", + "start": 35622, + "end": 35630, + "value": "\n " + }, + { + "type": "operator", + "start": 35630, + "end": 35631, + "value": "-" + }, + { + "type": "number", + "start": 35631, + "end": 35649, + "value": "0.4916414381703984" + }, + { + "type": "whitespace", + "start": 35649, + "end": 35655, + "value": "\n " + }, + { + "type": "brace", + "start": 35655, + "end": 35656, + "value": "]" + }, + { + "type": "comma", + "start": 35656, + "end": 35657, + "value": "," + }, + { + "type": "whitespace", + "start": 35657, + "end": 35658, + "value": " " + }, + { + "type": "operator", + "start": 35658, + "end": 35659, + "value": "%" + }, + { + "type": "brace", + "start": 35659, + "end": 35660, + "value": ")" + }, + { + "type": "whitespace", + "start": 35660, + "end": 35663, + "value": "\n " + }, + { + "type": "operator", + "start": 35663, + "end": 35665, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35665, + "end": 35666, + "value": " " + }, + { + "type": "word", + "start": 35666, + "end": 35670, + "value": "line" + }, + { + "type": "brace", + "start": 35670, + "end": 35671, + "value": "(" + }, + { + "type": "brace", + "start": 35671, + "end": 35672, + "value": "[" + }, + { + "type": "whitespace", + "start": 35672, + "end": 35680, + "value": "\n " + }, + { + "type": "operator", + "start": 35680, + "end": 35681, + "value": "-" + }, + { + "type": "number", + "start": 35681, + "end": 35699, + "value": "0.8644261221501586" + }, + { + "type": "comma", + "start": 35699, + "end": 35700, + "value": "," + }, + { + "type": "whitespace", + "start": 35700, + "end": 35708, + "value": "\n " + }, + { + "type": "operator", + "start": 35708, + "end": 35709, + "value": "-" + }, + { + "type": "number", + "start": 35709, + "end": 35728, + "value": "0.11434763886359756" + }, + { + "type": "whitespace", + "start": 35728, + "end": 35734, + "value": "\n " + }, + { + "type": "brace", + "start": 35734, + "end": 35735, + "value": "]" + }, + { + "type": "comma", + "start": 35735, + "end": 35736, + "value": "," + }, + { + "type": "whitespace", + "start": 35736, + "end": 35737, + "value": " " + }, + { + "type": "operator", + "start": 35737, + "end": 35738, + "value": "%" + }, + { + "type": "brace", + "start": 35738, + "end": 35739, + "value": ")" + }, + { + "type": "whitespace", + "start": 35739, + "end": 35742, + "value": "\n " + }, + { + "type": "operator", + "start": 35742, + "end": 35744, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35744, + "end": 35745, + "value": " " + }, + { + "type": "word", + "start": 35745, + "end": 35749, + "value": "line" + }, + { + "type": "brace", + "start": 35749, + "end": 35750, + "value": "(" + }, + { + "type": "brace", + "start": 35750, + "end": 35751, + "value": "[" + }, + { + "type": "whitespace", + "start": 35751, + "end": 35759, + "value": "\n " + }, + { + "type": "operator", + "start": 35759, + "end": 35760, + "value": "-" + }, + { + "type": "number", + "start": 35760, + "end": 35780, + "value": "0.029081958413378572" + }, + { + "type": "comma", + "start": 35780, + "end": 35781, + "value": "," + }, + { + "type": "whitespace", + "start": 35781, + "end": 35789, + "value": "\n " + }, + { + "type": "operator", + "start": 35789, + "end": 35790, + "value": "-" + }, + { + "type": "number", + "start": 35790, + "end": 35808, + "value": "0.5214138808318329" + }, + { + "type": "whitespace", + "start": 35808, + "end": 35814, + "value": "\n " + }, + { + "type": "brace", + "start": 35814, + "end": 35815, + "value": "]" + }, + { + "type": "comma", + "start": 35815, + "end": 35816, + "value": "," + }, + { + "type": "whitespace", + "start": 35816, + "end": 35817, + "value": " " + }, + { + "type": "operator", + "start": 35817, + "end": 35818, + "value": "%" + }, + { + "type": "brace", + "start": 35818, + "end": 35819, + "value": ")" + }, + { + "type": "whitespace", + "start": 35819, + "end": 35822, + "value": "\n " + }, + { + "type": "operator", + "start": 35822, + "end": 35824, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35824, + "end": 35825, + "value": " " + }, + { + "type": "word", + "start": 35825, + "end": 35829, + "value": "line" + }, + { + "type": "brace", + "start": 35829, + "end": 35830, + "value": "(" + }, + { + "type": "brace", + "start": 35830, + "end": 35831, + "value": "[" + }, + { + "type": "whitespace", + "start": 35831, + "end": 35839, + "value": "\n " + }, + { + "type": "operator", + "start": 35839, + "end": 35840, + "value": "-" + }, + { + "type": "number", + "start": 35840, + "end": 35858, + "value": "0.8713091851579695" + }, + { + "type": "comma", + "start": 35858, + "end": 35859, + "value": "," + }, + { + "type": "whitespace", + "start": 35859, + "end": 35867, + "value": "\n " + }, + { + "type": "number", + "start": 35867, + "end": 35885, + "value": "0.7866284950967315" + }, + { + "type": "whitespace", + "start": 35885, + "end": 35891, + "value": "\n " + }, + { + "type": "brace", + "start": 35891, + "end": 35892, + "value": "]" + }, + { + "type": "comma", + "start": 35892, + "end": 35893, + "value": "," + }, + { + "type": "whitespace", + "start": 35893, + "end": 35894, + "value": " " + }, + { + "type": "operator", + "start": 35894, + "end": 35895, + "value": "%" + }, + { + "type": "brace", + "start": 35895, + "end": 35896, + "value": ")" + }, + { + "type": "whitespace", + "start": 35896, + "end": 35899, + "value": "\n " + }, + { + "type": "operator", + "start": 35899, + "end": 35901, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35901, + "end": 35902, + "value": " " + }, + { + "type": "word", + "start": 35902, + "end": 35906, + "value": "line" + }, + { + "type": "brace", + "start": 35906, + "end": 35907, + "value": "(" + }, + { + "type": "brace", + "start": 35907, + "end": 35908, + "value": "[" + }, + { + "type": "number", + "start": 35908, + "end": 35925, + "value": "0.884342023093545" + }, + { + "type": "comma", + "start": 35925, + "end": 35926, + "value": "," + }, + { + "type": "whitespace", + "start": 35926, + "end": 35927, + "value": " " + }, + { + "type": "operator", + "start": 35927, + "end": 35928, + "value": "-" + }, + { + "type": "number", + "start": 35928, + "end": 35946, + "value": "0.1825407002568431" + }, + { + "type": "brace", + "start": 35946, + "end": 35947, + "value": "]" + }, + { + "type": "comma", + "start": 35947, + "end": 35948, + "value": "," + }, + { + "type": "whitespace", + "start": 35948, + "end": 35949, + "value": " " + }, + { + "type": "operator", + "start": 35949, + "end": 35950, + "value": "%" + }, + { + "type": "brace", + "start": 35950, + "end": 35951, + "value": ")" + }, + { + "type": "whitespace", + "start": 35951, + "end": 35954, + "value": "\n " + }, + { + "type": "operator", + "start": 35954, + "end": 35956, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35956, + "end": 35957, + "value": " " + }, + { + "type": "word", + "start": 35957, + "end": 35961, + "value": "line" + }, + { + "type": "brace", + "start": 35961, + "end": 35962, + "value": "(" + }, + { + "type": "brace", + "start": 35962, + "end": 35963, + "value": "[" + }, + { + "type": "whitespace", + "start": 35963, + "end": 35971, + "value": "\n " + }, + { + "type": "operator", + "start": 35971, + "end": 35972, + "value": "-" + }, + { + "type": "number", + "start": 35972, + "end": 35990, + "value": "0.6978385295364686" + }, + { + "type": "comma", + "start": 35990, + "end": 35991, + "value": "," + }, + { + "type": "whitespace", + "start": 35991, + "end": 35999, + "value": "\n " + }, + { + "type": "number", + "start": 35999, + "end": 36017, + "value": "0.0440574328736949" + }, + { + "type": "whitespace", + "start": 36017, + "end": 36023, + "value": "\n " + }, + { + "type": "brace", + "start": 36023, + "end": 36024, + "value": "]" + }, + { + "type": "comma", + "start": 36024, + "end": 36025, + "value": "," + }, + { + "type": "whitespace", + "start": 36025, + "end": 36026, + "value": " " + }, + { + "type": "operator", + "start": 36026, + "end": 36027, + "value": "%" + }, + { + "type": "brace", + "start": 36027, + "end": 36028, + "value": ")" + }, + { + "type": "whitespace", + "start": 36028, + "end": 36031, + "value": "\n " + }, + { + "type": "operator", + "start": 36031, + "end": 36033, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36033, + "end": 36034, + "value": " " + }, + { + "type": "word", + "start": 36034, + "end": 36038, + "value": "line" + }, + { + "type": "brace", + "start": 36038, + "end": 36039, + "value": "(" + }, + { + "type": "brace", + "start": 36039, + "end": 36040, + "value": "[" + }, + { + "type": "whitespace", + "start": 36040, + "end": 36048, + "value": "\n " + }, + { + "type": "operator", + "start": 36048, + "end": 36049, + "value": "-" + }, + { + "type": "number", + "start": 36049, + "end": 36068, + "value": "0.48055049324331556" + }, + { + "type": "comma", + "start": 36068, + "end": 36069, + "value": "," + }, + { + "type": "whitespace", + "start": 36069, + "end": 36077, + "value": "\n " + }, + { + "type": "operator", + "start": 36077, + "end": 36078, + "value": "-" + }, + { + "type": "number", + "start": 36078, + "end": 36098, + "value": "0.028546347149214002" + }, + { + "type": "whitespace", + "start": 36098, + "end": 36104, + "value": "\n " + }, + { + "type": "brace", + "start": 36104, + "end": 36105, + "value": "]" + }, + { + "type": "comma", + "start": 36105, + "end": 36106, + "value": "," + }, + { + "type": "whitespace", + "start": 36106, + "end": 36107, + "value": " " + }, + { + "type": "operator", + "start": 36107, + "end": 36108, + "value": "%" + }, + { + "type": "brace", + "start": 36108, + "end": 36109, + "value": ")" + }, + { + "type": "whitespace", + "start": 36109, + "end": 36112, + "value": "\n " + }, + { + "type": "operator", + "start": 36112, + "end": 36114, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36114, + "end": 36115, + "value": " " + }, + { + "type": "word", + "start": 36115, + "end": 36119, + "value": "line" + }, + { + "type": "brace", + "start": 36119, + "end": 36120, + "value": "(" + }, + { + "type": "brace", + "start": 36120, + "end": 36121, + "value": "[" + }, + { + "type": "whitespace", + "start": 36121, + "end": 36129, + "value": "\n " + }, + { + "type": "number", + "start": 36129, + "end": 36148, + "value": "0.41283517382864776" + }, + { + "type": "comma", + "start": 36148, + "end": 36149, + "value": "," + }, + { + "type": "whitespace", + "start": 36149, + "end": 36157, + "value": "\n " + }, + { + "type": "operator", + "start": 36157, + "end": 36158, + "value": "-" + }, + { + "type": "number", + "start": 36158, + "end": 36177, + "value": "0.44938038251347323" + }, + { + "type": "whitespace", + "start": 36177, + "end": 36183, + "value": "\n " + }, + { + "type": "brace", + "start": 36183, + "end": 36184, + "value": "]" + }, + { + "type": "comma", + "start": 36184, + "end": 36185, + "value": "," + }, + { + "type": "whitespace", + "start": 36185, + "end": 36186, + "value": " " + }, + { + "type": "operator", + "start": 36186, + "end": 36187, + "value": "%" + }, + { + "type": "brace", + "start": 36187, + "end": 36188, + "value": ")" + }, + { + "type": "whitespace", + "start": 36188, + "end": 36191, + "value": "\n " + }, + { + "type": "operator", + "start": 36191, + "end": 36193, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36193, + "end": 36194, + "value": " " + }, + { + "type": "word", + "start": 36194, + "end": 36198, + "value": "line" + }, + { + "type": "brace", + "start": 36198, + "end": 36199, + "value": "(" + }, + { + "type": "brace", + "start": 36199, + "end": 36200, + "value": "[" + }, + { + "type": "number", + "start": 36200, + "end": 36218, + "value": "0.7911399832501751" + }, + { + "type": "comma", + "start": 36218, + "end": 36219, + "value": "," + }, + { + "type": "whitespace", + "start": 36219, + "end": 36220, + "value": " " + }, + { + "type": "number", + "start": 36220, + "end": 36237, + "value": "0.893446368526005" + }, + { + "type": "brace", + "start": 36237, + "end": 36238, + "value": "]" + }, + { + "type": "comma", + "start": 36238, + "end": 36239, + "value": "," + }, + { + "type": "whitespace", + "start": 36239, + "end": 36240, + "value": " " + }, + { + "type": "operator", + "start": 36240, + "end": 36241, + "value": "%" + }, + { + "type": "brace", + "start": 36241, + "end": 36242, + "value": ")" + }, + { + "type": "whitespace", + "start": 36242, + "end": 36245, + "value": "\n " + }, + { + "type": "operator", + "start": 36245, + "end": 36247, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36247, + "end": 36248, + "value": " " + }, + { + "type": "word", + "start": 36248, + "end": 36252, + "value": "line" + }, + { + "type": "brace", + "start": 36252, + "end": 36253, + "value": "(" + }, + { + "type": "brace", + "start": 36253, + "end": 36254, + "value": "[" + }, + { + "type": "whitespace", + "start": 36254, + "end": 36262, + "value": "\n " + }, + { + "type": "number", + "start": 36262, + "end": 36280, + "value": "0.6507434699009087" + }, + { + "type": "comma", + "start": 36280, + "end": 36281, + "value": "," + }, + { + "type": "whitespace", + "start": 36281, + "end": 36289, + "value": "\n " + }, + { + "type": "operator", + "start": 36289, + "end": 36290, + "value": "-" + }, + { + "type": "number", + "start": 36290, + "end": 36308, + "value": "0.6890023920962012" + }, + { + "type": "whitespace", + "start": 36308, + "end": 36314, + "value": "\n " + }, + { + "type": "brace", + "start": 36314, + "end": 36315, + "value": "]" + }, + { + "type": "comma", + "start": 36315, + "end": 36316, + "value": "," + }, + { + "type": "whitespace", + "start": 36316, + "end": 36317, + "value": " " + }, + { + "type": "operator", + "start": 36317, + "end": 36318, + "value": "%" + }, + { + "type": "brace", + "start": 36318, + "end": 36319, + "value": ")" + }, + { + "type": "whitespace", + "start": 36319, + "end": 36322, + "value": "\n " + }, + { + "type": "operator", + "start": 36322, + "end": 36324, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36324, + "end": 36325, + "value": " " + }, + { + "type": "word", + "start": 36325, + "end": 36329, + "value": "line" + }, + { + "type": "brace", + "start": 36329, + "end": 36330, + "value": "(" + }, + { + "type": "brace", + "start": 36330, + "end": 36331, + "value": "[" + }, + { + "type": "whitespace", + "start": 36331, + "end": 36339, + "value": "\n " + }, + { + "type": "number", + "start": 36339, + "end": 36358, + "value": "0.10489019777253028" + }, + { + "type": "comma", + "start": 36358, + "end": 36359, + "value": "," + }, + { + "type": "whitespace", + "start": 36359, + "end": 36367, + "value": "\n " + }, + { + "type": "operator", + "start": 36367, + "end": 36368, + "value": "-" + }, + { + "type": "number", + "start": 36368, + "end": 36386, + "value": "0.5467450997193952" + }, + { + "type": "whitespace", + "start": 36386, + "end": 36392, + "value": "\n " + }, + { + "type": "brace", + "start": 36392, + "end": 36393, + "value": "]" + }, + { + "type": "comma", + "start": 36393, + "end": 36394, + "value": "," + }, + { + "type": "whitespace", + "start": 36394, + "end": 36395, + "value": " " + }, + { + "type": "operator", + "start": 36395, + "end": 36396, + "value": "%" + }, + { + "type": "brace", + "start": 36396, + "end": 36397, + "value": ")" + }, + { + "type": "whitespace", + "start": 36397, + "end": 36400, + "value": "\n " + }, + { + "type": "operator", + "start": 36400, + "end": 36402, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36402, + "end": 36403, + "value": " " + }, + { + "type": "word", + "start": 36403, + "end": 36407, + "value": "line" + }, + { + "type": "brace", + "start": 36407, + "end": 36408, + "value": "(" + }, + { + "type": "brace", + "start": 36408, + "end": 36409, + "value": "[" + }, + { + "type": "whitespace", + "start": 36409, + "end": 36417, + "value": "\n " + }, + { + "type": "operator", + "start": 36417, + "end": 36418, + "value": "-" + }, + { + "type": "number", + "start": 36418, + "end": 36436, + "value": "0.5760905289992633" + }, + { + "type": "comma", + "start": 36436, + "end": 36437, + "value": "," + }, + { + "type": "whitespace", + "start": 36437, + "end": 36445, + "value": "\n " + }, + { + "type": "operator", + "start": 36445, + "end": 36446, + "value": "-" + }, + { + "type": "number", + "start": 36446, + "end": 36464, + "value": "0.2639900702114173" + }, + { + "type": "whitespace", + "start": 36464, + "end": 36470, + "value": "\n " + }, + { + "type": "brace", + "start": 36470, + "end": 36471, + "value": "]" + }, + { + "type": "comma", + "start": 36471, + "end": 36472, + "value": "," + }, + { + "type": "whitespace", + "start": 36472, + "end": 36473, + "value": " " + }, + { + "type": "operator", + "start": 36473, + "end": 36474, + "value": "%" + }, + { + "type": "brace", + "start": 36474, + "end": 36475, + "value": ")" + }, + { + "type": "whitespace", + "start": 36475, + "end": 36478, + "value": "\n " + }, + { + "type": "operator", + "start": 36478, + "end": 36480, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36480, + "end": 36481, + "value": " " + }, + { + "type": "word", + "start": 36481, + "end": 36485, + "value": "line" + }, + { + "type": "brace", + "start": 36485, + "end": 36486, + "value": "(" + }, + { + "type": "brace", + "start": 36486, + "end": 36487, + "value": "[" + }, + { + "type": "whitespace", + "start": 36487, + "end": 36495, + "value": "\n " + }, + { + "type": "number", + "start": 36495, + "end": 36514, + "value": "0.39828861790105297" + }, + { + "type": "comma", + "start": 36514, + "end": 36515, + "value": "," + }, + { + "type": "whitespace", + "start": 36515, + "end": 36523, + "value": "\n " + }, + { + "type": "number", + "start": 36523, + "end": 36541, + "value": "0.8036624129416385" + }, + { + "type": "whitespace", + "start": 36541, + "end": 36547, + "value": "\n " + }, + { + "type": "brace", + "start": 36547, + "end": 36548, + "value": "]" + }, + { + "type": "comma", + "start": 36548, + "end": 36549, + "value": "," + }, + { + "type": "whitespace", + "start": 36549, + "end": 36550, + "value": " " + }, + { + "type": "operator", + "start": 36550, + "end": 36551, + "value": "%" + }, + { + "type": "brace", + "start": 36551, + "end": 36552, + "value": ")" + }, + { + "type": "whitespace", + "start": 36552, + "end": 36555, + "value": "\n " + }, + { + "type": "operator", + "start": 36555, + "end": 36557, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36557, + "end": 36558, + "value": " " + }, + { + "type": "word", + "start": 36558, + "end": 36562, + "value": "line" + }, + { + "type": "brace", + "start": 36562, + "end": 36563, + "value": "(" + }, + { + "type": "brace", + "start": 36563, + "end": 36564, + "value": "[" + }, + { + "type": "operator", + "start": 36564, + "end": 36565, + "value": "-" + }, + { + "type": "number", + "start": 36565, + "end": 36582, + "value": "0.673848991328553" + }, + { + "type": "comma", + "start": 36582, + "end": 36583, + "value": "," + }, + { + "type": "whitespace", + "start": 36583, + "end": 36584, + "value": " " + }, + { + "type": "operator", + "start": 36584, + "end": 36585, + "value": "-" + }, + { + "type": "number", + "start": 36585, + "end": 36602, + "value": "0.918443329270668" + }, + { + "type": "brace", + "start": 36602, + "end": 36603, + "value": "]" + }, + { + "type": "comma", + "start": 36603, + "end": 36604, + "value": "," + }, + { + "type": "whitespace", + "start": 36604, + "end": 36605, + "value": " " + }, + { + "type": "operator", + "start": 36605, + "end": 36606, + "value": "%" + }, + { + "type": "brace", + "start": 36606, + "end": 36607, + "value": ")" + }, + { + "type": "whitespace", + "start": 36607, + "end": 36610, + "value": "\n " + }, + { + "type": "operator", + "start": 36610, + "end": 36612, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36612, + "end": 36613, + "value": " " + }, + { + "type": "word", + "start": 36613, + "end": 36617, + "value": "line" + }, + { + "type": "brace", + "start": 36617, + "end": 36618, + "value": "(" + }, + { + "type": "brace", + "start": 36618, + "end": 36619, + "value": "[" + }, + { + "type": "whitespace", + "start": 36619, + "end": 36627, + "value": "\n " + }, + { + "type": "operator", + "start": 36627, + "end": 36628, + "value": "-" + }, + { + "type": "number", + "start": 36628, + "end": 36646, + "value": "0.8599152936179257" + }, + { + "type": "comma", + "start": 36646, + "end": 36647, + "value": "," + }, + { + "type": "whitespace", + "start": 36647, + "end": 36655, + "value": "\n " + }, + { + "type": "operator", + "start": 36655, + "end": 36656, + "value": "-" + }, + { + "type": "number", + "start": 36656, + "end": 36674, + "value": "0.9499371022680787" + }, + { + "type": "whitespace", + "start": 36674, + "end": 36680, + "value": "\n " + }, + { + "type": "brace", + "start": 36680, + "end": 36681, + "value": "]" + }, + { + "type": "comma", + "start": 36681, + "end": 36682, + "value": "," + }, + { + "type": "whitespace", + "start": 36682, + "end": 36683, + "value": " " + }, + { + "type": "operator", + "start": 36683, + "end": 36684, + "value": "%" + }, + { + "type": "brace", + "start": 36684, + "end": 36685, + "value": ")" + }, + { + "type": "whitespace", + "start": 36685, + "end": 36688, + "value": "\n " + }, + { + "type": "operator", + "start": 36688, + "end": 36690, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36690, + "end": 36691, + "value": " " + }, + { + "type": "word", + "start": 36691, + "end": 36695, + "value": "line" + }, + { + "type": "brace", + "start": 36695, + "end": 36696, + "value": "(" + }, + { + "type": "brace", + "start": 36696, + "end": 36697, + "value": "[" + }, + { + "type": "whitespace", + "start": 36697, + "end": 36705, + "value": "\n " + }, + { + "type": "number", + "start": 36705, + "end": 36723, + "value": "0.6285243831393765" + }, + { + "type": "comma", + "start": 36723, + "end": 36724, + "value": "," + }, + { + "type": "whitespace", + "start": 36724, + "end": 36732, + "value": "\n " + }, + { + "type": "operator", + "start": 36732, + "end": 36733, + "value": "-" + }, + { + "type": "number", + "start": 36733, + "end": 36751, + "value": "0.5186557636566307" + }, + { + "type": "whitespace", + "start": 36751, + "end": 36757, + "value": "\n " + }, + { + "type": "brace", + "start": 36757, + "end": 36758, + "value": "]" + }, + { + "type": "comma", + "start": 36758, + "end": 36759, + "value": "," + }, + { + "type": "whitespace", + "start": 36759, + "end": 36760, + "value": " " + }, + { + "type": "operator", + "start": 36760, + "end": 36761, + "value": "%" + }, + { + "type": "brace", + "start": 36761, + "end": 36762, + "value": ")" + }, + { + "type": "whitespace", + "start": 36762, + "end": 36765, + "value": "\n " + }, + { + "type": "operator", + "start": 36765, + "end": 36767, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36767, + "end": 36768, + "value": " " + }, + { + "type": "word", + "start": 36768, + "end": 36772, + "value": "line" + }, + { + "type": "brace", + "start": 36772, + "end": 36773, + "value": "(" + }, + { + "type": "brace", + "start": 36773, + "end": 36774, + "value": "[" + }, + { + "type": "whitespace", + "start": 36774, + "end": 36782, + "value": "\n " + }, + { + "type": "number", + "start": 36782, + "end": 36800, + "value": "0.3222412784832269" + }, + { + "type": "comma", + "start": 36800, + "end": 36801, + "value": "," + }, + { + "type": "whitespace", + "start": 36801, + "end": 36809, + "value": "\n " + }, + { + "type": "number", + "start": 36809, + "end": 36828, + "value": "0.24621192679727177" + }, + { + "type": "whitespace", + "start": 36828, + "end": 36834, + "value": "\n " + }, + { + "type": "brace", + "start": 36834, + "end": 36835, + "value": "]" + }, + { + "type": "comma", + "start": 36835, + "end": 36836, + "value": "," + }, + { + "type": "whitespace", + "start": 36836, + "end": 36837, + "value": " " + }, + { + "type": "operator", + "start": 36837, + "end": 36838, + "value": "%" + }, + { + "type": "brace", + "start": 36838, + "end": 36839, + "value": ")" + }, + { + "type": "whitespace", + "start": 36839, + "end": 36842, + "value": "\n " + }, + { + "type": "operator", + "start": 36842, + "end": 36844, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36844, + "end": 36845, + "value": " " + }, + { + "type": "word", + "start": 36845, + "end": 36849, + "value": "line" + }, + { + "type": "brace", + "start": 36849, + "end": 36850, + "value": "(" + }, + { + "type": "brace", + "start": 36850, + "end": 36851, + "value": "[" + }, + { + "type": "whitespace", + "start": 36851, + "end": 36859, + "value": "\n " + }, + { + "type": "number", + "start": 36859, + "end": 36878, + "value": "0.19754357911311016" + }, + { + "type": "comma", + "start": 36878, + "end": 36879, + "value": "," + }, + { + "type": "whitespace", + "start": 36879, + "end": 36887, + "value": "\n " + }, + { + "type": "operator", + "start": 36887, + "end": 36888, + "value": "-" + }, + { + "type": "number", + "start": 36888, + "end": 36906, + "value": "0.7529246632397206" + }, + { + "type": "whitespace", + "start": 36906, + "end": 36912, + "value": "\n " + }, + { + "type": "brace", + "start": 36912, + "end": 36913, + "value": "]" + }, + { + "type": "comma", + "start": 36913, + "end": 36914, + "value": "," + }, + { + "type": "whitespace", + "start": 36914, + "end": 36915, + "value": " " + }, + { + "type": "operator", + "start": 36915, + "end": 36916, + "value": "%" + }, + { + "type": "brace", + "start": 36916, + "end": 36917, + "value": ")" + }, + { + "type": "whitespace", + "start": 36917, + "end": 36920, + "value": "\n " + }, + { + "type": "operator", + "start": 36920, + "end": 36922, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36922, + "end": 36923, + "value": " " + }, + { + "type": "word", + "start": 36923, + "end": 36927, + "value": "line" + }, + { + "type": "brace", + "start": 36927, + "end": 36928, + "value": "(" + }, + { + "type": "brace", + "start": 36928, + "end": 36929, + "value": "[" + }, + { + "type": "whitespace", + "start": 36929, + "end": 36937, + "value": "\n " + }, + { + "type": "operator", + "start": 36937, + "end": 36938, + "value": "-" + }, + { + "type": "number", + "start": 36938, + "end": 36957, + "value": "0.43181570545865555" + }, + { + "type": "comma", + "start": 36957, + "end": 36958, + "value": "," + }, + { + "type": "whitespace", + "start": 36958, + "end": 36966, + "value": "\n " + }, + { + "type": "number", + "start": 36966, + "end": 36985, + "value": "0.18945437402201537" + }, + { + "type": "whitespace", + "start": 36985, + "end": 36991, + "value": "\n " + }, + { + "type": "brace", + "start": 36991, + "end": 36992, + "value": "]" + }, + { + "type": "comma", + "start": 36992, + "end": 36993, + "value": "," + }, + { + "type": "whitespace", + "start": 36993, + "end": 36994, + "value": " " + }, + { + "type": "operator", + "start": 36994, + "end": 36995, + "value": "%" + }, + { + "type": "brace", + "start": 36995, + "end": 36996, + "value": ")" + }, + { + "type": "whitespace", + "start": 36996, + "end": 36999, + "value": "\n " + }, + { + "type": "operator", + "start": 36999, + "end": 37001, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37001, + "end": 37002, + "value": " " + }, + { + "type": "word", + "start": 37002, + "end": 37006, + "value": "line" + }, + { + "type": "brace", + "start": 37006, + "end": 37007, + "value": "(" + }, + { + "type": "brace", + "start": 37007, + "end": 37008, + "value": "[" + }, + { + "type": "whitespace", + "start": 37008, + "end": 37016, + "value": "\n " + }, + { + "type": "number", + "start": 37016, + "end": 37034, + "value": "0.8714511090241797" + }, + { + "type": "comma", + "start": 37034, + "end": 37035, + "value": "," + }, + { + "type": "whitespace", + "start": 37035, + "end": 37043, + "value": "\n " + }, + { + "type": "operator", + "start": 37043, + "end": 37044, + "value": "-" + }, + { + "type": "number", + "start": 37044, + "end": 37062, + "value": "0.7215844196844685" + }, + { + "type": "whitespace", + "start": 37062, + "end": 37068, + "value": "\n " + }, + { + "type": "brace", + "start": 37068, + "end": 37069, + "value": "]" + }, + { + "type": "comma", + "start": 37069, + "end": 37070, + "value": "," + }, + { + "type": "whitespace", + "start": 37070, + "end": 37071, + "value": " " + }, + { + "type": "operator", + "start": 37071, + "end": 37072, + "value": "%" + }, + { + "type": "brace", + "start": 37072, + "end": 37073, + "value": ")" + }, + { + "type": "whitespace", + "start": 37073, + "end": 37076, + "value": "\n " + }, + { + "type": "operator", + "start": 37076, + "end": 37078, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37078, + "end": 37079, + "value": " " + }, + { + "type": "word", + "start": 37079, + "end": 37083, + "value": "line" + }, + { + "type": "brace", + "start": 37083, + "end": 37084, + "value": "(" + }, + { + "type": "brace", + "start": 37084, + "end": 37085, + "value": "[" + }, + { + "type": "whitespace", + "start": 37085, + "end": 37093, + "value": "\n " + }, + { + "type": "operator", + "start": 37093, + "end": 37094, + "value": "-" + }, + { + "type": "number", + "start": 37094, + "end": 37112, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 37112, + "end": 37113, + "value": "," + }, + { + "type": "whitespace", + "start": 37113, + "end": 37121, + "value": "\n " + }, + { + "type": "number", + "start": 37121, + "end": 37140, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 37140, + "end": 37146, + "value": "\n " + }, + { + "type": "brace", + "start": 37146, + "end": 37147, + "value": "]" + }, + { + "type": "comma", + "start": 37147, + "end": 37148, + "value": "," + }, + { + "type": "whitespace", + "start": 37148, + "end": 37149, + "value": " " + }, + { + "type": "operator", + "start": 37149, + "end": 37150, + "value": "%" + }, + { + "type": "brace", + "start": 37150, + "end": 37151, + "value": ")" + }, + { + "type": "whitespace", + "start": 37151, + "end": 37154, + "value": "\n " + }, + { + "type": "operator", + "start": 37154, + "end": 37156, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37156, + "end": 37157, + "value": " " + }, + { + "type": "word", + "start": 37157, + "end": 37161, + "value": "line" + }, + { + "type": "brace", + "start": 37161, + "end": 37162, + "value": "(" + }, + { + "type": "brace", + "start": 37162, + "end": 37163, + "value": "[" + }, + { + "type": "whitespace", + "start": 37163, + "end": 37171, + "value": "\n " + }, + { + "type": "operator", + "start": 37171, + "end": 37172, + "value": "-" + }, + { + "type": "number", + "start": 37172, + "end": 37190, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 37190, + "end": 37191, + "value": "," + }, + { + "type": "whitespace", + "start": 37191, + "end": 37199, + "value": "\n " + }, + { + "type": "number", + "start": 37199, + "end": 37217, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 37217, + "end": 37223, + "value": "\n " + }, + { + "type": "brace", + "start": 37223, + "end": 37224, + "value": "]" + }, + { + "type": "comma", + "start": 37224, + "end": 37225, + "value": "," + }, + { + "type": "whitespace", + "start": 37225, + "end": 37226, + "value": " " + }, + { + "type": "operator", + "start": 37226, + "end": 37227, + "value": "%" + }, + { + "type": "brace", + "start": 37227, + "end": 37228, + "value": ")" + }, + { + "type": "whitespace", + "start": 37228, + "end": 37231, + "value": "\n " + }, + { + "type": "operator", + "start": 37231, + "end": 37233, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37233, + "end": 37234, + "value": " " + }, + { + "type": "word", + "start": 37234, + "end": 37238, + "value": "line" + }, + { + "type": "brace", + "start": 37238, + "end": 37239, + "value": "(" + }, + { + "type": "brace", + "start": 37239, + "end": 37240, + "value": "[" + }, + { + "type": "whitespace", + "start": 37240, + "end": 37248, + "value": "\n " + }, + { + "type": "operator", + "start": 37248, + "end": 37249, + "value": "-" + }, + { + "type": "number", + "start": 37249, + "end": 37267, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 37267, + "end": 37268, + "value": "," + }, + { + "type": "whitespace", + "start": 37268, + "end": 37276, + "value": "\n " + }, + { + "type": "number", + "start": 37276, + "end": 37294, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 37294, + "end": 37300, + "value": "\n " + }, + { + "type": "brace", + "start": 37300, + "end": 37301, + "value": "]" + }, + { + "type": "comma", + "start": 37301, + "end": 37302, + "value": "," + }, + { + "type": "whitespace", + "start": 37302, + "end": 37303, + "value": " " + }, + { + "type": "operator", + "start": 37303, + "end": 37304, + "value": "%" + }, + { + "type": "brace", + "start": 37304, + "end": 37305, + "value": ")" + }, + { + "type": "whitespace", + "start": 37305, + "end": 37308, + "value": "\n " + }, + { + "type": "operator", + "start": 37308, + "end": 37310, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37310, + "end": 37311, + "value": " " + }, + { + "type": "word", + "start": 37311, + "end": 37315, + "value": "line" + }, + { + "type": "brace", + "start": 37315, + "end": 37316, + "value": "(" + }, + { + "type": "brace", + "start": 37316, + "end": 37317, + "value": "[" + }, + { + "type": "whitespace", + "start": 37317, + "end": 37325, + "value": "\n " + }, + { + "type": "operator", + "start": 37325, + "end": 37326, + "value": "-" + }, + { + "type": "number", + "start": 37326, + "end": 37344, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 37344, + "end": 37345, + "value": "," + }, + { + "type": "whitespace", + "start": 37345, + "end": 37353, + "value": "\n " + }, + { + "type": "operator", + "start": 37353, + "end": 37354, + "value": "-" + }, + { + "type": "number", + "start": 37354, + "end": 37373, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 37373, + "end": 37379, + "value": "\n " + }, + { + "type": "brace", + "start": 37379, + "end": 37380, + "value": "]" + }, + { + "type": "comma", + "start": 37380, + "end": 37381, + "value": "," + }, + { + "type": "whitespace", + "start": 37381, + "end": 37382, + "value": " " + }, + { + "type": "operator", + "start": 37382, + "end": 37383, + "value": "%" + }, + { + "type": "brace", + "start": 37383, + "end": 37384, + "value": ")" + }, + { + "type": "whitespace", + "start": 37384, + "end": 37387, + "value": "\n " + }, + { + "type": "operator", + "start": 37387, + "end": 37389, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37389, + "end": 37390, + "value": " " + }, + { + "type": "word", + "start": 37390, + "end": 37394, + "value": "line" + }, + { + "type": "brace", + "start": 37394, + "end": 37395, + "value": "(" + }, + { + "type": "brace", + "start": 37395, + "end": 37396, + "value": "[" + }, + { + "type": "whitespace", + "start": 37396, + "end": 37404, + "value": "\n " + }, + { + "type": "number", + "start": 37404, + "end": 37423, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 37423, + "end": 37424, + "value": "," + }, + { + "type": "whitespace", + "start": 37424, + "end": 37432, + "value": "\n " + }, + { + "type": "number", + "start": 37432, + "end": 37451, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 37451, + "end": 37457, + "value": "\n " + }, + { + "type": "brace", + "start": 37457, + "end": 37458, + "value": "]" + }, + { + "type": "comma", + "start": 37458, + "end": 37459, + "value": "," + }, + { + "type": "whitespace", + "start": 37459, + "end": 37460, + "value": " " + }, + { + "type": "operator", + "start": 37460, + "end": 37461, + "value": "%" + }, + { + "type": "brace", + "start": 37461, + "end": 37462, + "value": ")" + }, + { + "type": "whitespace", + "start": 37462, + "end": 37465, + "value": "\n " + }, + { + "type": "operator", + "start": 37465, + "end": 37467, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37467, + "end": 37468, + "value": " " + }, + { + "type": "word", + "start": 37468, + "end": 37472, + "value": "line" + }, + { + "type": "brace", + "start": 37472, + "end": 37473, + "value": "(" + }, + { + "type": "brace", + "start": 37473, + "end": 37474, + "value": "[" + }, + { + "type": "whitespace", + "start": 37474, + "end": 37482, + "value": "\n " + }, + { + "type": "number", + "start": 37482, + "end": 37501, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 37501, + "end": 37502, + "value": "," + }, + { + "type": "whitespace", + "start": 37502, + "end": 37510, + "value": "\n " + }, + { + "type": "number", + "start": 37510, + "end": 37529, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 37529, + "end": 37535, + "value": "\n " + }, + { + "type": "brace", + "start": 37535, + "end": 37536, + "value": "]" + }, + { + "type": "comma", + "start": 37536, + "end": 37537, + "value": "," + }, + { + "type": "whitespace", + "start": 37537, + "end": 37538, + "value": " " + }, + { + "type": "operator", + "start": 37538, + "end": 37539, + "value": "%" + }, + { + "type": "brace", + "start": 37539, + "end": 37540, + "value": ")" + }, + { + "type": "whitespace", + "start": 37540, + "end": 37543, + "value": "\n " + }, + { + "type": "operator", + "start": 37543, + "end": 37545, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37545, + "end": 37546, + "value": " " + }, + { + "type": "word", + "start": 37546, + "end": 37550, + "value": "line" + }, + { + "type": "brace", + "start": 37550, + "end": 37551, + "value": "(" + }, + { + "type": "brace", + "start": 37551, + "end": 37552, + "value": "[" + }, + { + "type": "whitespace", + "start": 37552, + "end": 37560, + "value": "\n " + }, + { + "type": "operator", + "start": 37560, + "end": 37561, + "value": "-" + }, + { + "type": "number", + "start": 37561, + "end": 37580, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 37580, + "end": 37581, + "value": "," + }, + { + "type": "whitespace", + "start": 37581, + "end": 37589, + "value": "\n " + }, + { + "type": "number", + "start": 37589, + "end": 37607, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 37607, + "end": 37613, + "value": "\n " + }, + { + "type": "brace", + "start": 37613, + "end": 37614, + "value": "]" + }, + { + "type": "comma", + "start": 37614, + "end": 37615, + "value": "," + }, + { + "type": "whitespace", + "start": 37615, + "end": 37616, + "value": " " + }, + { + "type": "operator", + "start": 37616, + "end": 37617, + "value": "%" + }, + { + "type": "brace", + "start": 37617, + "end": 37618, + "value": ")" + }, + { + "type": "whitespace", + "start": 37618, + "end": 37621, + "value": "\n " + }, + { + "type": "operator", + "start": 37621, + "end": 37623, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37623, + "end": 37624, + "value": " " + }, + { + "type": "word", + "start": 37624, + "end": 37628, + "value": "line" + }, + { + "type": "brace", + "start": 37628, + "end": 37629, + "value": "(" + }, + { + "type": "brace", + "start": 37629, + "end": 37630, + "value": "[" + }, + { + "type": "whitespace", + "start": 37630, + "end": 37638, + "value": "\n " + }, + { + "type": "operator", + "start": 37638, + "end": 37639, + "value": "-" + }, + { + "type": "number", + "start": 37639, + "end": 37658, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 37658, + "end": 37659, + "value": "," + }, + { + "type": "whitespace", + "start": 37659, + "end": 37667, + "value": "\n " + }, + { + "type": "operator", + "start": 37667, + "end": 37668, + "value": "-" + }, + { + "type": "number", + "start": 37668, + "end": 37687, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 37687, + "end": 37693, + "value": "\n " + }, + { + "type": "brace", + "start": 37693, + "end": 37694, + "value": "]" + }, + { + "type": "comma", + "start": 37694, + "end": 37695, + "value": "," + }, + { + "type": "whitespace", + "start": 37695, + "end": 37696, + "value": " " + }, + { + "type": "operator", + "start": 37696, + "end": 37697, + "value": "%" + }, + { + "type": "brace", + "start": 37697, + "end": 37698, + "value": ")" + }, + { + "type": "whitespace", + "start": 37698, + "end": 37701, + "value": "\n " + }, + { + "type": "operator", + "start": 37701, + "end": 37703, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37703, + "end": 37704, + "value": " " + }, + { + "type": "word", + "start": 37704, + "end": 37708, + "value": "line" + }, + { + "type": "brace", + "start": 37708, + "end": 37709, + "value": "(" + }, + { + "type": "brace", + "start": 37709, + "end": 37710, + "value": "[" + }, + { + "type": "whitespace", + "start": 37710, + "end": 37718, + "value": "\n " + }, + { + "type": "number", + "start": 37718, + "end": 37736, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 37736, + "end": 37737, + "value": "," + }, + { + "type": "whitespace", + "start": 37737, + "end": 37745, + "value": "\n " + }, + { + "type": "operator", + "start": 37745, + "end": 37746, + "value": "-" + }, + { + "type": "number", + "start": 37746, + "end": 37765, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 37765, + "end": 37771, + "value": "\n " + }, + { + "type": "brace", + "start": 37771, + "end": 37772, + "value": "]" + }, + { + "type": "comma", + "start": 37772, + "end": 37773, + "value": "," + }, + { + "type": "whitespace", + "start": 37773, + "end": 37774, + "value": " " + }, + { + "type": "operator", + "start": 37774, + "end": 37775, + "value": "%" + }, + { + "type": "brace", + "start": 37775, + "end": 37776, + "value": ")" + }, + { + "type": "whitespace", + "start": 37776, + "end": 37779, + "value": "\n " + }, + { + "type": "operator", + "start": 37779, + "end": 37781, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37781, + "end": 37782, + "value": " " + }, + { + "type": "word", + "start": 37782, + "end": 37786, + "value": "line" + }, + { + "type": "brace", + "start": 37786, + "end": 37787, + "value": "(" + }, + { + "type": "brace", + "start": 37787, + "end": 37788, + "value": "[" + }, + { + "type": "whitespace", + "start": 37788, + "end": 37796, + "value": "\n " + }, + { + "type": "number", + "start": 37796, + "end": 37817, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 37817, + "end": 37818, + "value": "," + }, + { + "type": "whitespace", + "start": 37818, + "end": 37826, + "value": "\n " + }, + { + "type": "operator", + "start": 37826, + "end": 37827, + "value": "-" + }, + { + "type": "number", + "start": 37827, + "end": 37845, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 37845, + "end": 37851, + "value": "\n " + }, + { + "type": "brace", + "start": 37851, + "end": 37852, + "value": "]" + }, + { + "type": "comma", + "start": 37852, + "end": 37853, + "value": "," + }, + { + "type": "whitespace", + "start": 37853, + "end": 37854, + "value": " " + }, + { + "type": "operator", + "start": 37854, + "end": 37855, + "value": "%" + }, + { + "type": "brace", + "start": 37855, + "end": 37856, + "value": ")" + }, + { + "type": "whitespace", + "start": 37856, + "end": 37859, + "value": "\n " + }, + { + "type": "operator", + "start": 37859, + "end": 37861, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37861, + "end": 37862, + "value": " " + }, + { + "type": "word", + "start": 37862, + "end": 37866, + "value": "line" + }, + { + "type": "brace", + "start": 37866, + "end": 37867, + "value": "(" + }, + { + "type": "brace", + "start": 37867, + "end": 37868, + "value": "[" + }, + { + "type": "whitespace", + "start": 37868, + "end": 37876, + "value": "\n " + }, + { + "type": "number", + "start": 37876, + "end": 37894, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 37894, + "end": 37895, + "value": "," + }, + { + "type": "whitespace", + "start": 37895, + "end": 37903, + "value": "\n " + }, + { + "type": "operator", + "start": 37903, + "end": 37904, + "value": "-" + }, + { + "type": "number", + "start": 37904, + "end": 37922, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 37922, + "end": 37928, + "value": "\n " + }, + { + "type": "brace", + "start": 37928, + "end": 37929, + "value": "]" + }, + { + "type": "comma", + "start": 37929, + "end": 37930, + "value": "," + }, + { + "type": "whitespace", + "start": 37930, + "end": 37931, + "value": " " + }, + { + "type": "operator", + "start": 37931, + "end": 37932, + "value": "%" + }, + { + "type": "brace", + "start": 37932, + "end": 37933, + "value": ")" + }, + { + "type": "whitespace", + "start": 37933, + "end": 37936, + "value": "\n " + }, + { + "type": "operator", + "start": 37936, + "end": 37938, + "value": "|>" + }, + { + "type": "whitespace", + "start": 37938, + "end": 37939, + "value": " " + }, + { + "type": "word", + "start": 37939, + "end": 37943, + "value": "line" + }, + { + "type": "brace", + "start": 37943, + "end": 37944, + "value": "(" + }, + { + "type": "brace", + "start": 37944, + "end": 37945, + "value": "[" + }, + { + "type": "whitespace", + "start": 37945, + "end": 37953, + "value": "\n " + }, + { + "type": "operator", + "start": 37953, + "end": 37954, + "value": "-" + }, + { + "type": "number", + "start": 37954, + "end": 37972, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 37972, + "end": 37973, + "value": "," + }, + { + "type": "whitespace", + "start": 37973, + "end": 37981, + "value": "\n " + }, + { + "type": "number", + "start": 37981, + "end": 37999, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 37999, + "end": 38005, + "value": "\n " + }, + { + "type": "brace", + "start": 38005, + "end": 38006, + "value": "]" + }, + { + "type": "comma", + "start": 38006, + "end": 38007, + "value": "," + }, + { + "type": "whitespace", + "start": 38007, + "end": 38008, + "value": " " + }, + { + "type": "operator", + "start": 38008, + "end": 38009, + "value": "%" + }, + { + "type": "brace", + "start": 38009, + "end": 38010, + "value": ")" + }, + { + "type": "whitespace", + "start": 38010, + "end": 38013, + "value": "\n " + }, + { + "type": "operator", + "start": 38013, + "end": 38015, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38015, + "end": 38016, + "value": " " + }, + { + "type": "word", + "start": 38016, + "end": 38020, + "value": "line" + }, + { + "type": "brace", + "start": 38020, + "end": 38021, + "value": "(" + }, + { + "type": "brace", + "start": 38021, + "end": 38022, + "value": "[" + }, + { + "type": "number", + "start": 38022, + "end": 38040, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 38040, + "end": 38041, + "value": "," + }, + { + "type": "whitespace", + "start": 38041, + "end": 38042, + "value": " " + }, + { + "type": "number", + "start": 38042, + "end": 38060, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 38060, + "end": 38061, + "value": "]" + }, + { + "type": "comma", + "start": 38061, + "end": 38062, + "value": "," + }, + { + "type": "whitespace", + "start": 38062, + "end": 38063, + "value": " " + }, + { + "type": "operator", + "start": 38063, + "end": 38064, + "value": "%" + }, + { + "type": "brace", + "start": 38064, + "end": 38065, + "value": ")" + }, + { + "type": "whitespace", + "start": 38065, + "end": 38068, + "value": "\n " + }, + { + "type": "operator", + "start": 38068, + "end": 38070, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38070, + "end": 38071, + "value": " " + }, + { + "type": "word", + "start": 38071, + "end": 38075, + "value": "line" + }, + { + "type": "brace", + "start": 38075, + "end": 38076, + "value": "(" + }, + { + "type": "brace", + "start": 38076, + "end": 38077, + "value": "[" + }, + { + "type": "whitespace", + "start": 38077, + "end": 38085, + "value": "\n " + }, + { + "type": "operator", + "start": 38085, + "end": 38086, + "value": "-" + }, + { + "type": "number", + "start": 38086, + "end": 38105, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 38105, + "end": 38106, + "value": "," + }, + { + "type": "whitespace", + "start": 38106, + "end": 38114, + "value": "\n " + }, + { + "type": "number", + "start": 38114, + "end": 38134, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 38134, + "end": 38140, + "value": "\n " + }, + { + "type": "brace", + "start": 38140, + "end": 38141, + "value": "]" + }, + { + "type": "comma", + "start": 38141, + "end": 38142, + "value": "," + }, + { + "type": "whitespace", + "start": 38142, + "end": 38143, + "value": " " + }, + { + "type": "operator", + "start": 38143, + "end": 38144, + "value": "%" + }, + { + "type": "brace", + "start": 38144, + "end": 38145, + "value": ")" + }, + { + "type": "whitespace", + "start": 38145, + "end": 38148, + "value": "\n " + }, + { + "type": "operator", + "start": 38148, + "end": 38150, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38150, + "end": 38151, + "value": " " + }, + { + "type": "word", + "start": 38151, + "end": 38155, + "value": "line" + }, + { + "type": "brace", + "start": 38155, + "end": 38156, + "value": "(" + }, + { + "type": "brace", + "start": 38156, + "end": 38157, + "value": "[" + }, + { + "type": "whitespace", + "start": 38157, + "end": 38165, + "value": "\n " + }, + { + "type": "operator", + "start": 38165, + "end": 38166, + "value": "-" + }, + { + "type": "number", + "start": 38166, + "end": 38184, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 38184, + "end": 38185, + "value": "," + }, + { + "type": "whitespace", + "start": 38185, + "end": 38193, + "value": "\n " + }, + { + "type": "operator", + "start": 38193, + "end": 38194, + "value": "-" + }, + { + "type": "number", + "start": 38194, + "end": 38213, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 38213, + "end": 38219, + "value": "\n " + }, + { + "type": "brace", + "start": 38219, + "end": 38220, + "value": "]" + }, + { + "type": "comma", + "start": 38220, + "end": 38221, + "value": "," + }, + { + "type": "whitespace", + "start": 38221, + "end": 38222, + "value": " " + }, + { + "type": "operator", + "start": 38222, + "end": 38223, + "value": "%" + }, + { + "type": "brace", + "start": 38223, + "end": 38224, + "value": ")" + }, + { + "type": "whitespace", + "start": 38224, + "end": 38227, + "value": "\n " + }, + { + "type": "operator", + "start": 38227, + "end": 38229, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38229, + "end": 38230, + "value": " " + }, + { + "type": "word", + "start": 38230, + "end": 38234, + "value": "line" + }, + { + "type": "brace", + "start": 38234, + "end": 38235, + "value": "(" + }, + { + "type": "brace", + "start": 38235, + "end": 38236, + "value": "[" + }, + { + "type": "whitespace", + "start": 38236, + "end": 38244, + "value": "\n " + }, + { + "type": "operator", + "start": 38244, + "end": 38245, + "value": "-" + }, + { + "type": "number", + "start": 38245, + "end": 38263, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 38263, + "end": 38264, + "value": "," + }, + { + "type": "whitespace", + "start": 38264, + "end": 38272, + "value": "\n " + }, + { + "type": "operator", + "start": 38272, + "end": 38273, + "value": "-" + }, + { + "type": "number", + "start": 38273, + "end": 38292, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 38292, + "end": 38298, + "value": "\n " + }, + { + "type": "brace", + "start": 38298, + "end": 38299, + "value": "]" + }, + { + "type": "comma", + "start": 38299, + "end": 38300, + "value": "," + }, + { + "type": "whitespace", + "start": 38300, + "end": 38301, + "value": " " + }, + { + "type": "operator", + "start": 38301, + "end": 38302, + "value": "%" + }, + { + "type": "brace", + "start": 38302, + "end": 38303, + "value": ")" + }, + { + "type": "whitespace", + "start": 38303, + "end": 38306, + "value": "\n " + }, + { + "type": "operator", + "start": 38306, + "end": 38308, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38308, + "end": 38309, + "value": " " + }, + { + "type": "word", + "start": 38309, + "end": 38313, + "value": "line" + }, + { + "type": "brace", + "start": 38313, + "end": 38314, + "value": "(" + }, + { + "type": "brace", + "start": 38314, + "end": 38315, + "value": "[" + }, + { + "type": "number", + "start": 38315, + "end": 38332, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 38332, + "end": 38333, + "value": "," + }, + { + "type": "whitespace", + "start": 38333, + "end": 38334, + "value": " " + }, + { + "type": "number", + "start": 38334, + "end": 38352, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 38352, + "end": 38353, + "value": "]" + }, + { + "type": "comma", + "start": 38353, + "end": 38354, + "value": "," + }, + { + "type": "whitespace", + "start": 38354, + "end": 38355, + "value": " " + }, + { + "type": "operator", + "start": 38355, + "end": 38356, + "value": "%" + }, + { + "type": "brace", + "start": 38356, + "end": 38357, + "value": ")" + }, + { + "type": "whitespace", + "start": 38357, + "end": 38360, + "value": "\n " + }, + { + "type": "operator", + "start": 38360, + "end": 38362, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38362, + "end": 38363, + "value": " " + }, + { + "type": "word", + "start": 38363, + "end": 38367, + "value": "line" + }, + { + "type": "brace", + "start": 38367, + "end": 38368, + "value": "(" + }, + { + "type": "brace", + "start": 38368, + "end": 38369, + "value": "[" + }, + { + "type": "whitespace", + "start": 38369, + "end": 38377, + "value": "\n " + }, + { + "type": "number", + "start": 38377, + "end": 38396, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 38396, + "end": 38397, + "value": "," + }, + { + "type": "whitespace", + "start": 38397, + "end": 38405, + "value": "\n " + }, + { + "type": "operator", + "start": 38405, + "end": 38406, + "value": "-" + }, + { + "type": "number", + "start": 38406, + "end": 38425, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 38425, + "end": 38431, + "value": "\n " + }, + { + "type": "brace", + "start": 38431, + "end": 38432, + "value": "]" + }, + { + "type": "comma", + "start": 38432, + "end": 38433, + "value": "," + }, + { + "type": "whitespace", + "start": 38433, + "end": 38434, + "value": " " + }, + { + "type": "operator", + "start": 38434, + "end": 38435, + "value": "%" + }, + { + "type": "brace", + "start": 38435, + "end": 38436, + "value": ")" + }, + { + "type": "whitespace", + "start": 38436, + "end": 38439, + "value": "\n " + }, + { + "type": "operator", + "start": 38439, + "end": 38441, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38441, + "end": 38442, + "value": " " + }, + { + "type": "word", + "start": 38442, + "end": 38446, + "value": "line" + }, + { + "type": "brace", + "start": 38446, + "end": 38447, + "value": "(" + }, + { + "type": "brace", + "start": 38447, + "end": 38448, + "value": "[" + }, + { + "type": "number", + "start": 38448, + "end": 38466, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 38466, + "end": 38467, + "value": "," + }, + { + "type": "whitespace", + "start": 38467, + "end": 38468, + "value": " " + }, + { + "type": "number", + "start": 38468, + "end": 38485, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 38485, + "end": 38486, + "value": "]" + }, + { + "type": "comma", + "start": 38486, + "end": 38487, + "value": "," + }, + { + "type": "whitespace", + "start": 38487, + "end": 38488, + "value": " " + }, + { + "type": "operator", + "start": 38488, + "end": 38489, + "value": "%" + }, + { + "type": "brace", + "start": 38489, + "end": 38490, + "value": ")" + }, + { + "type": "whitespace", + "start": 38490, + "end": 38493, + "value": "\n " + }, + { + "type": "operator", + "start": 38493, + "end": 38495, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38495, + "end": 38496, + "value": " " + }, + { + "type": "word", + "start": 38496, + "end": 38500, + "value": "line" + }, + { + "type": "brace", + "start": 38500, + "end": 38501, + "value": "(" + }, + { + "type": "brace", + "start": 38501, + "end": 38502, + "value": "[" + }, + { + "type": "whitespace", + "start": 38502, + "end": 38510, + "value": "\n " + }, + { + "type": "number", + "start": 38510, + "end": 38529, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 38529, + "end": 38530, + "value": "," + }, + { + "type": "whitespace", + "start": 38530, + "end": 38538, + "value": "\n " + }, + { + "type": "operator", + "start": 38538, + "end": 38539, + "value": "-" + }, + { + "type": "number", + "start": 38539, + "end": 38557, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 38557, + "end": 38563, + "value": "\n " + }, + { + "type": "brace", + "start": 38563, + "end": 38564, + "value": "]" + }, + { + "type": "comma", + "start": 38564, + "end": 38565, + "value": "," + }, + { + "type": "whitespace", + "start": 38565, + "end": 38566, + "value": " " + }, + { + "type": "operator", + "start": 38566, + "end": 38567, + "value": "%" + }, + { + "type": "brace", + "start": 38567, + "end": 38568, + "value": ")" + }, + { + "type": "whitespace", + "start": 38568, + "end": 38571, + "value": "\n " + }, + { + "type": "operator", + "start": 38571, + "end": 38573, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38573, + "end": 38574, + "value": " " + }, + { + "type": "word", + "start": 38574, + "end": 38578, + "value": "line" + }, + { + "type": "brace", + "start": 38578, + "end": 38579, + "value": "(" + }, + { + "type": "brace", + "start": 38579, + "end": 38580, + "value": "[" + }, + { + "type": "number", + "start": 38580, + "end": 38598, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 38598, + "end": 38599, + "value": "," + }, + { + "type": "whitespace", + "start": 38599, + "end": 38600, + "value": " " + }, + { + "type": "number", + "start": 38600, + "end": 38618, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 38618, + "end": 38619, + "value": "]" + }, + { + "type": "comma", + "start": 38619, + "end": 38620, + "value": "," + }, + { + "type": "whitespace", + "start": 38620, + "end": 38621, + "value": " " + }, + { + "type": "operator", + "start": 38621, + "end": 38622, + "value": "%" + }, + { + "type": "brace", + "start": 38622, + "end": 38623, + "value": ")" + }, + { + "type": "whitespace", + "start": 38623, + "end": 38626, + "value": "\n " + }, + { + "type": "operator", + "start": 38626, + "end": 38628, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38628, + "end": 38629, + "value": " " + }, + { + "type": "word", + "start": 38629, + "end": 38633, + "value": "line" + }, + { + "type": "brace", + "start": 38633, + "end": 38634, + "value": "(" + }, + { + "type": "brace", + "start": 38634, + "end": 38635, + "value": "[" + }, + { + "type": "whitespace", + "start": 38635, + "end": 38643, + "value": "\n " + }, + { + "type": "number", + "start": 38643, + "end": 38661, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 38661, + "end": 38662, + "value": "," + }, + { + "type": "whitespace", + "start": 38662, + "end": 38670, + "value": "\n " + }, + { + "type": "number", + "start": 38670, + "end": 38689, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 38689, + "end": 38695, + "value": "\n " + }, + { + "type": "brace", + "start": 38695, + "end": 38696, + "value": "]" + }, + { + "type": "comma", + "start": 38696, + "end": 38697, + "value": "," + }, + { + "type": "whitespace", + "start": 38697, + "end": 38698, + "value": " " + }, + { + "type": "operator", + "start": 38698, + "end": 38699, + "value": "%" + }, + { + "type": "brace", + "start": 38699, + "end": 38700, + "value": ")" + }, + { + "type": "whitespace", + "start": 38700, + "end": 38703, + "value": "\n " + }, + { + "type": "operator", + "start": 38703, + "end": 38705, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38705, + "end": 38706, + "value": " " + }, + { + "type": "word", + "start": 38706, + "end": 38710, + "value": "line" + }, + { + "type": "brace", + "start": 38710, + "end": 38711, + "value": "(" + }, + { + "type": "brace", + "start": 38711, + "end": 38712, + "value": "[" + }, + { + "type": "number", + "start": 38712, + "end": 38730, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 38730, + "end": 38731, + "value": "," + }, + { + "type": "whitespace", + "start": 38731, + "end": 38732, + "value": " " + }, + { + "type": "number", + "start": 38732, + "end": 38750, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 38750, + "end": 38751, + "value": "]" + }, + { + "type": "comma", + "start": 38751, + "end": 38752, + "value": "," + }, + { + "type": "whitespace", + "start": 38752, + "end": 38753, + "value": " " + }, + { + "type": "operator", + "start": 38753, + "end": 38754, + "value": "%" + }, + { + "type": "brace", + "start": 38754, + "end": 38755, + "value": ")" + }, + { + "type": "whitespace", + "start": 38755, + "end": 38758, + "value": "\n " + }, + { + "type": "operator", + "start": 38758, + "end": 38760, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38760, + "end": 38761, + "value": " " + }, + { + "type": "word", + "start": 38761, + "end": 38765, + "value": "line" + }, + { + "type": "brace", + "start": 38765, + "end": 38766, + "value": "(" + }, + { + "type": "brace", + "start": 38766, + "end": 38767, + "value": "[" + }, + { + "type": "whitespace", + "start": 38767, + "end": 38775, + "value": "\n " + }, + { + "type": "operator", + "start": 38775, + "end": 38776, + "value": "-" + }, + { + "type": "number", + "start": 38776, + "end": 38795, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 38795, + "end": 38796, + "value": "," + }, + { + "type": "whitespace", + "start": 38796, + "end": 38804, + "value": "\n " + }, + { + "type": "operator", + "start": 38804, + "end": 38805, + "value": "-" + }, + { + "type": "number", + "start": 38805, + "end": 38823, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 38823, + "end": 38829, + "value": "\n " + }, + { + "type": "brace", + "start": 38829, + "end": 38830, + "value": "]" + }, + { + "type": "comma", + "start": 38830, + "end": 38831, + "value": "," + }, + { + "type": "whitespace", + "start": 38831, + "end": 38832, + "value": " " + }, + { + "type": "operator", + "start": 38832, + "end": 38833, + "value": "%" + }, + { + "type": "brace", + "start": 38833, + "end": 38834, + "value": ")" + }, + { + "type": "whitespace", + "start": 38834, + "end": 38837, + "value": "\n " + }, + { + "type": "operator", + "start": 38837, + "end": 38839, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38839, + "end": 38840, + "value": " " + }, + { + "type": "word", + "start": 38840, + "end": 38844, + "value": "line" + }, + { + "type": "brace", + "start": 38844, + "end": 38845, + "value": "(" + }, + { + "type": "brace", + "start": 38845, + "end": 38846, + "value": "[" + }, + { + "type": "whitespace", + "start": 38846, + "end": 38854, + "value": "\n " + }, + { + "type": "number", + "start": 38854, + "end": 38872, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 38872, + "end": 38873, + "value": "," + }, + { + "type": "whitespace", + "start": 38873, + "end": 38881, + "value": "\n " + }, + { + "type": "operator", + "start": 38881, + "end": 38882, + "value": "-" + }, + { + "type": "number", + "start": 38882, + "end": 38900, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 38900, + "end": 38906, + "value": "\n " + }, + { + "type": "brace", + "start": 38906, + "end": 38907, + "value": "]" + }, + { + "type": "comma", + "start": 38907, + "end": 38908, + "value": "," + }, + { + "type": "whitespace", + "start": 38908, + "end": 38909, + "value": " " + }, + { + "type": "operator", + "start": 38909, + "end": 38910, + "value": "%" + }, + { + "type": "brace", + "start": 38910, + "end": 38911, + "value": ")" + }, + { + "type": "whitespace", + "start": 38911, + "end": 38914, + "value": "\n " + }, + { + "type": "operator", + "start": 38914, + "end": 38916, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38916, + "end": 38917, + "value": " " + }, + { + "type": "word", + "start": 38917, + "end": 38921, + "value": "line" + }, + { + "type": "brace", + "start": 38921, + "end": 38922, + "value": "(" + }, + { + "type": "brace", + "start": 38922, + "end": 38923, + "value": "[" + }, + { + "type": "whitespace", + "start": 38923, + "end": 38931, + "value": "\n " + }, + { + "type": "operator", + "start": 38931, + "end": 38932, + "value": "-" + }, + { + "type": "number", + "start": 38932, + "end": 38950, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 38950, + "end": 38951, + "value": "," + }, + { + "type": "whitespace", + "start": 38951, + "end": 38959, + "value": "\n " + }, + { + "type": "operator", + "start": 38959, + "end": 38960, + "value": "-" + }, + { + "type": "number", + "start": 38960, + "end": 38978, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 38978, + "end": 38984, + "value": "\n " + }, + { + "type": "brace", + "start": 38984, + "end": 38985, + "value": "]" + }, + { + "type": "comma", + "start": 38985, + "end": 38986, + "value": "," + }, + { + "type": "whitespace", + "start": 38986, + "end": 38987, + "value": " " + }, + { + "type": "operator", + "start": 38987, + "end": 38988, + "value": "%" + }, + { + "type": "brace", + "start": 38988, + "end": 38989, + "value": ")" + }, + { + "type": "whitespace", + "start": 38989, + "end": 38992, + "value": "\n " + }, + { + "type": "operator", + "start": 38992, + "end": 38994, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38994, + "end": 38995, + "value": " " + }, + { + "type": "word", + "start": 38995, + "end": 38999, + "value": "line" + }, + { + "type": "brace", + "start": 38999, + "end": 39000, + "value": "(" + }, + { + "type": "brace", + "start": 39000, + "end": 39001, + "value": "[" + }, + { + "type": "whitespace", + "start": 39001, + "end": 39009, + "value": "\n " + }, + { + "type": "number", + "start": 39009, + "end": 39029, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 39029, + "end": 39030, + "value": "," + }, + { + "type": "whitespace", + "start": 39030, + "end": 39038, + "value": "\n " + }, + { + "type": "operator", + "start": 39038, + "end": 39039, + "value": "-" + }, + { + "type": "number", + "start": 39039, + "end": 39058, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 39058, + "end": 39064, + "value": "\n " + }, + { + "type": "brace", + "start": 39064, + "end": 39065, + "value": "]" + }, + { + "type": "comma", + "start": 39065, + "end": 39066, + "value": "," + }, + { + "type": "whitespace", + "start": 39066, + "end": 39067, + "value": " " + }, + { + "type": "operator", + "start": 39067, + "end": 39068, + "value": "%" + }, + { + "type": "brace", + "start": 39068, + "end": 39069, + "value": ")" + }, + { + "type": "whitespace", + "start": 39069, + "end": 39072, + "value": "\n " + }, + { + "type": "operator", + "start": 39072, + "end": 39074, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39074, + "end": 39075, + "value": " " + }, + { + "type": "word", + "start": 39075, + "end": 39079, + "value": "line" + }, + { + "type": "brace", + "start": 39079, + "end": 39080, + "value": "(" + }, + { + "type": "brace", + "start": 39080, + "end": 39081, + "value": "[" + }, + { + "type": "whitespace", + "start": 39081, + "end": 39089, + "value": "\n " + }, + { + "type": "number", + "start": 39089, + "end": 39108, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 39108, + "end": 39109, + "value": "," + }, + { + "type": "whitespace", + "start": 39109, + "end": 39117, + "value": "\n " + }, + { + "type": "operator", + "start": 39117, + "end": 39118, + "value": "-" + }, + { + "type": "number", + "start": 39118, + "end": 39137, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 39137, + "end": 39143, + "value": "\n " + }, + { + "type": "brace", + "start": 39143, + "end": 39144, + "value": "]" + }, + { + "type": "comma", + "start": 39144, + "end": 39145, + "value": "," + }, + { + "type": "whitespace", + "start": 39145, + "end": 39146, + "value": " " + }, + { + "type": "operator", + "start": 39146, + "end": 39147, + "value": "%" + }, + { + "type": "brace", + "start": 39147, + "end": 39148, + "value": ")" + }, + { + "type": "whitespace", + "start": 39148, + "end": 39151, + "value": "\n " + }, + { + "type": "operator", + "start": 39151, + "end": 39153, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39153, + "end": 39154, + "value": " " + }, + { + "type": "word", + "start": 39154, + "end": 39158, + "value": "line" + }, + { + "type": "brace", + "start": 39158, + "end": 39159, + "value": "(" + }, + { + "type": "brace", + "start": 39159, + "end": 39160, + "value": "[" + }, + { + "type": "whitespace", + "start": 39160, + "end": 39168, + "value": "\n " + }, + { + "type": "number", + "start": 39168, + "end": 39186, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 39186, + "end": 39187, + "value": "," + }, + { + "type": "whitespace", + "start": 39187, + "end": 39195, + "value": "\n " + }, + { + "type": "operator", + "start": 39195, + "end": 39196, + "value": "-" + }, + { + "type": "number", + "start": 39196, + "end": 39215, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 39215, + "end": 39221, + "value": "\n " + }, + { + "type": "brace", + "start": 39221, + "end": 39222, + "value": "]" + }, + { + "type": "comma", + "start": 39222, + "end": 39223, + "value": "," + }, + { + "type": "whitespace", + "start": 39223, + "end": 39224, + "value": " " + }, + { + "type": "operator", + "start": 39224, + "end": 39225, + "value": "%" + }, + { + "type": "brace", + "start": 39225, + "end": 39226, + "value": ")" + }, + { + "type": "whitespace", + "start": 39226, + "end": 39229, + "value": "\n " + }, + { + "type": "operator", + "start": 39229, + "end": 39231, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39231, + "end": 39232, + "value": " " + }, + { + "type": "word", + "start": 39232, + "end": 39236, + "value": "line" + }, + { + "type": "brace", + "start": 39236, + "end": 39237, + "value": "(" + }, + { + "type": "brace", + "start": 39237, + "end": 39238, + "value": "[" + }, + { + "type": "whitespace", + "start": 39238, + "end": 39246, + "value": "\n " + }, + { + "type": "operator", + "start": 39246, + "end": 39247, + "value": "-" + }, + { + "type": "number", + "start": 39247, + "end": 39265, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 39265, + "end": 39266, + "value": "," + }, + { + "type": "whitespace", + "start": 39266, + "end": 39274, + "value": "\n " + }, + { + "type": "operator", + "start": 39274, + "end": 39275, + "value": "-" + }, + { + "type": "number", + "start": 39275, + "end": 39293, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 39293, + "end": 39299, + "value": "\n " + }, + { + "type": "brace", + "start": 39299, + "end": 39300, + "value": "]" + }, + { + "type": "comma", + "start": 39300, + "end": 39301, + "value": "," + }, + { + "type": "whitespace", + "start": 39301, + "end": 39302, + "value": " " + }, + { + "type": "operator", + "start": 39302, + "end": 39303, + "value": "%" + }, + { + "type": "brace", + "start": 39303, + "end": 39304, + "value": ")" + }, + { + "type": "whitespace", + "start": 39304, + "end": 39307, + "value": "\n " + }, + { + "type": "operator", + "start": 39307, + "end": 39309, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39309, + "end": 39310, + "value": " " + }, + { + "type": "word", + "start": 39310, + "end": 39314, + "value": "line" + }, + { + "type": "brace", + "start": 39314, + "end": 39315, + "value": "(" + }, + { + "type": "brace", + "start": 39315, + "end": 39316, + "value": "[" + }, + { + "type": "number", + "start": 39316, + "end": 39334, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 39334, + "end": 39335, + "value": "," + }, + { + "type": "whitespace", + "start": 39335, + "end": 39336, + "value": " " + }, + { + "type": "number", + "start": 39336, + "end": 39354, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 39354, + "end": 39355, + "value": "]" + }, + { + "type": "comma", + "start": 39355, + "end": 39356, + "value": "," + }, + { + "type": "whitespace", + "start": 39356, + "end": 39357, + "value": " " + }, + { + "type": "operator", + "start": 39357, + "end": 39358, + "value": "%" + }, + { + "type": "brace", + "start": 39358, + "end": 39359, + "value": ")" + }, + { + "type": "whitespace", + "start": 39359, + "end": 39362, + "value": "\n " + }, + { + "type": "operator", + "start": 39362, + "end": 39364, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39364, + "end": 39365, + "value": " " + }, + { + "type": "word", + "start": 39365, + "end": 39369, + "value": "line" + }, + { + "type": "brace", + "start": 39369, + "end": 39370, + "value": "(" + }, + { + "type": "brace", + "start": 39370, + "end": 39371, + "value": "[" + }, + { + "type": "whitespace", + "start": 39371, + "end": 39379, + "value": "\n " + }, + { + "type": "number", + "start": 39379, + "end": 39397, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 39397, + "end": 39398, + "value": "," + }, + { + "type": "whitespace", + "start": 39398, + "end": 39406, + "value": "\n " + }, + { + "type": "number", + "start": 39406, + "end": 39425, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 39425, + "end": 39431, + "value": "\n " + }, + { + "type": "brace", + "start": 39431, + "end": 39432, + "value": "]" + }, + { + "type": "comma", + "start": 39432, + "end": 39433, + "value": "," + }, + { + "type": "whitespace", + "start": 39433, + "end": 39434, + "value": " " + }, + { + "type": "operator", + "start": 39434, + "end": 39435, + "value": "%" + }, + { + "type": "brace", + "start": 39435, + "end": 39436, + "value": ")" + }, + { + "type": "whitespace", + "start": 39436, + "end": 39439, + "value": "\n " + }, + { + "type": "operator", + "start": 39439, + "end": 39441, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39441, + "end": 39442, + "value": " " + }, + { + "type": "word", + "start": 39442, + "end": 39446, + "value": "line" + }, + { + "type": "brace", + "start": 39446, + "end": 39447, + "value": "(" + }, + { + "type": "brace", + "start": 39447, + "end": 39448, + "value": "[" + }, + { + "type": "whitespace", + "start": 39448, + "end": 39456, + "value": "\n " + }, + { + "type": "operator", + "start": 39456, + "end": 39457, + "value": "-" + }, + { + "type": "number", + "start": 39457, + "end": 39476, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 39476, + "end": 39477, + "value": "," + }, + { + "type": "whitespace", + "start": 39477, + "end": 39485, + "value": "\n " + }, + { + "type": "number", + "start": 39485, + "end": 39503, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 39503, + "end": 39509, + "value": "\n " + }, + { + "type": "brace", + "start": 39509, + "end": 39510, + "value": "]" + }, + { + "type": "comma", + "start": 39510, + "end": 39511, + "value": "," + }, + { + "type": "whitespace", + "start": 39511, + "end": 39512, + "value": " " + }, + { + "type": "operator", + "start": 39512, + "end": 39513, + "value": "%" + }, + { + "type": "brace", + "start": 39513, + "end": 39514, + "value": ")" + }, + { + "type": "whitespace", + "start": 39514, + "end": 39517, + "value": "\n " + }, + { + "type": "operator", + "start": 39517, + "end": 39519, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39519, + "end": 39520, + "value": " " + }, + { + "type": "word", + "start": 39520, + "end": 39524, + "value": "line" + }, + { + "type": "brace", + "start": 39524, + "end": 39525, + "value": "(" + }, + { + "type": "brace", + "start": 39525, + "end": 39526, + "value": "[" + }, + { + "type": "whitespace", + "start": 39526, + "end": 39534, + "value": "\n " + }, + { + "type": "operator", + "start": 39534, + "end": 39535, + "value": "-" + }, + { + "type": "number", + "start": 39535, + "end": 39554, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 39554, + "end": 39555, + "value": "," + }, + { + "type": "whitespace", + "start": 39555, + "end": 39563, + "value": "\n " + }, + { + "type": "operator", + "start": 39563, + "end": 39564, + "value": "-" + }, + { + "type": "number", + "start": 39564, + "end": 39583, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 39583, + "end": 39589, + "value": "\n " + }, + { + "type": "brace", + "start": 39589, + "end": 39590, + "value": "]" + }, + { + "type": "comma", + "start": 39590, + "end": 39591, + "value": "," + }, + { + "type": "whitespace", + "start": 39591, + "end": 39592, + "value": " " + }, + { + "type": "operator", + "start": 39592, + "end": 39593, + "value": "%" + }, + { + "type": "brace", + "start": 39593, + "end": 39594, + "value": ")" + }, + { + "type": "whitespace", + "start": 39594, + "end": 39597, + "value": "\n " + }, + { + "type": "operator", + "start": 39597, + "end": 39599, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39599, + "end": 39600, + "value": " " + }, + { + "type": "word", + "start": 39600, + "end": 39604, + "value": "line" + }, + { + "type": "brace", + "start": 39604, + "end": 39605, + "value": "(" + }, + { + "type": "brace", + "start": 39605, + "end": 39606, + "value": "[" + }, + { + "type": "whitespace", + "start": 39606, + "end": 39614, + "value": "\n " + }, + { + "type": "number", + "start": 39614, + "end": 39633, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 39633, + "end": 39634, + "value": "," + }, + { + "type": "whitespace", + "start": 39634, + "end": 39642, + "value": "\n " + }, + { + "type": "operator", + "start": 39642, + "end": 39643, + "value": "-" + }, + { + "type": "number", + "start": 39643, + "end": 39661, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 39661, + "end": 39667, + "value": "\n " + }, + { + "type": "brace", + "start": 39667, + "end": 39668, + "value": "]" + }, + { + "type": "comma", + "start": 39668, + "end": 39669, + "value": "," + }, + { + "type": "whitespace", + "start": 39669, + "end": 39670, + "value": " " + }, + { + "type": "operator", + "start": 39670, + "end": 39671, + "value": "%" + }, + { + "type": "brace", + "start": 39671, + "end": 39672, + "value": ")" + }, + { + "type": "whitespace", + "start": 39672, + "end": 39675, + "value": "\n " + }, + { + "type": "operator", + "start": 39675, + "end": 39677, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39677, + "end": 39678, + "value": " " + }, + { + "type": "word", + "start": 39678, + "end": 39682, + "value": "line" + }, + { + "type": "brace", + "start": 39682, + "end": 39683, + "value": "(" + }, + { + "type": "brace", + "start": 39683, + "end": 39684, + "value": "[" + }, + { + "type": "whitespace", + "start": 39684, + "end": 39692, + "value": "\n " + }, + { + "type": "operator", + "start": 39692, + "end": 39693, + "value": "-" + }, + { + "type": "number", + "start": 39693, + "end": 39711, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 39711, + "end": 39712, + "value": "," + }, + { + "type": "whitespace", + "start": 39712, + "end": 39720, + "value": "\n " + }, + { + "type": "number", + "start": 39720, + "end": 39739, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 39739, + "end": 39745, + "value": "\n " + }, + { + "type": "brace", + "start": 39745, + "end": 39746, + "value": "]" + }, + { + "type": "comma", + "start": 39746, + "end": 39747, + "value": "," + }, + { + "type": "whitespace", + "start": 39747, + "end": 39748, + "value": " " + }, + { + "type": "operator", + "start": 39748, + "end": 39749, + "value": "%" + }, + { + "type": "brace", + "start": 39749, + "end": 39750, + "value": ")" + }, + { + "type": "whitespace", + "start": 39750, + "end": 39753, + "value": "\n " + }, + { + "type": "operator", + "start": 39753, + "end": 39755, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39755, + "end": 39756, + "value": " " + }, + { + "type": "word", + "start": 39756, + "end": 39760, + "value": "line" + }, + { + "type": "brace", + "start": 39760, + "end": 39761, + "value": "(" + }, + { + "type": "brace", + "start": 39761, + "end": 39762, + "value": "[" + }, + { + "type": "number", + "start": 39762, + "end": 39780, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 39780, + "end": 39781, + "value": "," + }, + { + "type": "whitespace", + "start": 39781, + "end": 39782, + "value": " " + }, + { + "type": "number", + "start": 39782, + "end": 39800, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 39800, + "end": 39801, + "value": "]" + }, + { + "type": "comma", + "start": 39801, + "end": 39802, + "value": "," + }, + { + "type": "whitespace", + "start": 39802, + "end": 39803, + "value": " " + }, + { + "type": "operator", + "start": 39803, + "end": 39804, + "value": "%" + }, + { + "type": "brace", + "start": 39804, + "end": 39805, + "value": ")" + }, + { + "type": "whitespace", + "start": 39805, + "end": 39808, + "value": "\n " + }, + { + "type": "operator", + "start": 39808, + "end": 39810, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39810, + "end": 39811, + "value": " " + }, + { + "type": "word", + "start": 39811, + "end": 39815, + "value": "line" + }, + { + "type": "brace", + "start": 39815, + "end": 39816, + "value": "(" + }, + { + "type": "brace", + "start": 39816, + "end": 39817, + "value": "[" + }, + { + "type": "whitespace", + "start": 39817, + "end": 39825, + "value": "\n " + }, + { + "type": "operator", + "start": 39825, + "end": 39826, + "value": "-" + }, + { + "type": "number", + "start": 39826, + "end": 39844, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 39844, + "end": 39845, + "value": "," + }, + { + "type": "whitespace", + "start": 39845, + "end": 39853, + "value": "\n " + }, + { + "type": "operator", + "start": 39853, + "end": 39854, + "value": "-" + }, + { + "type": "number", + "start": 39854, + "end": 39873, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 39873, + "end": 39879, + "value": "\n " + }, + { + "type": "brace", + "start": 39879, + "end": 39880, + "value": "]" + }, + { + "type": "comma", + "start": 39880, + "end": 39881, + "value": "," + }, + { + "type": "whitespace", + "start": 39881, + "end": 39882, + "value": " " + }, + { + "type": "operator", + "start": 39882, + "end": 39883, + "value": "%" + }, + { + "type": "brace", + "start": 39883, + "end": 39884, + "value": ")" + }, + { + "type": "whitespace", + "start": 39884, + "end": 39887, + "value": "\n " + }, + { + "type": "operator", + "start": 39887, + "end": 39889, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39889, + "end": 39890, + "value": " " + }, + { + "type": "word", + "start": 39890, + "end": 39894, + "value": "line" + }, + { + "type": "brace", + "start": 39894, + "end": 39895, + "value": "(" + }, + { + "type": "brace", + "start": 39895, + "end": 39896, + "value": "[" + }, + { + "type": "whitespace", + "start": 39896, + "end": 39904, + "value": "\n " + }, + { + "type": "number", + "start": 39904, + "end": 39922, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 39922, + "end": 39923, + "value": "," + }, + { + "type": "whitespace", + "start": 39923, + "end": 39931, + "value": "\n " + }, + { + "type": "operator", + "start": 39931, + "end": 39932, + "value": "-" + }, + { + "type": "number", + "start": 39932, + "end": 39950, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 39950, + "end": 39956, + "value": "\n " + }, + { + "type": "brace", + "start": 39956, + "end": 39957, + "value": "]" + }, + { + "type": "comma", + "start": 39957, + "end": 39958, + "value": "," + }, + { + "type": "whitespace", + "start": 39958, + "end": 39959, + "value": " " + }, + { + "type": "operator", + "start": 39959, + "end": 39960, + "value": "%" + }, + { + "type": "brace", + "start": 39960, + "end": 39961, + "value": ")" + }, + { + "type": "whitespace", + "start": 39961, + "end": 39964, + "value": "\n " + }, + { + "type": "operator", + "start": 39964, + "end": 39966, + "value": "|>" + }, + { + "type": "whitespace", + "start": 39966, + "end": 39967, + "value": " " + }, + { + "type": "word", + "start": 39967, + "end": 39971, + "value": "line" + }, + { + "type": "brace", + "start": 39971, + "end": 39972, + "value": "(" + }, + { + "type": "brace", + "start": 39972, + "end": 39973, + "value": "[" + }, + { + "type": "whitespace", + "start": 39973, + "end": 39981, + "value": "\n " + }, + { + "type": "number", + "start": 39981, + "end": 39999, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 39999, + "end": 40000, + "value": "," + }, + { + "type": "whitespace", + "start": 40000, + "end": 40008, + "value": "\n " + }, + { + "type": "operator", + "start": 40008, + "end": 40009, + "value": "-" + }, + { + "type": "number", + "start": 40009, + "end": 40027, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 40027, + "end": 40033, + "value": "\n " + }, + { + "type": "brace", + "start": 40033, + "end": 40034, + "value": "]" + }, + { + "type": "comma", + "start": 40034, + "end": 40035, + "value": "," + }, + { + "type": "whitespace", + "start": 40035, + "end": 40036, + "value": " " + }, + { + "type": "operator", + "start": 40036, + "end": 40037, + "value": "%" + }, + { + "type": "brace", + "start": 40037, + "end": 40038, + "value": ")" + }, + { + "type": "whitespace", + "start": 40038, + "end": 40041, + "value": "\n " + }, + { + "type": "operator", + "start": 40041, + "end": 40043, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40043, + "end": 40044, + "value": " " + }, + { + "type": "word", + "start": 40044, + "end": 40048, + "value": "line" + }, + { + "type": "brace", + "start": 40048, + "end": 40049, + "value": "(" + }, + { + "type": "brace", + "start": 40049, + "end": 40050, + "value": "[" + }, + { + "type": "number", + "start": 40050, + "end": 40068, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 40068, + "end": 40069, + "value": "," + }, + { + "type": "whitespace", + "start": 40069, + "end": 40070, + "value": " " + }, + { + "type": "number", + "start": 40070, + "end": 40088, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 40088, + "end": 40089, + "value": "]" + }, + { + "type": "comma", + "start": 40089, + "end": 40090, + "value": "," + }, + { + "type": "whitespace", + "start": 40090, + "end": 40091, + "value": " " + }, + { + "type": "operator", + "start": 40091, + "end": 40092, + "value": "%" + }, + { + "type": "brace", + "start": 40092, + "end": 40093, + "value": ")" + }, + { + "type": "whitespace", + "start": 40093, + "end": 40096, + "value": "\n " + }, + { + "type": "operator", + "start": 40096, + "end": 40098, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40098, + "end": 40099, + "value": " " + }, + { + "type": "word", + "start": 40099, + "end": 40103, + "value": "line" + }, + { + "type": "brace", + "start": 40103, + "end": 40104, + "value": "(" + }, + { + "type": "brace", + "start": 40104, + "end": 40105, + "value": "[" + }, + { + "type": "whitespace", + "start": 40105, + "end": 40113, + "value": "\n " + }, + { + "type": "operator", + "start": 40113, + "end": 40114, + "value": "-" + }, + { + "type": "number", + "start": 40114, + "end": 40132, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 40132, + "end": 40133, + "value": "," + }, + { + "type": "whitespace", + "start": 40133, + "end": 40141, + "value": "\n " + }, + { + "type": "number", + "start": 40141, + "end": 40159, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 40159, + "end": 40165, + "value": "\n " + }, + { + "type": "brace", + "start": 40165, + "end": 40166, + "value": "]" + }, + { + "type": "comma", + "start": 40166, + "end": 40167, + "value": "," + }, + { + "type": "whitespace", + "start": 40167, + "end": 40168, + "value": " " + }, + { + "type": "operator", + "start": 40168, + "end": 40169, + "value": "%" + }, + { + "type": "brace", + "start": 40169, + "end": 40170, + "value": ")" + }, + { + "type": "whitespace", + "start": 40170, + "end": 40173, + "value": "\n " + }, + { + "type": "operator", + "start": 40173, + "end": 40175, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40175, + "end": 40176, + "value": " " + }, + { + "type": "word", + "start": 40176, + "end": 40180, + "value": "line" + }, + { + "type": "brace", + "start": 40180, + "end": 40181, + "value": "(" + }, + { + "type": "brace", + "start": 40181, + "end": 40182, + "value": "[" + }, + { + "type": "number", + "start": 40182, + "end": 40200, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 40200, + "end": 40201, + "value": "," + }, + { + "type": "whitespace", + "start": 40201, + "end": 40202, + "value": " " + }, + { + "type": "number", + "start": 40202, + "end": 40220, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 40220, + "end": 40221, + "value": "]" + }, + { + "type": "comma", + "start": 40221, + "end": 40222, + "value": "," + }, + { + "type": "whitespace", + "start": 40222, + "end": 40223, + "value": " " + }, + { + "type": "operator", + "start": 40223, + "end": 40224, + "value": "%" + }, + { + "type": "brace", + "start": 40224, + "end": 40225, + "value": ")" + }, + { + "type": "whitespace", + "start": 40225, + "end": 40228, + "value": "\n " + }, + { + "type": "operator", + "start": 40228, + "end": 40230, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40230, + "end": 40231, + "value": " " + }, + { + "type": "word", + "start": 40231, + "end": 40235, + "value": "line" + }, + { + "type": "brace", + "start": 40235, + "end": 40236, + "value": "(" + }, + { + "type": "brace", + "start": 40236, + "end": 40237, + "value": "[" + }, + { + "type": "whitespace", + "start": 40237, + "end": 40245, + "value": "\n " + }, + { + "type": "number", + "start": 40245, + "end": 40263, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 40263, + "end": 40264, + "value": "," + }, + { + "type": "whitespace", + "start": 40264, + "end": 40272, + "value": "\n " + }, + { + "type": "number", + "start": 40272, + "end": 40291, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 40291, + "end": 40297, + "value": "\n " + }, + { + "type": "brace", + "start": 40297, + "end": 40298, + "value": "]" + }, + { + "type": "comma", + "start": 40298, + "end": 40299, + "value": "," + }, + { + "type": "whitespace", + "start": 40299, + "end": 40300, + "value": " " + }, + { + "type": "operator", + "start": 40300, + "end": 40301, + "value": "%" + }, + { + "type": "brace", + "start": 40301, + "end": 40302, + "value": ")" + }, + { + "type": "whitespace", + "start": 40302, + "end": 40305, + "value": "\n " + }, + { + "type": "operator", + "start": 40305, + "end": 40307, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40307, + "end": 40308, + "value": " " + }, + { + "type": "word", + "start": 40308, + "end": 40312, + "value": "line" + }, + { + "type": "brace", + "start": 40312, + "end": 40313, + "value": "(" + }, + { + "type": "brace", + "start": 40313, + "end": 40314, + "value": "[" + }, + { + "type": "whitespace", + "start": 40314, + "end": 40322, + "value": "\n " + }, + { + "type": "operator", + "start": 40322, + "end": 40323, + "value": "-" + }, + { + "type": "number", + "start": 40323, + "end": 40341, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 40341, + "end": 40342, + "value": "," + }, + { + "type": "whitespace", + "start": 40342, + "end": 40350, + "value": "\n " + }, + { + "type": "operator", + "start": 40350, + "end": 40351, + "value": "-" + }, + { + "type": "number", + "start": 40351, + "end": 40368, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 40368, + "end": 40374, + "value": "\n " + }, + { + "type": "brace", + "start": 40374, + "end": 40375, + "value": "]" + }, + { + "type": "comma", + "start": 40375, + "end": 40376, + "value": "," + }, + { + "type": "whitespace", + "start": 40376, + "end": 40377, + "value": " " + }, + { + "type": "operator", + "start": 40377, + "end": 40378, + "value": "%" + }, + { + "type": "brace", + "start": 40378, + "end": 40379, + "value": ")" + }, + { + "type": "whitespace", + "start": 40379, + "end": 40382, + "value": "\n " + }, + { + "type": "operator", + "start": 40382, + "end": 40384, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40384, + "end": 40385, + "value": " " + }, + { + "type": "word", + "start": 40385, + "end": 40389, + "value": "line" + }, + { + "type": "brace", + "start": 40389, + "end": 40390, + "value": "(" + }, + { + "type": "brace", + "start": 40390, + "end": 40391, + "value": "[" + }, + { + "type": "whitespace", + "start": 40391, + "end": 40399, + "value": "\n " + }, + { + "type": "number", + "start": 40399, + "end": 40417, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 40417, + "end": 40418, + "value": "," + }, + { + "type": "whitespace", + "start": 40418, + "end": 40426, + "value": "\n " + }, + { + "type": "operator", + "start": 40426, + "end": 40427, + "value": "-" + }, + { + "type": "number", + "start": 40427, + "end": 40446, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 40446, + "end": 40452, + "value": "\n " + }, + { + "type": "brace", + "start": 40452, + "end": 40453, + "value": "]" + }, + { + "type": "comma", + "start": 40453, + "end": 40454, + "value": "," + }, + { + "type": "whitespace", + "start": 40454, + "end": 40455, + "value": " " + }, + { + "type": "operator", + "start": 40455, + "end": 40456, + "value": "%" + }, + { + "type": "brace", + "start": 40456, + "end": 40457, + "value": ")" + }, + { + "type": "whitespace", + "start": 40457, + "end": 40460, + "value": "\n " + }, + { + "type": "operator", + "start": 40460, + "end": 40462, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40462, + "end": 40463, + "value": " " + }, + { + "type": "word", + "start": 40463, + "end": 40467, + "value": "line" + }, + { + "type": "brace", + "start": 40467, + "end": 40468, + "value": "(" + }, + { + "type": "brace", + "start": 40468, + "end": 40469, + "value": "[" + }, + { + "type": "whitespace", + "start": 40469, + "end": 40477, + "value": "\n " + }, + { + "type": "operator", + "start": 40477, + "end": 40478, + "value": "-" + }, + { + "type": "number", + "start": 40478, + "end": 40497, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 40497, + "end": 40498, + "value": "," + }, + { + "type": "whitespace", + "start": 40498, + "end": 40506, + "value": "\n " + }, + { + "type": "operator", + "start": 40506, + "end": 40507, + "value": "-" + }, + { + "type": "number", + "start": 40507, + "end": 40526, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 40526, + "end": 40532, + "value": "\n " + }, + { + "type": "brace", + "start": 40532, + "end": 40533, + "value": "]" + }, + { + "type": "comma", + "start": 40533, + "end": 40534, + "value": "," + }, + { + "type": "whitespace", + "start": 40534, + "end": 40535, + "value": " " + }, + { + "type": "operator", + "start": 40535, + "end": 40536, + "value": "%" + }, + { + "type": "brace", + "start": 40536, + "end": 40537, + "value": ")" + }, + { + "type": "whitespace", + "start": 40537, + "end": 40540, + "value": "\n " + }, + { + "type": "operator", + "start": 40540, + "end": 40542, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40542, + "end": 40543, + "value": " " + }, + { + "type": "word", + "start": 40543, + "end": 40547, + "value": "line" + }, + { + "type": "brace", + "start": 40547, + "end": 40548, + "value": "(" + }, + { + "type": "brace", + "start": 40548, + "end": 40549, + "value": "[" + }, + { + "type": "whitespace", + "start": 40549, + "end": 40557, + "value": "\n " + }, + { + "type": "operator", + "start": 40557, + "end": 40558, + "value": "-" + }, + { + "type": "number", + "start": 40558, + "end": 40576, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 40576, + "end": 40577, + "value": "," + }, + { + "type": "whitespace", + "start": 40577, + "end": 40585, + "value": "\n " + }, + { + "type": "operator", + "start": 40585, + "end": 40586, + "value": "-" + }, + { + "type": "number", + "start": 40586, + "end": 40605, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 40605, + "end": 40611, + "value": "\n " + }, + { + "type": "brace", + "start": 40611, + "end": 40612, + "value": "]" + }, + { + "type": "comma", + "start": 40612, + "end": 40613, + "value": "," + }, + { + "type": "whitespace", + "start": 40613, + "end": 40614, + "value": " " + }, + { + "type": "operator", + "start": 40614, + "end": 40615, + "value": "%" + }, + { + "type": "brace", + "start": 40615, + "end": 40616, + "value": ")" + }, + { + "type": "whitespace", + "start": 40616, + "end": 40619, + "value": "\n " + }, + { + "type": "operator", + "start": 40619, + "end": 40621, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40621, + "end": 40622, + "value": " " + }, + { + "type": "word", + "start": 40622, + "end": 40626, + "value": "line" + }, + { + "type": "brace", + "start": 40626, + "end": 40627, + "value": "(" + }, + { + "type": "brace", + "start": 40627, + "end": 40628, + "value": "[" + }, + { + "type": "whitespace", + "start": 40628, + "end": 40636, + "value": "\n " + }, + { + "type": "operator", + "start": 40636, + "end": 40637, + "value": "-" + }, + { + "type": "number", + "start": 40637, + "end": 40655, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 40655, + "end": 40656, + "value": "," + }, + { + "type": "whitespace", + "start": 40656, + "end": 40664, + "value": "\n " + }, + { + "type": "number", + "start": 40664, + "end": 40683, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 40683, + "end": 40689, + "value": "\n " + }, + { + "type": "brace", + "start": 40689, + "end": 40690, + "value": "]" + }, + { + "type": "comma", + "start": 40690, + "end": 40691, + "value": "," + }, + { + "type": "whitespace", + "start": 40691, + "end": 40692, + "value": " " + }, + { + "type": "operator", + "start": 40692, + "end": 40693, + "value": "%" + }, + { + "type": "brace", + "start": 40693, + "end": 40694, + "value": ")" + }, + { + "type": "whitespace", + "start": 40694, + "end": 40697, + "value": "\n " + }, + { + "type": "operator", + "start": 40697, + "end": 40699, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40699, + "end": 40700, + "value": " " + }, + { + "type": "word", + "start": 40700, + "end": 40704, + "value": "line" + }, + { + "type": "brace", + "start": 40704, + "end": 40705, + "value": "(" + }, + { + "type": "brace", + "start": 40705, + "end": 40706, + "value": "[" + }, + { + "type": "whitespace", + "start": 40706, + "end": 40714, + "value": "\n " + }, + { + "type": "operator", + "start": 40714, + "end": 40715, + "value": "-" + }, + { + "type": "number", + "start": 40715, + "end": 40733, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 40733, + "end": 40734, + "value": "," + }, + { + "type": "whitespace", + "start": 40734, + "end": 40742, + "value": "\n " + }, + { + "type": "operator", + "start": 40742, + "end": 40743, + "value": "-" + }, + { + "type": "number", + "start": 40743, + "end": 40762, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 40762, + "end": 40768, + "value": "\n " + }, + { + "type": "brace", + "start": 40768, + "end": 40769, + "value": "]" + }, + { + "type": "comma", + "start": 40769, + "end": 40770, + "value": "," + }, + { + "type": "whitespace", + "start": 40770, + "end": 40771, + "value": " " + }, + { + "type": "operator", + "start": 40771, + "end": 40772, + "value": "%" + }, + { + "type": "brace", + "start": 40772, + "end": 40773, + "value": ")" + }, + { + "type": "whitespace", + "start": 40773, + "end": 40776, + "value": "\n " + }, + { + "type": "operator", + "start": 40776, + "end": 40778, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40778, + "end": 40779, + "value": " " + }, + { + "type": "word", + "start": 40779, + "end": 40783, + "value": "line" + }, + { + "type": "brace", + "start": 40783, + "end": 40784, + "value": "(" + }, + { + "type": "brace", + "start": 40784, + "end": 40785, + "value": "[" + }, + { + "type": "whitespace", + "start": 40785, + "end": 40793, + "value": "\n " + }, + { + "type": "number", + "start": 40793, + "end": 40811, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 40811, + "end": 40812, + "value": "," + }, + { + "type": "whitespace", + "start": 40812, + "end": 40820, + "value": "\n " + }, + { + "type": "operator", + "start": 40820, + "end": 40821, + "value": "-" + }, + { + "type": "number", + "start": 40821, + "end": 40839, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 40839, + "end": 40845, + "value": "\n " + }, + { + "type": "brace", + "start": 40845, + "end": 40846, + "value": "]" + }, + { + "type": "comma", + "start": 40846, + "end": 40847, + "value": "," + }, + { + "type": "whitespace", + "start": 40847, + "end": 40848, + "value": " " + }, + { + "type": "operator", + "start": 40848, + "end": 40849, + "value": "%" + }, + { + "type": "brace", + "start": 40849, + "end": 40850, + "value": ")" + }, + { + "type": "whitespace", + "start": 40850, + "end": 40853, + "value": "\n " + }, + { + "type": "operator", + "start": 40853, + "end": 40855, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40855, + "end": 40856, + "value": " " + }, + { + "type": "word", + "start": 40856, + "end": 40860, + "value": "line" + }, + { + "type": "brace", + "start": 40860, + "end": 40861, + "value": "(" + }, + { + "type": "brace", + "start": 40861, + "end": 40862, + "value": "[" + }, + { + "type": "whitespace", + "start": 40862, + "end": 40870, + "value": "\n " + }, + { + "type": "operator", + "start": 40870, + "end": 40871, + "value": "-" + }, + { + "type": "number", + "start": 40871, + "end": 40889, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 40889, + "end": 40890, + "value": "," + }, + { + "type": "whitespace", + "start": 40890, + "end": 40898, + "value": "\n " + }, + { + "type": "number", + "start": 40898, + "end": 40916, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 40916, + "end": 40922, + "value": "\n " + }, + { + "type": "brace", + "start": 40922, + "end": 40923, + "value": "]" + }, + { + "type": "comma", + "start": 40923, + "end": 40924, + "value": "," + }, + { + "type": "whitespace", + "start": 40924, + "end": 40925, + "value": " " + }, + { + "type": "operator", + "start": 40925, + "end": 40926, + "value": "%" + }, + { + "type": "brace", + "start": 40926, + "end": 40927, + "value": ")" + }, + { + "type": "whitespace", + "start": 40927, + "end": 40930, + "value": "\n " + }, + { + "type": "operator", + "start": 40930, + "end": 40932, + "value": "|>" + }, + { + "type": "whitespace", + "start": 40932, + "end": 40933, + "value": " " + }, + { + "type": "word", + "start": 40933, + "end": 40937, + "value": "line" + }, + { + "type": "brace", + "start": 40937, + "end": 40938, + "value": "(" + }, + { + "type": "brace", + "start": 40938, + "end": 40939, + "value": "[" + }, + { + "type": "whitespace", + "start": 40939, + "end": 40947, + "value": "\n " + }, + { + "type": "operator", + "start": 40947, + "end": 40948, + "value": "-" + }, + { + "type": "number", + "start": 40948, + "end": 40966, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 40966, + "end": 40967, + "value": "," + }, + { + "type": "whitespace", + "start": 40967, + "end": 40975, + "value": "\n " + }, + { + "type": "number", + "start": 40975, + "end": 40993, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 40993, + "end": 40999, + "value": "\n " + }, + { + "type": "brace", + "start": 40999, + "end": 41000, + "value": "]" + }, + { + "type": "comma", + "start": 41000, + "end": 41001, + "value": "," + }, + { + "type": "whitespace", + "start": 41001, + "end": 41002, + "value": " " + }, + { + "type": "operator", + "start": 41002, + "end": 41003, + "value": "%" + }, + { + "type": "brace", + "start": 41003, + "end": 41004, + "value": ")" + }, + { + "type": "whitespace", + "start": 41004, + "end": 41007, + "value": "\n " + }, + { + "type": "operator", + "start": 41007, + "end": 41009, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41009, + "end": 41010, + "value": " " + }, + { + "type": "word", + "start": 41010, + "end": 41014, + "value": "line" + }, + { + "type": "brace", + "start": 41014, + "end": 41015, + "value": "(" + }, + { + "type": "brace", + "start": 41015, + "end": 41016, + "value": "[" + }, + { + "type": "whitespace", + "start": 41016, + "end": 41024, + "value": "\n " + }, + { + "type": "operator", + "start": 41024, + "end": 41025, + "value": "-" + }, + { + "type": "number", + "start": 41025, + "end": 41043, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 41043, + "end": 41044, + "value": "," + }, + { + "type": "whitespace", + "start": 41044, + "end": 41052, + "value": "\n " + }, + { + "type": "operator", + "start": 41052, + "end": 41053, + "value": "-" + }, + { + "type": "number", + "start": 41053, + "end": 41072, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 41072, + "end": 41078, + "value": "\n " + }, + { + "type": "brace", + "start": 41078, + "end": 41079, + "value": "]" + }, + { + "type": "comma", + "start": 41079, + "end": 41080, + "value": "," + }, + { + "type": "whitespace", + "start": 41080, + "end": 41081, + "value": " " + }, + { + "type": "operator", + "start": 41081, + "end": 41082, + "value": "%" + }, + { + "type": "brace", + "start": 41082, + "end": 41083, + "value": ")" + }, + { + "type": "whitespace", + "start": 41083, + "end": 41086, + "value": "\n " + }, + { + "type": "operator", + "start": 41086, + "end": 41088, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41088, + "end": 41089, + "value": " " + }, + { + "type": "word", + "start": 41089, + "end": 41093, + "value": "line" + }, + { + "type": "brace", + "start": 41093, + "end": 41094, + "value": "(" + }, + { + "type": "brace", + "start": 41094, + "end": 41095, + "value": "[" + }, + { + "type": "whitespace", + "start": 41095, + "end": 41103, + "value": "\n " + }, + { + "type": "number", + "start": 41103, + "end": 41122, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 41122, + "end": 41123, + "value": "," + }, + { + "type": "whitespace", + "start": 41123, + "end": 41131, + "value": "\n " + }, + { + "type": "number", + "start": 41131, + "end": 41150, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 41150, + "end": 41156, + "value": "\n " + }, + { + "type": "brace", + "start": 41156, + "end": 41157, + "value": "]" + }, + { + "type": "comma", + "start": 41157, + "end": 41158, + "value": "," + }, + { + "type": "whitespace", + "start": 41158, + "end": 41159, + "value": " " + }, + { + "type": "operator", + "start": 41159, + "end": 41160, + "value": "%" + }, + { + "type": "brace", + "start": 41160, + "end": 41161, + "value": ")" + }, + { + "type": "whitespace", + "start": 41161, + "end": 41164, + "value": "\n " + }, + { + "type": "operator", + "start": 41164, + "end": 41166, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41166, + "end": 41167, + "value": " " + }, + { + "type": "word", + "start": 41167, + "end": 41171, + "value": "line" + }, + { + "type": "brace", + "start": 41171, + "end": 41172, + "value": "(" + }, + { + "type": "brace", + "start": 41172, + "end": 41173, + "value": "[" + }, + { + "type": "whitespace", + "start": 41173, + "end": 41181, + "value": "\n " + }, + { + "type": "number", + "start": 41181, + "end": 41200, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 41200, + "end": 41201, + "value": "," + }, + { + "type": "whitespace", + "start": 41201, + "end": 41209, + "value": "\n " + }, + { + "type": "number", + "start": 41209, + "end": 41228, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 41228, + "end": 41234, + "value": "\n " + }, + { + "type": "brace", + "start": 41234, + "end": 41235, + "value": "]" + }, + { + "type": "comma", + "start": 41235, + "end": 41236, + "value": "," + }, + { + "type": "whitespace", + "start": 41236, + "end": 41237, + "value": " " + }, + { + "type": "operator", + "start": 41237, + "end": 41238, + "value": "%" + }, + { + "type": "brace", + "start": 41238, + "end": 41239, + "value": ")" + }, + { + "type": "whitespace", + "start": 41239, + "end": 41242, + "value": "\n " + }, + { + "type": "operator", + "start": 41242, + "end": 41244, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41244, + "end": 41245, + "value": " " + }, + { + "type": "word", + "start": 41245, + "end": 41249, + "value": "line" + }, + { + "type": "brace", + "start": 41249, + "end": 41250, + "value": "(" + }, + { + "type": "brace", + "start": 41250, + "end": 41251, + "value": "[" + }, + { + "type": "whitespace", + "start": 41251, + "end": 41259, + "value": "\n " + }, + { + "type": "operator", + "start": 41259, + "end": 41260, + "value": "-" + }, + { + "type": "number", + "start": 41260, + "end": 41279, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 41279, + "end": 41280, + "value": "," + }, + { + "type": "whitespace", + "start": 41280, + "end": 41288, + "value": "\n " + }, + { + "type": "number", + "start": 41288, + "end": 41306, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 41306, + "end": 41312, + "value": "\n " + }, + { + "type": "brace", + "start": 41312, + "end": 41313, + "value": "]" + }, + { + "type": "comma", + "start": 41313, + "end": 41314, + "value": "," + }, + { + "type": "whitespace", + "start": 41314, + "end": 41315, + "value": " " + }, + { + "type": "operator", + "start": 41315, + "end": 41316, + "value": "%" + }, + { + "type": "brace", + "start": 41316, + "end": 41317, + "value": ")" + }, + { + "type": "whitespace", + "start": 41317, + "end": 41320, + "value": "\n " + }, + { + "type": "operator", + "start": 41320, + "end": 41322, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41322, + "end": 41323, + "value": " " + }, + { + "type": "word", + "start": 41323, + "end": 41327, + "value": "line" + }, + { + "type": "brace", + "start": 41327, + "end": 41328, + "value": "(" + }, + { + "type": "brace", + "start": 41328, + "end": 41329, + "value": "[" + }, + { + "type": "whitespace", + "start": 41329, + "end": 41337, + "value": "\n " + }, + { + "type": "operator", + "start": 41337, + "end": 41338, + "value": "-" + }, + { + "type": "number", + "start": 41338, + "end": 41357, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 41357, + "end": 41358, + "value": "," + }, + { + "type": "whitespace", + "start": 41358, + "end": 41366, + "value": "\n " + }, + { + "type": "operator", + "start": 41366, + "end": 41367, + "value": "-" + }, + { + "type": "number", + "start": 41367, + "end": 41386, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 41386, + "end": 41392, + "value": "\n " + }, + { + "type": "brace", + "start": 41392, + "end": 41393, + "value": "]" + }, + { + "type": "comma", + "start": 41393, + "end": 41394, + "value": "," + }, + { + "type": "whitespace", + "start": 41394, + "end": 41395, + "value": " " + }, + { + "type": "operator", + "start": 41395, + "end": 41396, + "value": "%" + }, + { + "type": "brace", + "start": 41396, + "end": 41397, + "value": ")" + }, + { + "type": "whitespace", + "start": 41397, + "end": 41400, + "value": "\n " + }, + { + "type": "operator", + "start": 41400, + "end": 41402, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41402, + "end": 41403, + "value": " " + }, + { + "type": "word", + "start": 41403, + "end": 41407, + "value": "line" + }, + { + "type": "brace", + "start": 41407, + "end": 41408, + "value": "(" + }, + { + "type": "brace", + "start": 41408, + "end": 41409, + "value": "[" + }, + { + "type": "whitespace", + "start": 41409, + "end": 41417, + "value": "\n " + }, + { + "type": "number", + "start": 41417, + "end": 41435, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 41435, + "end": 41436, + "value": "," + }, + { + "type": "whitespace", + "start": 41436, + "end": 41444, + "value": "\n " + }, + { + "type": "operator", + "start": 41444, + "end": 41445, + "value": "-" + }, + { + "type": "number", + "start": 41445, + "end": 41464, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 41464, + "end": 41470, + "value": "\n " + }, + { + "type": "brace", + "start": 41470, + "end": 41471, + "value": "]" + }, + { + "type": "comma", + "start": 41471, + "end": 41472, + "value": "," + }, + { + "type": "whitespace", + "start": 41472, + "end": 41473, + "value": " " + }, + { + "type": "operator", + "start": 41473, + "end": 41474, + "value": "%" + }, + { + "type": "brace", + "start": 41474, + "end": 41475, + "value": ")" + }, + { + "type": "whitespace", + "start": 41475, + "end": 41478, + "value": "\n " + }, + { + "type": "operator", + "start": 41478, + "end": 41480, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41480, + "end": 41481, + "value": " " + }, + { + "type": "word", + "start": 41481, + "end": 41485, + "value": "line" + }, + { + "type": "brace", + "start": 41485, + "end": 41486, + "value": "(" + }, + { + "type": "brace", + "start": 41486, + "end": 41487, + "value": "[" + }, + { + "type": "whitespace", + "start": 41487, + "end": 41495, + "value": "\n " + }, + { + "type": "number", + "start": 41495, + "end": 41516, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 41516, + "end": 41517, + "value": "," + }, + { + "type": "whitespace", + "start": 41517, + "end": 41525, + "value": "\n " + }, + { + "type": "operator", + "start": 41525, + "end": 41526, + "value": "-" + }, + { + "type": "number", + "start": 41526, + "end": 41544, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 41544, + "end": 41550, + "value": "\n " + }, + { + "type": "brace", + "start": 41550, + "end": 41551, + "value": "]" + }, + { + "type": "comma", + "start": 41551, + "end": 41552, + "value": "," + }, + { + "type": "whitespace", + "start": 41552, + "end": 41553, + "value": " " + }, + { + "type": "operator", + "start": 41553, + "end": 41554, + "value": "%" + }, + { + "type": "brace", + "start": 41554, + "end": 41555, + "value": ")" + }, + { + "type": "whitespace", + "start": 41555, + "end": 41558, + "value": "\n " + }, + { + "type": "operator", + "start": 41558, + "end": 41560, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41560, + "end": 41561, + "value": " " + }, + { + "type": "word", + "start": 41561, + "end": 41565, + "value": "line" + }, + { + "type": "brace", + "start": 41565, + "end": 41566, + "value": "(" + }, + { + "type": "brace", + "start": 41566, + "end": 41567, + "value": "[" + }, + { + "type": "whitespace", + "start": 41567, + "end": 41575, + "value": "\n " + }, + { + "type": "number", + "start": 41575, + "end": 41593, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 41593, + "end": 41594, + "value": "," + }, + { + "type": "whitespace", + "start": 41594, + "end": 41602, + "value": "\n " + }, + { + "type": "operator", + "start": 41602, + "end": 41603, + "value": "-" + }, + { + "type": "number", + "start": 41603, + "end": 41621, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 41621, + "end": 41627, + "value": "\n " + }, + { + "type": "brace", + "start": 41627, + "end": 41628, + "value": "]" + }, + { + "type": "comma", + "start": 41628, + "end": 41629, + "value": "," + }, + { + "type": "whitespace", + "start": 41629, + "end": 41630, + "value": " " + }, + { + "type": "operator", + "start": 41630, + "end": 41631, + "value": "%" + }, + { + "type": "brace", + "start": 41631, + "end": 41632, + "value": ")" + }, + { + "type": "whitespace", + "start": 41632, + "end": 41635, + "value": "\n " + }, + { + "type": "operator", + "start": 41635, + "end": 41637, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41637, + "end": 41638, + "value": " " + }, + { + "type": "word", + "start": 41638, + "end": 41642, + "value": "line" + }, + { + "type": "brace", + "start": 41642, + "end": 41643, + "value": "(" + }, + { + "type": "brace", + "start": 41643, + "end": 41644, + "value": "[" + }, + { + "type": "whitespace", + "start": 41644, + "end": 41652, + "value": "\n " + }, + { + "type": "operator", + "start": 41652, + "end": 41653, + "value": "-" + }, + { + "type": "number", + "start": 41653, + "end": 41671, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 41671, + "end": 41672, + "value": "," + }, + { + "type": "whitespace", + "start": 41672, + "end": 41680, + "value": "\n " + }, + { + "type": "number", + "start": 41680, + "end": 41698, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 41698, + "end": 41704, + "value": "\n " + }, + { + "type": "brace", + "start": 41704, + "end": 41705, + "value": "]" + }, + { + "type": "comma", + "start": 41705, + "end": 41706, + "value": "," + }, + { + "type": "whitespace", + "start": 41706, + "end": 41707, + "value": " " + }, + { + "type": "operator", + "start": 41707, + "end": 41708, + "value": "%" + }, + { + "type": "brace", + "start": 41708, + "end": 41709, + "value": ")" + }, + { + "type": "whitespace", + "start": 41709, + "end": 41712, + "value": "\n " + }, + { + "type": "operator", + "start": 41712, + "end": 41714, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41714, + "end": 41715, + "value": " " + }, + { + "type": "word", + "start": 41715, + "end": 41719, + "value": "line" + }, + { + "type": "brace", + "start": 41719, + "end": 41720, + "value": "(" + }, + { + "type": "brace", + "start": 41720, + "end": 41721, + "value": "[" + }, + { + "type": "number", + "start": 41721, + "end": 41739, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 41739, + "end": 41740, + "value": "," + }, + { + "type": "whitespace", + "start": 41740, + "end": 41741, + "value": " " + }, + { + "type": "number", + "start": 41741, + "end": 41759, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 41759, + "end": 41760, + "value": "]" + }, + { + "type": "comma", + "start": 41760, + "end": 41761, + "value": "," + }, + { + "type": "whitespace", + "start": 41761, + "end": 41762, + "value": " " + }, + { + "type": "operator", + "start": 41762, + "end": 41763, + "value": "%" + }, + { + "type": "brace", + "start": 41763, + "end": 41764, + "value": ")" + }, + { + "type": "whitespace", + "start": 41764, + "end": 41767, + "value": "\n " + }, + { + "type": "operator", + "start": 41767, + "end": 41769, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41769, + "end": 41770, + "value": " " + }, + { + "type": "word", + "start": 41770, + "end": 41774, + "value": "line" + }, + { + "type": "brace", + "start": 41774, + "end": 41775, + "value": "(" + }, + { + "type": "brace", + "start": 41775, + "end": 41776, + "value": "[" + }, + { + "type": "whitespace", + "start": 41776, + "end": 41784, + "value": "\n " + }, + { + "type": "operator", + "start": 41784, + "end": 41785, + "value": "-" + }, + { + "type": "number", + "start": 41785, + "end": 41804, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 41804, + "end": 41805, + "value": "," + }, + { + "type": "whitespace", + "start": 41805, + "end": 41813, + "value": "\n " + }, + { + "type": "number", + "start": 41813, + "end": 41833, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 41833, + "end": 41839, + "value": "\n " + }, + { + "type": "brace", + "start": 41839, + "end": 41840, + "value": "]" + }, + { + "type": "comma", + "start": 41840, + "end": 41841, + "value": "," + }, + { + "type": "whitespace", + "start": 41841, + "end": 41842, + "value": " " + }, + { + "type": "operator", + "start": 41842, + "end": 41843, + "value": "%" + }, + { + "type": "brace", + "start": 41843, + "end": 41844, + "value": ")" + }, + { + "type": "whitespace", + "start": 41844, + "end": 41847, + "value": "\n " + }, + { + "type": "operator", + "start": 41847, + "end": 41849, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41849, + "end": 41850, + "value": " " + }, + { + "type": "word", + "start": 41850, + "end": 41854, + "value": "line" + }, + { + "type": "brace", + "start": 41854, + "end": 41855, + "value": "(" + }, + { + "type": "brace", + "start": 41855, + "end": 41856, + "value": "[" + }, + { + "type": "whitespace", + "start": 41856, + "end": 41864, + "value": "\n " + }, + { + "type": "operator", + "start": 41864, + "end": 41865, + "value": "-" + }, + { + "type": "number", + "start": 41865, + "end": 41883, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 41883, + "end": 41884, + "value": "," + }, + { + "type": "whitespace", + "start": 41884, + "end": 41892, + "value": "\n " + }, + { + "type": "operator", + "start": 41892, + "end": 41893, + "value": "-" + }, + { + "type": "number", + "start": 41893, + "end": 41912, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 41912, + "end": 41918, + "value": "\n " + }, + { + "type": "brace", + "start": 41918, + "end": 41919, + "value": "]" + }, + { + "type": "comma", + "start": 41919, + "end": 41920, + "value": "," + }, + { + "type": "whitespace", + "start": 41920, + "end": 41921, + "value": " " + }, + { + "type": "operator", + "start": 41921, + "end": 41922, + "value": "%" + }, + { + "type": "brace", + "start": 41922, + "end": 41923, + "value": ")" + }, + { + "type": "whitespace", + "start": 41923, + "end": 41926, + "value": "\n " + }, + { + "type": "operator", + "start": 41926, + "end": 41928, + "value": "|>" + }, + { + "type": "whitespace", + "start": 41928, + "end": 41929, + "value": " " + }, + { + "type": "word", + "start": 41929, + "end": 41933, + "value": "line" + }, + { + "type": "brace", + "start": 41933, + "end": 41934, + "value": "(" + }, + { + "type": "brace", + "start": 41934, + "end": 41935, + "value": "[" + }, + { + "type": "whitespace", + "start": 41935, + "end": 41943, + "value": "\n " + }, + { + "type": "operator", + "start": 41943, + "end": 41944, + "value": "-" + }, + { + "type": "number", + "start": 41944, + "end": 41962, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 41962, + "end": 41963, + "value": "," + }, + { + "type": "whitespace", + "start": 41963, + "end": 41971, + "value": "\n " + }, + { + "type": "operator", + "start": 41971, + "end": 41972, + "value": "-" + }, + { + "type": "number", + "start": 41972, + "end": 41991, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 41991, + "end": 41997, + "value": "\n " + }, + { + "type": "brace", + "start": 41997, + "end": 41998, + "value": "]" + }, + { + "type": "comma", + "start": 41998, + "end": 41999, + "value": "," + }, + { + "type": "whitespace", + "start": 41999, + "end": 42000, + "value": " " + }, + { + "type": "operator", + "start": 42000, + "end": 42001, + "value": "%" + }, + { + "type": "brace", + "start": 42001, + "end": 42002, + "value": ")" + }, + { + "type": "whitespace", + "start": 42002, + "end": 42005, + "value": "\n " + }, + { + "type": "operator", + "start": 42005, + "end": 42007, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42007, + "end": 42008, + "value": " " + }, + { + "type": "word", + "start": 42008, + "end": 42012, + "value": "line" + }, + { + "type": "brace", + "start": 42012, + "end": 42013, + "value": "(" + }, + { + "type": "brace", + "start": 42013, + "end": 42014, + "value": "[" + }, + { + "type": "number", + "start": 42014, + "end": 42031, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 42031, + "end": 42032, + "value": "," + }, + { + "type": "whitespace", + "start": 42032, + "end": 42033, + "value": " " + }, + { + "type": "number", + "start": 42033, + "end": 42051, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 42051, + "end": 42052, + "value": "]" + }, + { + "type": "comma", + "start": 42052, + "end": 42053, + "value": "," + }, + { + "type": "whitespace", + "start": 42053, + "end": 42054, + "value": " " + }, + { + "type": "operator", + "start": 42054, + "end": 42055, + "value": "%" + }, + { + "type": "brace", + "start": 42055, + "end": 42056, + "value": ")" + }, + { + "type": "whitespace", + "start": 42056, + "end": 42059, + "value": "\n " + }, + { + "type": "operator", + "start": 42059, + "end": 42061, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42061, + "end": 42062, + "value": " " + }, + { + "type": "word", + "start": 42062, + "end": 42066, + "value": "line" + }, + { + "type": "brace", + "start": 42066, + "end": 42067, + "value": "(" + }, + { + "type": "brace", + "start": 42067, + "end": 42068, + "value": "[" + }, + { + "type": "whitespace", + "start": 42068, + "end": 42076, + "value": "\n " + }, + { + "type": "number", + "start": 42076, + "end": 42095, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 42095, + "end": 42096, + "value": "," + }, + { + "type": "whitespace", + "start": 42096, + "end": 42104, + "value": "\n " + }, + { + "type": "operator", + "start": 42104, + "end": 42105, + "value": "-" + }, + { + "type": "number", + "start": 42105, + "end": 42124, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 42124, + "end": 42130, + "value": "\n " + }, + { + "type": "brace", + "start": 42130, + "end": 42131, + "value": "]" + }, + { + "type": "comma", + "start": 42131, + "end": 42132, + "value": "," + }, + { + "type": "whitespace", + "start": 42132, + "end": 42133, + "value": " " + }, + { + "type": "operator", + "start": 42133, + "end": 42134, + "value": "%" + }, + { + "type": "brace", + "start": 42134, + "end": 42135, + "value": ")" + }, + { + "type": "whitespace", + "start": 42135, + "end": 42138, + "value": "\n " + }, + { + "type": "operator", + "start": 42138, + "end": 42140, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42140, + "end": 42141, + "value": " " + }, + { + "type": "word", + "start": 42141, + "end": 42145, + "value": "line" + }, + { + "type": "brace", + "start": 42145, + "end": 42146, + "value": "(" + }, + { + "type": "brace", + "start": 42146, + "end": 42147, + "value": "[" + }, + { + "type": "number", + "start": 42147, + "end": 42165, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 42165, + "end": 42166, + "value": "," + }, + { + "type": "whitespace", + "start": 42166, + "end": 42167, + "value": " " + }, + { + "type": "number", + "start": 42167, + "end": 42184, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 42184, + "end": 42185, + "value": "]" + }, + { + "type": "comma", + "start": 42185, + "end": 42186, + "value": "," + }, + { + "type": "whitespace", + "start": 42186, + "end": 42187, + "value": " " + }, + { + "type": "operator", + "start": 42187, + "end": 42188, + "value": "%" + }, + { + "type": "brace", + "start": 42188, + "end": 42189, + "value": ")" + }, + { + "type": "whitespace", + "start": 42189, + "end": 42192, + "value": "\n " + }, + { + "type": "operator", + "start": 42192, + "end": 42194, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42194, + "end": 42195, + "value": " " + }, + { + "type": "word", + "start": 42195, + "end": 42199, + "value": "line" + }, + { + "type": "brace", + "start": 42199, + "end": 42200, + "value": "(" + }, + { + "type": "brace", + "start": 42200, + "end": 42201, + "value": "[" + }, + { + "type": "whitespace", + "start": 42201, + "end": 42209, + "value": "\n " + }, + { + "type": "number", + "start": 42209, + "end": 42228, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 42228, + "end": 42229, + "value": "," + }, + { + "type": "whitespace", + "start": 42229, + "end": 42237, + "value": "\n " + }, + { + "type": "operator", + "start": 42237, + "end": 42238, + "value": "-" + }, + { + "type": "number", + "start": 42238, + "end": 42256, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 42256, + "end": 42262, + "value": "\n " + }, + { + "type": "brace", + "start": 42262, + "end": 42263, + "value": "]" + }, + { + "type": "comma", + "start": 42263, + "end": 42264, + "value": "," + }, + { + "type": "whitespace", + "start": 42264, + "end": 42265, + "value": " " + }, + { + "type": "operator", + "start": 42265, + "end": 42266, + "value": "%" + }, + { + "type": "brace", + "start": 42266, + "end": 42267, + "value": ")" + }, + { + "type": "whitespace", + "start": 42267, + "end": 42270, + "value": "\n " + }, + { + "type": "operator", + "start": 42270, + "end": 42272, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42272, + "end": 42273, + "value": " " + }, + { + "type": "word", + "start": 42273, + "end": 42277, + "value": "line" + }, + { + "type": "brace", + "start": 42277, + "end": 42278, + "value": "(" + }, + { + "type": "brace", + "start": 42278, + "end": 42279, + "value": "[" + }, + { + "type": "number", + "start": 42279, + "end": 42297, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 42297, + "end": 42298, + "value": "," + }, + { + "type": "whitespace", + "start": 42298, + "end": 42299, + "value": " " + }, + { + "type": "number", + "start": 42299, + "end": 42317, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 42317, + "end": 42318, + "value": "]" + }, + { + "type": "comma", + "start": 42318, + "end": 42319, + "value": "," + }, + { + "type": "whitespace", + "start": 42319, + "end": 42320, + "value": " " + }, + { + "type": "operator", + "start": 42320, + "end": 42321, + "value": "%" + }, + { + "type": "brace", + "start": 42321, + "end": 42322, + "value": ")" + }, + { + "type": "whitespace", + "start": 42322, + "end": 42325, + "value": "\n " + }, + { + "type": "operator", + "start": 42325, + "end": 42327, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42327, + "end": 42328, + "value": " " + }, + { + "type": "word", + "start": 42328, + "end": 42332, + "value": "line" + }, + { + "type": "brace", + "start": 42332, + "end": 42333, + "value": "(" + }, + { + "type": "brace", + "start": 42333, + "end": 42334, + "value": "[" + }, + { + "type": "whitespace", + "start": 42334, + "end": 42342, + "value": "\n " + }, + { + "type": "number", + "start": 42342, + "end": 42360, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 42360, + "end": 42361, + "value": "," + }, + { + "type": "whitespace", + "start": 42361, + "end": 42369, + "value": "\n " + }, + { + "type": "number", + "start": 42369, + "end": 42388, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 42388, + "end": 42394, + "value": "\n " + }, + { + "type": "brace", + "start": 42394, + "end": 42395, + "value": "]" + }, + { + "type": "comma", + "start": 42395, + "end": 42396, + "value": "," + }, + { + "type": "whitespace", + "start": 42396, + "end": 42397, + "value": " " + }, + { + "type": "operator", + "start": 42397, + "end": 42398, + "value": "%" + }, + { + "type": "brace", + "start": 42398, + "end": 42399, + "value": ")" + }, + { + "type": "whitespace", + "start": 42399, + "end": 42402, + "value": "\n " + }, + { + "type": "operator", + "start": 42402, + "end": 42404, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42404, + "end": 42405, + "value": " " + }, + { + "type": "word", + "start": 42405, + "end": 42409, + "value": "line" + }, + { + "type": "brace", + "start": 42409, + "end": 42410, + "value": "(" + }, + { + "type": "brace", + "start": 42410, + "end": 42411, + "value": "[" + }, + { + "type": "number", + "start": 42411, + "end": 42429, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 42429, + "end": 42430, + "value": "," + }, + { + "type": "whitespace", + "start": 42430, + "end": 42431, + "value": " " + }, + { + "type": "number", + "start": 42431, + "end": 42449, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 42449, + "end": 42450, + "value": "]" + }, + { + "type": "comma", + "start": 42450, + "end": 42451, + "value": "," + }, + { + "type": "whitespace", + "start": 42451, + "end": 42452, + "value": " " + }, + { + "type": "operator", + "start": 42452, + "end": 42453, + "value": "%" + }, + { + "type": "brace", + "start": 42453, + "end": 42454, + "value": ")" + }, + { + "type": "whitespace", + "start": 42454, + "end": 42457, + "value": "\n " + }, + { + "type": "operator", + "start": 42457, + "end": 42459, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42459, + "end": 42460, + "value": " " + }, + { + "type": "word", + "start": 42460, + "end": 42464, + "value": "line" + }, + { + "type": "brace", + "start": 42464, + "end": 42465, + "value": "(" + }, + { + "type": "brace", + "start": 42465, + "end": 42466, + "value": "[" + }, + { + "type": "whitespace", + "start": 42466, + "end": 42474, + "value": "\n " + }, + { + "type": "operator", + "start": 42474, + "end": 42475, + "value": "-" + }, + { + "type": "number", + "start": 42475, + "end": 42494, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 42494, + "end": 42495, + "value": "," + }, + { + "type": "whitespace", + "start": 42495, + "end": 42503, + "value": "\n " + }, + { + "type": "operator", + "start": 42503, + "end": 42504, + "value": "-" + }, + { + "type": "number", + "start": 42504, + "end": 42522, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 42522, + "end": 42528, + "value": "\n " + }, + { + "type": "brace", + "start": 42528, + "end": 42529, + "value": "]" + }, + { + "type": "comma", + "start": 42529, + "end": 42530, + "value": "," + }, + { + "type": "whitespace", + "start": 42530, + "end": 42531, + "value": " " + }, + { + "type": "operator", + "start": 42531, + "end": 42532, + "value": "%" + }, + { + "type": "brace", + "start": 42532, + "end": 42533, + "value": ")" + }, + { + "type": "whitespace", + "start": 42533, + "end": 42536, + "value": "\n " + }, + { + "type": "operator", + "start": 42536, + "end": 42538, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42538, + "end": 42539, + "value": " " + }, + { + "type": "word", + "start": 42539, + "end": 42543, + "value": "line" + }, + { + "type": "brace", + "start": 42543, + "end": 42544, + "value": "(" + }, + { + "type": "brace", + "start": 42544, + "end": 42545, + "value": "[" + }, + { + "type": "whitespace", + "start": 42545, + "end": 42553, + "value": "\n " + }, + { + "type": "number", + "start": 42553, + "end": 42571, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 42571, + "end": 42572, + "value": "," + }, + { + "type": "whitespace", + "start": 42572, + "end": 42580, + "value": "\n " + }, + { + "type": "operator", + "start": 42580, + "end": 42581, + "value": "-" + }, + { + "type": "number", + "start": 42581, + "end": 42599, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 42599, + "end": 42605, + "value": "\n " + }, + { + "type": "brace", + "start": 42605, + "end": 42606, + "value": "]" + }, + { + "type": "comma", + "start": 42606, + "end": 42607, + "value": "," + }, + { + "type": "whitespace", + "start": 42607, + "end": 42608, + "value": " " + }, + { + "type": "operator", + "start": 42608, + "end": 42609, + "value": "%" + }, + { + "type": "brace", + "start": 42609, + "end": 42610, + "value": ")" + }, + { + "type": "whitespace", + "start": 42610, + "end": 42613, + "value": "\n " + }, + { + "type": "operator", + "start": 42613, + "end": 42615, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42615, + "end": 42616, + "value": " " + }, + { + "type": "word", + "start": 42616, + "end": 42620, + "value": "line" + }, + { + "type": "brace", + "start": 42620, + "end": 42621, + "value": "(" + }, + { + "type": "brace", + "start": 42621, + "end": 42622, + "value": "[" + }, + { + "type": "whitespace", + "start": 42622, + "end": 42630, + "value": "\n " + }, + { + "type": "number", + "start": 42630, + "end": 42648, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 42648, + "end": 42649, + "value": "," + }, + { + "type": "whitespace", + "start": 42649, + "end": 42657, + "value": "\n " + }, + { + "type": "operator", + "start": 42657, + "end": 42658, + "value": "-" + }, + { + "type": "number", + "start": 42658, + "end": 42676, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 42676, + "end": 42682, + "value": "\n " + }, + { + "type": "brace", + "start": 42682, + "end": 42683, + "value": "]" + }, + { + "type": "comma", + "start": 42683, + "end": 42684, + "value": "," + }, + { + "type": "whitespace", + "start": 42684, + "end": 42685, + "value": " " + }, + { + "type": "operator", + "start": 42685, + "end": 42686, + "value": "%" + }, + { + "type": "brace", + "start": 42686, + "end": 42687, + "value": ")" + }, + { + "type": "whitespace", + "start": 42687, + "end": 42690, + "value": "\n " + }, + { + "type": "operator", + "start": 42690, + "end": 42692, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42692, + "end": 42693, + "value": " " + }, + { + "type": "word", + "start": 42693, + "end": 42697, + "value": "line" + }, + { + "type": "brace", + "start": 42697, + "end": 42698, + "value": "(" + }, + { + "type": "brace", + "start": 42698, + "end": 42699, + "value": "[" + }, + { + "type": "whitespace", + "start": 42699, + "end": 42707, + "value": "\n " + }, + { + "type": "operator", + "start": 42707, + "end": 42708, + "value": "-" + }, + { + "type": "number", + "start": 42708, + "end": 42726, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 42726, + "end": 42727, + "value": "," + }, + { + "type": "whitespace", + "start": 42727, + "end": 42735, + "value": "\n " + }, + { + "type": "number", + "start": 42735, + "end": 42753, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 42753, + "end": 42759, + "value": "\n " + }, + { + "type": "brace", + "start": 42759, + "end": 42760, + "value": "]" + }, + { + "type": "comma", + "start": 42760, + "end": 42761, + "value": "," + }, + { + "type": "whitespace", + "start": 42761, + "end": 42762, + "value": " " + }, + { + "type": "operator", + "start": 42762, + "end": 42763, + "value": "%" + }, + { + "type": "brace", + "start": 42763, + "end": 42764, + "value": ")" + }, + { + "type": "whitespace", + "start": 42764, + "end": 42767, + "value": "\n " + }, + { + "type": "operator", + "start": 42767, + "end": 42769, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42769, + "end": 42770, + "value": " " + }, + { + "type": "word", + "start": 42770, + "end": 42774, + "value": "line" + }, + { + "type": "brace", + "start": 42774, + "end": 42775, + "value": "(" + }, + { + "type": "brace", + "start": 42775, + "end": 42776, + "value": "[" + }, + { + "type": "whitespace", + "start": 42776, + "end": 42784, + "value": "\n " + }, + { + "type": "number", + "start": 42784, + "end": 42802, + "value": "0.9464450621708211" + }, + { + "type": "comma", + "start": 42802, + "end": 42803, + "value": "," + }, + { + "type": "whitespace", + "start": 42803, + "end": 42811, + "value": "\n " + }, + { + "type": "operator", + "start": 42811, + "end": 42812, + "value": "-" + }, + { + "type": "number", + "start": 42812, + "end": 42830, + "value": "0.2684908127803667" + }, + { + "type": "whitespace", + "start": 42830, + "end": 42836, + "value": "\n " + }, + { + "type": "brace", + "start": 42836, + "end": 42837, + "value": "]" + }, + { + "type": "comma", + "start": 42837, + "end": 42838, + "value": "," + }, + { + "type": "whitespace", + "start": 42838, + "end": 42839, + "value": " " + }, + { + "type": "operator", + "start": 42839, + "end": 42840, + "value": "%" + }, + { + "type": "brace", + "start": 42840, + "end": 42841, + "value": ")" + }, + { + "type": "whitespace", + "start": 42841, + "end": 42844, + "value": "\n " + }, + { + "type": "operator", + "start": 42844, + "end": 42846, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42846, + "end": 42847, + "value": " " + }, + { + "type": "word", + "start": 42847, + "end": 42851, + "value": "line" + }, + { + "type": "brace", + "start": 42851, + "end": 42852, + "value": "(" + }, + { + "type": "brace", + "start": 42852, + "end": 42853, + "value": "[" + }, + { + "type": "number", + "start": 42853, + "end": 42871, + "value": "0.5241732366617591" + }, + { + "type": "comma", + "start": 42871, + "end": 42872, + "value": "," + }, + { + "type": "whitespace", + "start": 42872, + "end": 42873, + "value": " " + }, + { + "type": "number", + "start": 42873, + "end": 42891, + "value": "0.9011437416408563" + }, + { + "type": "brace", + "start": 42891, + "end": 42892, + "value": "]" + }, + { + "type": "comma", + "start": 42892, + "end": 42893, + "value": "," + }, + { + "type": "whitespace", + "start": 42893, + "end": 42894, + "value": " " + }, + { + "type": "operator", + "start": 42894, + "end": 42895, + "value": "%" + }, + { + "type": "brace", + "start": 42895, + "end": 42896, + "value": ")" + }, + { + "type": "whitespace", + "start": 42896, + "end": 42899, + "value": "\n " + }, + { + "type": "operator", + "start": 42899, + "end": 42901, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42901, + "end": 42902, + "value": " " + }, + { + "type": "word", + "start": 42902, + "end": 42906, + "value": "line" + }, + { + "type": "brace", + "start": 42906, + "end": 42907, + "value": "(" + }, + { + "type": "brace", + "start": 42907, + "end": 42908, + "value": "[" + }, + { + "type": "whitespace", + "start": 42908, + "end": 42916, + "value": "\n " + }, + { + "type": "operator", + "start": 42916, + "end": 42917, + "value": "-" + }, + { + "type": "number", + "start": 42917, + "end": 42936, + "value": "0.14255393713960607" + }, + { + "type": "comma", + "start": 42936, + "end": 42937, + "value": "," + }, + { + "type": "whitespace", + "start": 42937, + "end": 42945, + "value": "\n " + }, + { + "type": "operator", + "start": 42945, + "end": 42946, + "value": "-" + }, + { + "type": "number", + "start": 42946, + "end": 42964, + "value": "0.5194262624564814" + }, + { + "type": "whitespace", + "start": 42964, + "end": 42970, + "value": "\n " + }, + { + "type": "brace", + "start": 42970, + "end": 42971, + "value": "]" + }, + { + "type": "comma", + "start": 42971, + "end": 42972, + "value": "," + }, + { + "type": "whitespace", + "start": 42972, + "end": 42973, + "value": " " + }, + { + "type": "operator", + "start": 42973, + "end": 42974, + "value": "%" + }, + { + "type": "brace", + "start": 42974, + "end": 42975, + "value": ")" + }, + { + "type": "whitespace", + "start": 42975, + "end": 42978, + "value": "\n " + }, + { + "type": "operator", + "start": 42978, + "end": 42980, + "value": "|>" + }, + { + "type": "whitespace", + "start": 42980, + "end": 42981, + "value": " " + }, + { + "type": "word", + "start": 42981, + "end": 42985, + "value": "line" + }, + { + "type": "brace", + "start": 42985, + "end": 42986, + "value": "(" + }, + { + "type": "brace", + "start": 42986, + "end": 42987, + "value": "[" + }, + { + "type": "whitespace", + "start": 42987, + "end": 42995, + "value": "\n " + }, + { + "type": "operator", + "start": 42995, + "end": 42996, + "value": "-" + }, + { + "type": "number", + "start": 42996, + "end": 43014, + "value": "0.4287123231350338" + }, + { + "type": "comma", + "start": 43014, + "end": 43015, + "value": "," + }, + { + "type": "whitespace", + "start": 43015, + "end": 43023, + "value": "\n " + }, + { + "type": "operator", + "start": 43023, + "end": 43024, + "value": "-" + }, + { + "type": "number", + "start": 43024, + "end": 43042, + "value": "0.4223564528725028" + }, + { + "type": "whitespace", + "start": 43042, + "end": 43048, + "value": "\n " + }, + { + "type": "brace", + "start": 43048, + "end": 43049, + "value": "]" + }, + { + "type": "comma", + "start": 43049, + "end": 43050, + "value": "," + }, + { + "type": "whitespace", + "start": 43050, + "end": 43051, + "value": " " + }, + { + "type": "operator", + "start": 43051, + "end": 43052, + "value": "%" + }, + { + "type": "brace", + "start": 43052, + "end": 43053, + "value": ")" + }, + { + "type": "whitespace", + "start": 43053, + "end": 43056, + "value": "\n " + }, + { + "type": "operator", + "start": 43056, + "end": 43058, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43058, + "end": 43059, + "value": " " + }, + { + "type": "word", + "start": 43059, + "end": 43063, + "value": "line" + }, + { + "type": "brace", + "start": 43063, + "end": 43064, + "value": "(" + }, + { + "type": "brace", + "start": 43064, + "end": 43065, + "value": "[" + }, + { + "type": "whitespace", + "start": 43065, + "end": 43073, + "value": "\n " + }, + { + "type": "operator", + "start": 43073, + "end": 43074, + "value": "-" + }, + { + "type": "number", + "start": 43074, + "end": 43093, + "value": "0.09316367294024519" + }, + { + "type": "comma", + "start": 43093, + "end": 43094, + "value": "," + }, + { + "type": "whitespace", + "start": 43094, + "end": 43102, + "value": "\n " + }, + { + "type": "operator", + "start": 43102, + "end": 43103, + "value": "-" + }, + { + "type": "number", + "start": 43103, + "end": 43121, + "value": "0.9063127021008246" + }, + { + "type": "whitespace", + "start": 43121, + "end": 43127, + "value": "\n " + }, + { + "type": "brace", + "start": 43127, + "end": 43128, + "value": "]" + }, + { + "type": "comma", + "start": 43128, + "end": 43129, + "value": "," + }, + { + "type": "whitespace", + "start": 43129, + "end": 43130, + "value": " " + }, + { + "type": "operator", + "start": 43130, + "end": 43131, + "value": "%" + }, + { + "type": "brace", + "start": 43131, + "end": 43132, + "value": ")" + }, + { + "type": "whitespace", + "start": 43132, + "end": 43135, + "value": "\n " + }, + { + "type": "operator", + "start": 43135, + "end": 43137, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43137, + "end": 43138, + "value": " " + }, + { + "type": "word", + "start": 43138, + "end": 43142, + "value": "line" + }, + { + "type": "brace", + "start": 43142, + "end": 43143, + "value": "(" + }, + { + "type": "brace", + "start": 43143, + "end": 43144, + "value": "[" + }, + { + "type": "whitespace", + "start": 43144, + "end": 43152, + "value": "\n " + }, + { + "type": "operator", + "start": 43152, + "end": 43153, + "value": "-" + }, + { + "type": "number", + "start": 43153, + "end": 43171, + "value": "0.2767766535558669" + }, + { + "type": "comma", + "start": 43171, + "end": 43172, + "value": "," + }, + { + "type": "whitespace", + "start": 43172, + "end": 43180, + "value": "\n " + }, + { + "type": "number", + "start": 43180, + "end": 43198, + "value": "0.6816248114129131" + }, + { + "type": "whitespace", + "start": 43198, + "end": 43204, + "value": "\n " + }, + { + "type": "brace", + "start": 43204, + "end": 43205, + "value": "]" + }, + { + "type": "comma", + "start": 43205, + "end": 43206, + "value": "," + }, + { + "type": "whitespace", + "start": 43206, + "end": 43207, + "value": " " + }, + { + "type": "operator", + "start": 43207, + "end": 43208, + "value": "%" + }, + { + "type": "brace", + "start": 43208, + "end": 43209, + "value": ")" + }, + { + "type": "whitespace", + "start": 43209, + "end": 43212, + "value": "\n " + }, + { + "type": "operator", + "start": 43212, + "end": 43214, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43214, + "end": 43215, + "value": " " + }, + { + "type": "word", + "start": 43215, + "end": 43219, + "value": "line" + }, + { + "type": "brace", + "start": 43219, + "end": 43220, + "value": "(" + }, + { + "type": "brace", + "start": 43220, + "end": 43221, + "value": "[" + }, + { + "type": "whitespace", + "start": 43221, + "end": 43229, + "value": "\n " + }, + { + "type": "number", + "start": 43229, + "end": 43247, + "value": "0.9796762495562534" + }, + { + "type": "comma", + "start": 43247, + "end": 43248, + "value": "," + }, + { + "type": "whitespace", + "start": 43248, + "end": 43256, + "value": "\n " + }, + { + "type": "operator", + "start": 43256, + "end": 43257, + "value": "-" + }, + { + "type": "number", + "start": 43257, + "end": 43275, + "value": "0.0822145668330625" + }, + { + "type": "whitespace", + "start": 43275, + "end": 43281, + "value": "\n " + }, + { + "type": "brace", + "start": 43281, + "end": 43282, + "value": "]" + }, + { + "type": "comma", + "start": 43282, + "end": 43283, + "value": "," + }, + { + "type": "whitespace", + "start": 43283, + "end": 43284, + "value": " " + }, + { + "type": "operator", + "start": 43284, + "end": 43285, + "value": "%" + }, + { + "type": "brace", + "start": 43285, + "end": 43286, + "value": ")" + }, + { + "type": "whitespace", + "start": 43286, + "end": 43289, + "value": "\n " + }, + { + "type": "operator", + "start": 43289, + "end": 43291, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43291, + "end": 43292, + "value": " " + }, + { + "type": "word", + "start": 43292, + "end": 43296, + "value": "line" + }, + { + "type": "brace", + "start": 43296, + "end": 43297, + "value": "(" + }, + { + "type": "brace", + "start": 43297, + "end": 43298, + "value": "[" + }, + { + "type": "whitespace", + "start": 43298, + "end": 43306, + "value": "\n " + }, + { + "type": "operator", + "start": 43306, + "end": 43307, + "value": "-" + }, + { + "type": "number", + "start": 43307, + "end": 43325, + "value": "0.8666513070867441" + }, + { + "type": "comma", + "start": 43325, + "end": 43326, + "value": "," + }, + { + "type": "whitespace", + "start": 43326, + "end": 43334, + "value": "\n " + }, + { + "type": "operator", + "start": 43334, + "end": 43335, + "value": "-" + }, + { + "type": "number", + "start": 43335, + "end": 43352, + "value": "0.301053160242023" + }, + { + "type": "whitespace", + "start": 43352, + "end": 43358, + "value": "\n " + }, + { + "type": "brace", + "start": 43358, + "end": 43359, + "value": "]" + }, + { + "type": "comma", + "start": 43359, + "end": 43360, + "value": "," + }, + { + "type": "whitespace", + "start": 43360, + "end": 43361, + "value": " " + }, + { + "type": "operator", + "start": 43361, + "end": 43362, + "value": "%" + }, + { + "type": "brace", + "start": 43362, + "end": 43363, + "value": ")" + }, + { + "type": "whitespace", + "start": 43363, + "end": 43366, + "value": "\n " + }, + { + "type": "operator", + "start": 43366, + "end": 43368, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43368, + "end": 43369, + "value": " " + }, + { + "type": "word", + "start": 43369, + "end": 43373, + "value": "line" + }, + { + "type": "brace", + "start": 43373, + "end": 43374, + "value": "(" + }, + { + "type": "brace", + "start": 43374, + "end": 43375, + "value": "[" + }, + { + "type": "whitespace", + "start": 43375, + "end": 43383, + "value": "\n " + }, + { + "type": "number", + "start": 43383, + "end": 43400, + "value": "0.537415656028112" + }, + { + "type": "comma", + "start": 43400, + "end": 43401, + "value": "," + }, + { + "type": "whitespace", + "start": 43401, + "end": 43409, + "value": "\n " + }, + { + "type": "number", + "start": 43409, + "end": 43429, + "value": "0.020272692875002774" + }, + { + "type": "whitespace", + "start": 43429, + "end": 43435, + "value": "\n " + }, + { + "type": "brace", + "start": 43435, + "end": 43436, + "value": "]" + }, + { + "type": "comma", + "start": 43436, + "end": 43437, + "value": "," + }, + { + "type": "whitespace", + "start": 43437, + "end": 43438, + "value": " " + }, + { + "type": "operator", + "start": 43438, + "end": 43439, + "value": "%" + }, + { + "type": "brace", + "start": 43439, + "end": 43440, + "value": ")" + }, + { + "type": "whitespace", + "start": 43440, + "end": 43443, + "value": "\n " + }, + { + "type": "operator", + "start": 43443, + "end": 43445, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43445, + "end": 43446, + "value": " " + }, + { + "type": "word", + "start": 43446, + "end": 43450, + "value": "line" + }, + { + "type": "brace", + "start": 43450, + "end": 43451, + "value": "(" + }, + { + "type": "brace", + "start": 43451, + "end": 43452, + "value": "[" + }, + { + "type": "whitespace", + "start": 43452, + "end": 43460, + "value": "\n " + }, + { + "type": "number", + "start": 43460, + "end": 43478, + "value": "0.9332396256457531" + }, + { + "type": "comma", + "start": 43478, + "end": 43479, + "value": "," + }, + { + "type": "whitespace", + "start": 43479, + "end": 43487, + "value": "\n " + }, + { + "type": "operator", + "start": 43487, + "end": 43488, + "value": "-" + }, + { + "type": "number", + "start": 43488, + "end": 43506, + "value": "0.6228175690649898" + }, + { + "type": "whitespace", + "start": 43506, + "end": 43512, + "value": "\n " + }, + { + "type": "brace", + "start": 43512, + "end": 43513, + "value": "]" + }, + { + "type": "comma", + "start": 43513, + "end": 43514, + "value": "," + }, + { + "type": "whitespace", + "start": 43514, + "end": 43515, + "value": " " + }, + { + "type": "operator", + "start": 43515, + "end": 43516, + "value": "%" + }, + { + "type": "brace", + "start": 43516, + "end": 43517, + "value": ")" + }, + { + "type": "whitespace", + "start": 43517, + "end": 43520, + "value": "\n " + }, + { + "type": "operator", + "start": 43520, + "end": 43522, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43522, + "end": 43523, + "value": " " + }, + { + "type": "word", + "start": 43523, + "end": 43527, + "value": "line" + }, + { + "type": "brace", + "start": 43527, + "end": 43528, + "value": "(" + }, + { + "type": "brace", + "start": 43528, + "end": 43529, + "value": "[" + }, + { + "type": "whitespace", + "start": 43529, + "end": 43537, + "value": "\n " + }, + { + "type": "number", + "start": 43537, + "end": 43556, + "value": "0.18052415837320734" + }, + { + "type": "comma", + "start": 43556, + "end": 43557, + "value": "," + }, + { + "type": "whitespace", + "start": 43557, + "end": 43565, + "value": "\n " + }, + { + "type": "operator", + "start": 43565, + "end": 43566, + "value": "-" + }, + { + "type": "number", + "start": 43566, + "end": 43585, + "value": "0.36894384647296197" + }, + { + "type": "whitespace", + "start": 43585, + "end": 43591, + "value": "\n " + }, + { + "type": "brace", + "start": 43591, + "end": 43592, + "value": "]" + }, + { + "type": "comma", + "start": 43592, + "end": 43593, + "value": "," + }, + { + "type": "whitespace", + "start": 43593, + "end": 43594, + "value": " " + }, + { + "type": "operator", + "start": 43594, + "end": 43595, + "value": "%" + }, + { + "type": "brace", + "start": 43595, + "end": 43596, + "value": ")" + }, + { + "type": "whitespace", + "start": 43596, + "end": 43599, + "value": "\n " + }, + { + "type": "operator", + "start": 43599, + "end": 43601, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43601, + "end": 43602, + "value": " " + }, + { + "type": "word", + "start": 43602, + "end": 43606, + "value": "line" + }, + { + "type": "brace", + "start": 43606, + "end": 43607, + "value": "(" + }, + { + "type": "brace", + "start": 43607, + "end": 43608, + "value": "[" + }, + { + "type": "number", + "start": 43608, + "end": 43626, + "value": "0.5384372634075449" + }, + { + "type": "comma", + "start": 43626, + "end": 43627, + "value": "," + }, + { + "type": "whitespace", + "start": 43627, + "end": 43628, + "value": " " + }, + { + "type": "number", + "start": 43628, + "end": 43646, + "value": "0.2377565050887107" + }, + { + "type": "brace", + "start": 43646, + "end": 43647, + "value": "]" + }, + { + "type": "comma", + "start": 43647, + "end": 43648, + "value": "," + }, + { + "type": "whitespace", + "start": 43648, + "end": 43649, + "value": " " + }, + { + "type": "operator", + "start": 43649, + "end": 43650, + "value": "%" + }, + { + "type": "brace", + "start": 43650, + "end": 43651, + "value": ")" + }, + { + "type": "whitespace", + "start": 43651, + "end": 43654, + "value": "\n " + }, + { + "type": "operator", + "start": 43654, + "end": 43656, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43656, + "end": 43657, + "value": " " + }, + { + "type": "word", + "start": 43657, + "end": 43661, + "value": "line" + }, + { + "type": "brace", + "start": 43661, + "end": 43662, + "value": "(" + }, + { + "type": "brace", + "start": 43662, + "end": 43663, + "value": "[" + }, + { + "type": "whitespace", + "start": 43663, + "end": 43671, + "value": "\n " + }, + { + "type": "number", + "start": 43671, + "end": 43690, + "value": "0.39043436929278874" + }, + { + "type": "comma", + "start": 43690, + "end": 43691, + "value": "," + }, + { + "type": "whitespace", + "start": 43691, + "end": 43699, + "value": "\n " + }, + { + "type": "number", + "start": 43699, + "end": 43718, + "value": "0.14273182483160451" + }, + { + "type": "whitespace", + "start": 43718, + "end": 43724, + "value": "\n " + }, + { + "type": "brace", + "start": 43724, + "end": 43725, + "value": "]" + }, + { + "type": "comma", + "start": 43725, + "end": 43726, + "value": "," + }, + { + "type": "whitespace", + "start": 43726, + "end": 43727, + "value": " " + }, + { + "type": "operator", + "start": 43727, + "end": 43728, + "value": "%" + }, + { + "type": "brace", + "start": 43728, + "end": 43729, + "value": ")" + }, + { + "type": "whitespace", + "start": 43729, + "end": 43732, + "value": "\n " + }, + { + "type": "operator", + "start": 43732, + "end": 43734, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43734, + "end": 43735, + "value": " " + }, + { + "type": "word", + "start": 43735, + "end": 43739, + "value": "line" + }, + { + "type": "brace", + "start": 43739, + "end": 43740, + "value": "(" + }, + { + "type": "brace", + "start": 43740, + "end": 43741, + "value": "[" + }, + { + "type": "whitespace", + "start": 43741, + "end": 43749, + "value": "\n " + }, + { + "type": "number", + "start": 43749, + "end": 43768, + "value": "0.09782890412897283" + }, + { + "type": "comma", + "start": 43768, + "end": 43769, + "value": "," + }, + { + "type": "whitespace", + "start": 43769, + "end": 43777, + "value": "\n " + }, + { + "type": "number", + "start": 43777, + "end": 43795, + "value": "0.9907667536909659" + }, + { + "type": "whitespace", + "start": 43795, + "end": 43801, + "value": "\n " + }, + { + "type": "brace", + "start": 43801, + "end": 43802, + "value": "]" + }, + { + "type": "comma", + "start": 43802, + "end": 43803, + "value": "," + }, + { + "type": "whitespace", + "start": 43803, + "end": 43804, + "value": " " + }, + { + "type": "operator", + "start": 43804, + "end": 43805, + "value": "%" + }, + { + "type": "brace", + "start": 43805, + "end": 43806, + "value": ")" + }, + { + "type": "whitespace", + "start": 43806, + "end": 43809, + "value": "\n " + }, + { + "type": "operator", + "start": 43809, + "end": 43811, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43811, + "end": 43812, + "value": " " + }, + { + "type": "word", + "start": 43812, + "end": 43816, + "value": "line" + }, + { + "type": "brace", + "start": 43816, + "end": 43817, + "value": "(" + }, + { + "type": "brace", + "start": 43817, + "end": 43818, + "value": "[" + }, + { + "type": "whitespace", + "start": 43818, + "end": 43826, + "value": "\n " + }, + { + "type": "number", + "start": 43826, + "end": 43844, + "value": "0.5286610085921146" + }, + { + "type": "comma", + "start": 43844, + "end": 43845, + "value": "," + }, + { + "type": "whitespace", + "start": 43845, + "end": 43853, + "value": "\n " + }, + { + "type": "operator", + "start": 43853, + "end": 43854, + "value": "-" + }, + { + "type": "number", + "start": 43854, + "end": 43872, + "value": "0.7924508308419256" + }, + { + "type": "whitespace", + "start": 43872, + "end": 43878, + "value": "\n " + }, + { + "type": "brace", + "start": 43878, + "end": 43879, + "value": "]" + }, + { + "type": "comma", + "start": 43879, + "end": 43880, + "value": "," + }, + { + "type": "whitespace", + "start": 43880, + "end": 43881, + "value": " " + }, + { + "type": "operator", + "start": 43881, + "end": 43882, + "value": "%" + }, + { + "type": "brace", + "start": 43882, + "end": 43883, + "value": ")" + }, + { + "type": "whitespace", + "start": 43883, + "end": 43886, + "value": "\n " + }, + { + "type": "operator", + "start": 43886, + "end": 43888, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43888, + "end": 43889, + "value": " " + }, + { + "type": "word", + "start": 43889, + "end": 43893, + "value": "line" + }, + { + "type": "brace", + "start": 43893, + "end": 43894, + "value": "(" + }, + { + "type": "brace", + "start": 43894, + "end": 43895, + "value": "[" + }, + { + "type": "whitespace", + "start": 43895, + "end": 43903, + "value": "\n " + }, + { + "type": "number", + "start": 43903, + "end": 43921, + "value": "0.3789978184503342" + }, + { + "type": "comma", + "start": 43921, + "end": 43922, + "value": "," + }, + { + "type": "whitespace", + "start": 43922, + "end": 43930, + "value": "\n " + }, + { + "type": "number", + "start": 43930, + "end": 43949, + "value": "0.12396120576838676" + }, + { + "type": "whitespace", + "start": 43949, + "end": 43955, + "value": "\n " + }, + { + "type": "brace", + "start": 43955, + "end": 43956, + "value": "]" + }, + { + "type": "comma", + "start": 43956, + "end": 43957, + "value": "," + }, + { + "type": "whitespace", + "start": 43957, + "end": 43958, + "value": " " + }, + { + "type": "operator", + "start": 43958, + "end": 43959, + "value": "%" + }, + { + "type": "brace", + "start": 43959, + "end": 43960, + "value": ")" + }, + { + "type": "whitespace", + "start": 43960, + "end": 43963, + "value": "\n " + }, + { + "type": "operator", + "start": 43963, + "end": 43965, + "value": "|>" + }, + { + "type": "whitespace", + "start": 43965, + "end": 43966, + "value": " " + }, + { + "type": "word", + "start": 43966, + "end": 43970, + "value": "line" + }, + { + "type": "brace", + "start": 43970, + "end": 43971, + "value": "(" + }, + { + "type": "brace", + "start": 43971, + "end": 43972, + "value": "[" + }, + { + "type": "whitespace", + "start": 43972, + "end": 43980, + "value": "\n " + }, + { + "type": "operator", + "start": 43980, + "end": 43981, + "value": "-" + }, + { + "type": "number", + "start": 43981, + "end": 43999, + "value": "0.9484912744890612" + }, + { + "type": "comma", + "start": 43999, + "end": 44000, + "value": "," + }, + { + "type": "whitespace", + "start": 44000, + "end": 44008, + "value": "\n " + }, + { + "type": "number", + "start": 44008, + "end": 44026, + "value": "0.6729649846476855" + }, + { + "type": "whitespace", + "start": 44026, + "end": 44032, + "value": "\n " + }, + { + "type": "brace", + "start": 44032, + "end": 44033, + "value": "]" + }, + { + "type": "comma", + "start": 44033, + "end": 44034, + "value": "," + }, + { + "type": "whitespace", + "start": 44034, + "end": 44035, + "value": " " + }, + { + "type": "operator", + "start": 44035, + "end": 44036, + "value": "%" + }, + { + "type": "brace", + "start": 44036, + "end": 44037, + "value": ")" + }, + { + "type": "whitespace", + "start": 44037, + "end": 44040, + "value": "\n " + }, + { + "type": "operator", + "start": 44040, + "end": 44042, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44042, + "end": 44043, + "value": " " + }, + { + "type": "word", + "start": 44043, + "end": 44047, + "value": "line" + }, + { + "type": "brace", + "start": 44047, + "end": 44048, + "value": "(" + }, + { + "type": "brace", + "start": 44048, + "end": 44049, + "value": "[" + }, + { + "type": "whitespace", + "start": 44049, + "end": 44057, + "value": "\n " + }, + { + "type": "number", + "start": 44057, + "end": 44075, + "value": "0.7451758753425153" + }, + { + "type": "comma", + "start": 44075, + "end": 44076, + "value": "," + }, + { + "type": "whitespace", + "start": 44076, + "end": 44084, + "value": "\n " + }, + { + "type": "operator", + "start": 44084, + "end": 44085, + "value": "-" + }, + { + "type": "number", + "start": 44085, + "end": 44104, + "value": "0.21318737562458967" + }, + { + "type": "whitespace", + "start": 44104, + "end": 44110, + "value": "\n " + }, + { + "type": "brace", + "start": 44110, + "end": 44111, + "value": "]" + }, + { + "type": "comma", + "start": 44111, + "end": 44112, + "value": "," + }, + { + "type": "whitespace", + "start": 44112, + "end": 44113, + "value": " " + }, + { + "type": "operator", + "start": 44113, + "end": 44114, + "value": "%" + }, + { + "type": "brace", + "start": 44114, + "end": 44115, + "value": ")" + }, + { + "type": "whitespace", + "start": 44115, + "end": 44118, + "value": "\n " + }, + { + "type": "operator", + "start": 44118, + "end": 44120, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44120, + "end": 44121, + "value": " " + }, + { + "type": "word", + "start": 44121, + "end": 44125, + "value": "line" + }, + { + "type": "brace", + "start": 44125, + "end": 44126, + "value": "(" + }, + { + "type": "brace", + "start": 44126, + "end": 44127, + "value": "[" + }, + { + "type": "whitespace", + "start": 44127, + "end": 44135, + "value": "\n " + }, + { + "type": "number", + "start": 44135, + "end": 44153, + "value": "0.1873200727251887" + }, + { + "type": "comma", + "start": 44153, + "end": 44154, + "value": "," + }, + { + "type": "whitespace", + "start": 44154, + "end": 44162, + "value": "\n " + }, + { + "type": "operator", + "start": 44162, + "end": 44163, + "value": "-" + }, + { + "type": "number", + "start": 44163, + "end": 44182, + "value": "0.15961374297992448" + }, + { + "type": "whitespace", + "start": 44182, + "end": 44188, + "value": "\n " + }, + { + "type": "brace", + "start": 44188, + "end": 44189, + "value": "]" + }, + { + "type": "comma", + "start": 44189, + "end": 44190, + "value": "," + }, + { + "type": "whitespace", + "start": 44190, + "end": 44191, + "value": " " + }, + { + "type": "operator", + "start": 44191, + "end": 44192, + "value": "%" + }, + { + "type": "brace", + "start": 44192, + "end": 44193, + "value": ")" + }, + { + "type": "whitespace", + "start": 44193, + "end": 44196, + "value": "\n " + }, + { + "type": "operator", + "start": 44196, + "end": 44198, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44198, + "end": 44199, + "value": " " + }, + { + "type": "word", + "start": 44199, + "end": 44203, + "value": "line" + }, + { + "type": "brace", + "start": 44203, + "end": 44204, + "value": "(" + }, + { + "type": "brace", + "start": 44204, + "end": 44205, + "value": "[" + }, + { + "type": "whitespace", + "start": 44205, + "end": 44213, + "value": "\n " + }, + { + "type": "operator", + "start": 44213, + "end": 44214, + "value": "-" + }, + { + "type": "number", + "start": 44214, + "end": 44233, + "value": "0.05729464924537564" + }, + { + "type": "comma", + "start": 44233, + "end": 44234, + "value": "," + }, + { + "type": "whitespace", + "start": 44234, + "end": 44242, + "value": "\n " + }, + { + "type": "operator", + "start": 44242, + "end": 44243, + "value": "-" + }, + { + "type": "number", + "start": 44243, + "end": 44261, + "value": "0.5436345558508746" + }, + { + "type": "whitespace", + "start": 44261, + "end": 44267, + "value": "\n " + }, + { + "type": "brace", + "start": 44267, + "end": 44268, + "value": "]" + }, + { + "type": "comma", + "start": 44268, + "end": 44269, + "value": "," + }, + { + "type": "whitespace", + "start": 44269, + "end": 44270, + "value": " " + }, + { + "type": "operator", + "start": 44270, + "end": 44271, + "value": "%" + }, + { + "type": "brace", + "start": 44271, + "end": 44272, + "value": ")" + }, + { + "type": "whitespace", + "start": 44272, + "end": 44275, + "value": "\n " + }, + { + "type": "operator", + "start": 44275, + "end": 44277, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44277, + "end": 44278, + "value": " " + }, + { + "type": "word", + "start": 44278, + "end": 44282, + "value": "line" + }, + { + "type": "brace", + "start": 44282, + "end": 44283, + "value": "(" + }, + { + "type": "brace", + "start": 44283, + "end": 44284, + "value": "[" + }, + { + "type": "whitespace", + "start": 44284, + "end": 44292, + "value": "\n " + }, + { + "type": "operator", + "start": 44292, + "end": 44293, + "value": "-" + }, + { + "type": "number", + "start": 44293, + "end": 44312, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 44312, + "end": 44313, + "value": "," + }, + { + "type": "whitespace", + "start": 44313, + "end": 44321, + "value": "\n " + }, + { + "type": "operator", + "start": 44321, + "end": 44322, + "value": "-" + }, + { + "type": "number", + "start": 44322, + "end": 44340, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 44340, + "end": 44346, + "value": "\n " + }, + { + "type": "brace", + "start": 44346, + "end": 44347, + "value": "]" + }, + { + "type": "comma", + "start": 44347, + "end": 44348, + "value": "," + }, + { + "type": "whitespace", + "start": 44348, + "end": 44349, + "value": " " + }, + { + "type": "operator", + "start": 44349, + "end": 44350, + "value": "%" + }, + { + "type": "brace", + "start": 44350, + "end": 44351, + "value": ")" + }, + { + "type": "whitespace", + "start": 44351, + "end": 44354, + "value": "\n " + }, + { + "type": "operator", + "start": 44354, + "end": 44356, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44356, + "end": 44357, + "value": " " + }, + { + "type": "word", + "start": 44357, + "end": 44361, + "value": "line" + }, + { + "type": "brace", + "start": 44361, + "end": 44362, + "value": "(" + }, + { + "type": "brace", + "start": 44362, + "end": 44363, + "value": "[" + }, + { + "type": "whitespace", + "start": 44363, + "end": 44371, + "value": "\n " + }, + { + "type": "operator", + "start": 44371, + "end": 44372, + "value": "-" + }, + { + "type": "number", + "start": 44372, + "end": 44391, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 44391, + "end": 44392, + "value": "," + }, + { + "type": "whitespace", + "start": 44392, + "end": 44400, + "value": "\n " + }, + { + "type": "operator", + "start": 44400, + "end": 44401, + "value": "-" + }, + { + "type": "number", + "start": 44401, + "end": 44419, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 44419, + "end": 44425, + "value": "\n " + }, + { + "type": "brace", + "start": 44425, + "end": 44426, + "value": "]" + }, + { + "type": "comma", + "start": 44426, + "end": 44427, + "value": "," + }, + { + "type": "whitespace", + "start": 44427, + "end": 44428, + "value": " " + }, + { + "type": "operator", + "start": 44428, + "end": 44429, + "value": "%" + }, + { + "type": "brace", + "start": 44429, + "end": 44430, + "value": ")" + }, + { + "type": "whitespace", + "start": 44430, + "end": 44433, + "value": "\n " + }, + { + "type": "operator", + "start": 44433, + "end": 44435, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44435, + "end": 44436, + "value": " " + }, + { + "type": "word", + "start": 44436, + "end": 44440, + "value": "line" + }, + { + "type": "brace", + "start": 44440, + "end": 44441, + "value": "(" + }, + { + "type": "brace", + "start": 44441, + "end": 44442, + "value": "[" + }, + { + "type": "number", + "start": 44442, + "end": 44460, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 44460, + "end": 44461, + "value": "," + }, + { + "type": "whitespace", + "start": 44461, + "end": 44462, + "value": " " + }, + { + "type": "number", + "start": 44462, + "end": 44480, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 44480, + "end": 44481, + "value": "]" + }, + { + "type": "comma", + "start": 44481, + "end": 44482, + "value": "," + }, + { + "type": "whitespace", + "start": 44482, + "end": 44483, + "value": " " + }, + { + "type": "operator", + "start": 44483, + "end": 44484, + "value": "%" + }, + { + "type": "brace", + "start": 44484, + "end": 44485, + "value": ")" + }, + { + "type": "whitespace", + "start": 44485, + "end": 44488, + "value": "\n " + }, + { + "type": "operator", + "start": 44488, + "end": 44490, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44490, + "end": 44491, + "value": " " + }, + { + "type": "word", + "start": 44491, + "end": 44495, + "value": "line" + }, + { + "type": "brace", + "start": 44495, + "end": 44496, + "value": "(" + }, + { + "type": "brace", + "start": 44496, + "end": 44497, + "value": "[" + }, + { + "type": "whitespace", + "start": 44497, + "end": 44505, + "value": "\n " + }, + { + "type": "operator", + "start": 44505, + "end": 44506, + "value": "-" + }, + { + "type": "number", + "start": 44506, + "end": 44524, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 44524, + "end": 44525, + "value": "," + }, + { + "type": "whitespace", + "start": 44525, + "end": 44533, + "value": "\n " + }, + { + "type": "number", + "start": 44533, + "end": 44552, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 44552, + "end": 44558, + "value": "\n " + }, + { + "type": "brace", + "start": 44558, + "end": 44559, + "value": "]" + }, + { + "type": "comma", + "start": 44559, + "end": 44560, + "value": "," + }, + { + "type": "whitespace", + "start": 44560, + "end": 44561, + "value": " " + }, + { + "type": "operator", + "start": 44561, + "end": 44562, + "value": "%" + }, + { + "type": "brace", + "start": 44562, + "end": 44563, + "value": ")" + }, + { + "type": "whitespace", + "start": 44563, + "end": 44566, + "value": "\n " + }, + { + "type": "operator", + "start": 44566, + "end": 44568, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44568, + "end": 44569, + "value": " " + }, + { + "type": "word", + "start": 44569, + "end": 44573, + "value": "line" + }, + { + "type": "brace", + "start": 44573, + "end": 44574, + "value": "(" + }, + { + "type": "brace", + "start": 44574, + "end": 44575, + "value": "[" + }, + { + "type": "whitespace", + "start": 44575, + "end": 44583, + "value": "\n " + }, + { + "type": "operator", + "start": 44583, + "end": 44584, + "value": "-" + }, + { + "type": "number", + "start": 44584, + "end": 44602, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 44602, + "end": 44603, + "value": "," + }, + { + "type": "whitespace", + "start": 44603, + "end": 44611, + "value": "\n " + }, + { + "type": "number", + "start": 44611, + "end": 44629, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 44629, + "end": 44635, + "value": "\n " + }, + { + "type": "brace", + "start": 44635, + "end": 44636, + "value": "]" + }, + { + "type": "comma", + "start": 44636, + "end": 44637, + "value": "," + }, + { + "type": "whitespace", + "start": 44637, + "end": 44638, + "value": " " + }, + { + "type": "operator", + "start": 44638, + "end": 44639, + "value": "%" + }, + { + "type": "brace", + "start": 44639, + "end": 44640, + "value": ")" + }, + { + "type": "whitespace", + "start": 44640, + "end": 44643, + "value": "\n " + }, + { + "type": "operator", + "start": 44643, + "end": 44645, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44645, + "end": 44646, + "value": " " + }, + { + "type": "word", + "start": 44646, + "end": 44650, + "value": "line" + }, + { + "type": "brace", + "start": 44650, + "end": 44651, + "value": "(" + }, + { + "type": "brace", + "start": 44651, + "end": 44652, + "value": "[" + }, + { + "type": "whitespace", + "start": 44652, + "end": 44660, + "value": "\n " + }, + { + "type": "operator", + "start": 44660, + "end": 44661, + "value": "-" + }, + { + "type": "number", + "start": 44661, + "end": 44679, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 44679, + "end": 44680, + "value": "," + }, + { + "type": "whitespace", + "start": 44680, + "end": 44688, + "value": "\n " + }, + { + "type": "number", + "start": 44688, + "end": 44706, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 44706, + "end": 44712, + "value": "\n " + }, + { + "type": "brace", + "start": 44712, + "end": 44713, + "value": "]" + }, + { + "type": "comma", + "start": 44713, + "end": 44714, + "value": "," + }, + { + "type": "whitespace", + "start": 44714, + "end": 44715, + "value": " " + }, + { + "type": "operator", + "start": 44715, + "end": 44716, + "value": "%" + }, + { + "type": "brace", + "start": 44716, + "end": 44717, + "value": ")" + }, + { + "type": "whitespace", + "start": 44717, + "end": 44720, + "value": "\n " + }, + { + "type": "operator", + "start": 44720, + "end": 44722, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44722, + "end": 44723, + "value": " " + }, + { + "type": "word", + "start": 44723, + "end": 44727, + "value": "line" + }, + { + "type": "brace", + "start": 44727, + "end": 44728, + "value": "(" + }, + { + "type": "brace", + "start": 44728, + "end": 44729, + "value": "[" + }, + { + "type": "whitespace", + "start": 44729, + "end": 44737, + "value": "\n " + }, + { + "type": "operator", + "start": 44737, + "end": 44738, + "value": "-" + }, + { + "type": "number", + "start": 44738, + "end": 44756, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 44756, + "end": 44757, + "value": "," + }, + { + "type": "whitespace", + "start": 44757, + "end": 44765, + "value": "\n " + }, + { + "type": "operator", + "start": 44765, + "end": 44766, + "value": "-" + }, + { + "type": "number", + "start": 44766, + "end": 44785, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 44785, + "end": 44791, + "value": "\n " + }, + { + "type": "brace", + "start": 44791, + "end": 44792, + "value": "]" + }, + { + "type": "comma", + "start": 44792, + "end": 44793, + "value": "," + }, + { + "type": "whitespace", + "start": 44793, + "end": 44794, + "value": " " + }, + { + "type": "operator", + "start": 44794, + "end": 44795, + "value": "%" + }, + { + "type": "brace", + "start": 44795, + "end": 44796, + "value": ")" + }, + { + "type": "whitespace", + "start": 44796, + "end": 44799, + "value": "\n " + }, + { + "type": "operator", + "start": 44799, + "end": 44801, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44801, + "end": 44802, + "value": " " + }, + { + "type": "word", + "start": 44802, + "end": 44806, + "value": "line" + }, + { + "type": "brace", + "start": 44806, + "end": 44807, + "value": "(" + }, + { + "type": "brace", + "start": 44807, + "end": 44808, + "value": "[" + }, + { + "type": "whitespace", + "start": 44808, + "end": 44816, + "value": "\n " + }, + { + "type": "number", + "start": 44816, + "end": 44835, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 44835, + "end": 44836, + "value": "," + }, + { + "type": "whitespace", + "start": 44836, + "end": 44844, + "value": "\n " + }, + { + "type": "number", + "start": 44844, + "end": 44863, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 44863, + "end": 44869, + "value": "\n " + }, + { + "type": "brace", + "start": 44869, + "end": 44870, + "value": "]" + }, + { + "type": "comma", + "start": 44870, + "end": 44871, + "value": "," + }, + { + "type": "whitespace", + "start": 44871, + "end": 44872, + "value": " " + }, + { + "type": "operator", + "start": 44872, + "end": 44873, + "value": "%" + }, + { + "type": "brace", + "start": 44873, + "end": 44874, + "value": ")" + }, + { + "type": "whitespace", + "start": 44874, + "end": 44877, + "value": "\n " + }, + { + "type": "operator", + "start": 44877, + "end": 44879, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44879, + "end": 44880, + "value": " " + }, + { + "type": "word", + "start": 44880, + "end": 44884, + "value": "line" + }, + { + "type": "brace", + "start": 44884, + "end": 44885, + "value": "(" + }, + { + "type": "brace", + "start": 44885, + "end": 44886, + "value": "[" + }, + { + "type": "whitespace", + "start": 44886, + "end": 44894, + "value": "\n " + }, + { + "type": "number", + "start": 44894, + "end": 44913, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 44913, + "end": 44914, + "value": "," + }, + { + "type": "whitespace", + "start": 44914, + "end": 44922, + "value": "\n " + }, + { + "type": "number", + "start": 44922, + "end": 44941, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 44941, + "end": 44947, + "value": "\n " + }, + { + "type": "brace", + "start": 44947, + "end": 44948, + "value": "]" + }, + { + "type": "comma", + "start": 44948, + "end": 44949, + "value": "," + }, + { + "type": "whitespace", + "start": 44949, + "end": 44950, + "value": " " + }, + { + "type": "operator", + "start": 44950, + "end": 44951, + "value": "%" + }, + { + "type": "brace", + "start": 44951, + "end": 44952, + "value": ")" + }, + { + "type": "whitespace", + "start": 44952, + "end": 44955, + "value": "\n " + }, + { + "type": "operator", + "start": 44955, + "end": 44957, + "value": "|>" + }, + { + "type": "whitespace", + "start": 44957, + "end": 44958, + "value": " " + }, + { + "type": "word", + "start": 44958, + "end": 44962, + "value": "line" + }, + { + "type": "brace", + "start": 44962, + "end": 44963, + "value": "(" + }, + { + "type": "brace", + "start": 44963, + "end": 44964, + "value": "[" + }, + { + "type": "whitespace", + "start": 44964, + "end": 44972, + "value": "\n " + }, + { + "type": "operator", + "start": 44972, + "end": 44973, + "value": "-" + }, + { + "type": "number", + "start": 44973, + "end": 44992, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 44992, + "end": 44993, + "value": "," + }, + { + "type": "whitespace", + "start": 44993, + "end": 45001, + "value": "\n " + }, + { + "type": "number", + "start": 45001, + "end": 45019, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 45019, + "end": 45025, + "value": "\n " + }, + { + "type": "brace", + "start": 45025, + "end": 45026, + "value": "]" + }, + { + "type": "comma", + "start": 45026, + "end": 45027, + "value": "," + }, + { + "type": "whitespace", + "start": 45027, + "end": 45028, + "value": " " + }, + { + "type": "operator", + "start": 45028, + "end": 45029, + "value": "%" + }, + { + "type": "brace", + "start": 45029, + "end": 45030, + "value": ")" + }, + { + "type": "whitespace", + "start": 45030, + "end": 45033, + "value": "\n " + }, + { + "type": "operator", + "start": 45033, + "end": 45035, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45035, + "end": 45036, + "value": " " + }, + { + "type": "word", + "start": 45036, + "end": 45040, + "value": "line" + }, + { + "type": "brace", + "start": 45040, + "end": 45041, + "value": "(" + }, + { + "type": "brace", + "start": 45041, + "end": 45042, + "value": "[" + }, + { + "type": "whitespace", + "start": 45042, + "end": 45050, + "value": "\n " + }, + { + "type": "operator", + "start": 45050, + "end": 45051, + "value": "-" + }, + { + "type": "number", + "start": 45051, + "end": 45070, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 45070, + "end": 45071, + "value": "," + }, + { + "type": "whitespace", + "start": 45071, + "end": 45079, + "value": "\n " + }, + { + "type": "operator", + "start": 45079, + "end": 45080, + "value": "-" + }, + { + "type": "number", + "start": 45080, + "end": 45099, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 45099, + "end": 45105, + "value": "\n " + }, + { + "type": "brace", + "start": 45105, + "end": 45106, + "value": "]" + }, + { + "type": "comma", + "start": 45106, + "end": 45107, + "value": "," + }, + { + "type": "whitespace", + "start": 45107, + "end": 45108, + "value": " " + }, + { + "type": "operator", + "start": 45108, + "end": 45109, + "value": "%" + }, + { + "type": "brace", + "start": 45109, + "end": 45110, + "value": ")" + }, + { + "type": "whitespace", + "start": 45110, + "end": 45113, + "value": "\n " + }, + { + "type": "operator", + "start": 45113, + "end": 45115, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45115, + "end": 45116, + "value": " " + }, + { + "type": "word", + "start": 45116, + "end": 45120, + "value": "line" + }, + { + "type": "brace", + "start": 45120, + "end": 45121, + "value": "(" + }, + { + "type": "brace", + "start": 45121, + "end": 45122, + "value": "[" + }, + { + "type": "whitespace", + "start": 45122, + "end": 45130, + "value": "\n " + }, + { + "type": "number", + "start": 45130, + "end": 45148, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 45148, + "end": 45149, + "value": "," + }, + { + "type": "whitespace", + "start": 45149, + "end": 45157, + "value": "\n " + }, + { + "type": "operator", + "start": 45157, + "end": 45158, + "value": "-" + }, + { + "type": "number", + "start": 45158, + "end": 45177, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 45177, + "end": 45183, + "value": "\n " + }, + { + "type": "brace", + "start": 45183, + "end": 45184, + "value": "]" + }, + { + "type": "comma", + "start": 45184, + "end": 45185, + "value": "," + }, + { + "type": "whitespace", + "start": 45185, + "end": 45186, + "value": " " + }, + { + "type": "operator", + "start": 45186, + "end": 45187, + "value": "%" + }, + { + "type": "brace", + "start": 45187, + "end": 45188, + "value": ")" + }, + { + "type": "whitespace", + "start": 45188, + "end": 45191, + "value": "\n " + }, + { + "type": "operator", + "start": 45191, + "end": 45193, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45193, + "end": 45194, + "value": " " + }, + { + "type": "word", + "start": 45194, + "end": 45198, + "value": "line" + }, + { + "type": "brace", + "start": 45198, + "end": 45199, + "value": "(" + }, + { + "type": "brace", + "start": 45199, + "end": 45200, + "value": "[" + }, + { + "type": "whitespace", + "start": 45200, + "end": 45208, + "value": "\n " + }, + { + "type": "number", + "start": 45208, + "end": 45229, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 45229, + "end": 45230, + "value": "," + }, + { + "type": "whitespace", + "start": 45230, + "end": 45238, + "value": "\n " + }, + { + "type": "operator", + "start": 45238, + "end": 45239, + "value": "-" + }, + { + "type": "number", + "start": 45239, + "end": 45257, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 45257, + "end": 45263, + "value": "\n " + }, + { + "type": "brace", + "start": 45263, + "end": 45264, + "value": "]" + }, + { + "type": "comma", + "start": 45264, + "end": 45265, + "value": "," + }, + { + "type": "whitespace", + "start": 45265, + "end": 45266, + "value": " " + }, + { + "type": "operator", + "start": 45266, + "end": 45267, + "value": "%" + }, + { + "type": "brace", + "start": 45267, + "end": 45268, + "value": ")" + }, + { + "type": "whitespace", + "start": 45268, + "end": 45271, + "value": "\n " + }, + { + "type": "operator", + "start": 45271, + "end": 45273, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45273, + "end": 45274, + "value": " " + }, + { + "type": "word", + "start": 45274, + "end": 45278, + "value": "line" + }, + { + "type": "brace", + "start": 45278, + "end": 45279, + "value": "(" + }, + { + "type": "brace", + "start": 45279, + "end": 45280, + "value": "[" + }, + { + "type": "whitespace", + "start": 45280, + "end": 45288, + "value": "\n " + }, + { + "type": "number", + "start": 45288, + "end": 45306, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 45306, + "end": 45307, + "value": "," + }, + { + "type": "whitespace", + "start": 45307, + "end": 45315, + "value": "\n " + }, + { + "type": "operator", + "start": 45315, + "end": 45316, + "value": "-" + }, + { + "type": "number", + "start": 45316, + "end": 45334, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 45334, + "end": 45340, + "value": "\n " + }, + { + "type": "brace", + "start": 45340, + "end": 45341, + "value": "]" + }, + { + "type": "comma", + "start": 45341, + "end": 45342, + "value": "," + }, + { + "type": "whitespace", + "start": 45342, + "end": 45343, + "value": " " + }, + { + "type": "operator", + "start": 45343, + "end": 45344, + "value": "%" + }, + { + "type": "brace", + "start": 45344, + "end": 45345, + "value": ")" + }, + { + "type": "whitespace", + "start": 45345, + "end": 45348, + "value": "\n " + }, + { + "type": "operator", + "start": 45348, + "end": 45350, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45350, + "end": 45351, + "value": " " + }, + { + "type": "word", + "start": 45351, + "end": 45355, + "value": "line" + }, + { + "type": "brace", + "start": 45355, + "end": 45356, + "value": "(" + }, + { + "type": "brace", + "start": 45356, + "end": 45357, + "value": "[" + }, + { + "type": "whitespace", + "start": 45357, + "end": 45365, + "value": "\n " + }, + { + "type": "operator", + "start": 45365, + "end": 45366, + "value": "-" + }, + { + "type": "number", + "start": 45366, + "end": 45384, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 45384, + "end": 45385, + "value": "," + }, + { + "type": "whitespace", + "start": 45385, + "end": 45393, + "value": "\n " + }, + { + "type": "number", + "start": 45393, + "end": 45411, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 45411, + "end": 45417, + "value": "\n " + }, + { + "type": "brace", + "start": 45417, + "end": 45418, + "value": "]" + }, + { + "type": "comma", + "start": 45418, + "end": 45419, + "value": "," + }, + { + "type": "whitespace", + "start": 45419, + "end": 45420, + "value": " " + }, + { + "type": "operator", + "start": 45420, + "end": 45421, + "value": "%" + }, + { + "type": "brace", + "start": 45421, + "end": 45422, + "value": ")" + }, + { + "type": "whitespace", + "start": 45422, + "end": 45425, + "value": "\n " + }, + { + "type": "operator", + "start": 45425, + "end": 45427, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45427, + "end": 45428, + "value": " " + }, + { + "type": "word", + "start": 45428, + "end": 45432, + "value": "line" + }, + { + "type": "brace", + "start": 45432, + "end": 45433, + "value": "(" + }, + { + "type": "brace", + "start": 45433, + "end": 45434, + "value": "[" + }, + { + "type": "number", + "start": 45434, + "end": 45452, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 45452, + "end": 45453, + "value": "," + }, + { + "type": "whitespace", + "start": 45453, + "end": 45454, + "value": " " + }, + { + "type": "number", + "start": 45454, + "end": 45472, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 45472, + "end": 45473, + "value": "]" + }, + { + "type": "comma", + "start": 45473, + "end": 45474, + "value": "," + }, + { + "type": "whitespace", + "start": 45474, + "end": 45475, + "value": " " + }, + { + "type": "operator", + "start": 45475, + "end": 45476, + "value": "%" + }, + { + "type": "brace", + "start": 45476, + "end": 45477, + "value": ")" + }, + { + "type": "whitespace", + "start": 45477, + "end": 45480, + "value": "\n " + }, + { + "type": "operator", + "start": 45480, + "end": 45482, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45482, + "end": 45483, + "value": " " + }, + { + "type": "word", + "start": 45483, + "end": 45487, + "value": "line" + }, + { + "type": "brace", + "start": 45487, + "end": 45488, + "value": "(" + }, + { + "type": "brace", + "start": 45488, + "end": 45489, + "value": "[" + }, + { + "type": "whitespace", + "start": 45489, + "end": 45497, + "value": "\n " + }, + { + "type": "operator", + "start": 45497, + "end": 45498, + "value": "-" + }, + { + "type": "number", + "start": 45498, + "end": 45517, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 45517, + "end": 45518, + "value": "," + }, + { + "type": "whitespace", + "start": 45518, + "end": 45526, + "value": "\n " + }, + { + "type": "number", + "start": 45526, + "end": 45546, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 45546, + "end": 45552, + "value": "\n " + }, + { + "type": "brace", + "start": 45552, + "end": 45553, + "value": "]" + }, + { + "type": "comma", + "start": 45553, + "end": 45554, + "value": "," + }, + { + "type": "whitespace", + "start": 45554, + "end": 45555, + "value": " " + }, + { + "type": "operator", + "start": 45555, + "end": 45556, + "value": "%" + }, + { + "type": "brace", + "start": 45556, + "end": 45557, + "value": ")" + }, + { + "type": "whitespace", + "start": 45557, + "end": 45560, + "value": "\n " + }, + { + "type": "operator", + "start": 45560, + "end": 45562, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45562, + "end": 45563, + "value": " " + }, + { + "type": "word", + "start": 45563, + "end": 45567, + "value": "line" + }, + { + "type": "brace", + "start": 45567, + "end": 45568, + "value": "(" + }, + { + "type": "brace", + "start": 45568, + "end": 45569, + "value": "[" + }, + { + "type": "whitespace", + "start": 45569, + "end": 45577, + "value": "\n " + }, + { + "type": "operator", + "start": 45577, + "end": 45578, + "value": "-" + }, + { + "type": "number", + "start": 45578, + "end": 45596, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 45596, + "end": 45597, + "value": "," + }, + { + "type": "whitespace", + "start": 45597, + "end": 45605, + "value": "\n " + }, + { + "type": "operator", + "start": 45605, + "end": 45606, + "value": "-" + }, + { + "type": "number", + "start": 45606, + "end": 45625, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 45625, + "end": 45631, + "value": "\n " + }, + { + "type": "brace", + "start": 45631, + "end": 45632, + "value": "]" + }, + { + "type": "comma", + "start": 45632, + "end": 45633, + "value": "," + }, + { + "type": "whitespace", + "start": 45633, + "end": 45634, + "value": " " + }, + { + "type": "operator", + "start": 45634, + "end": 45635, + "value": "%" + }, + { + "type": "brace", + "start": 45635, + "end": 45636, + "value": ")" + }, + { + "type": "whitespace", + "start": 45636, + "end": 45639, + "value": "\n " + }, + { + "type": "operator", + "start": 45639, + "end": 45641, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45641, + "end": 45642, + "value": " " + }, + { + "type": "word", + "start": 45642, + "end": 45646, + "value": "line" + }, + { + "type": "brace", + "start": 45646, + "end": 45647, + "value": "(" + }, + { + "type": "brace", + "start": 45647, + "end": 45648, + "value": "[" + }, + { + "type": "whitespace", + "start": 45648, + "end": 45656, + "value": "\n " + }, + { + "type": "operator", + "start": 45656, + "end": 45657, + "value": "-" + }, + { + "type": "number", + "start": 45657, + "end": 45675, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 45675, + "end": 45676, + "value": "," + }, + { + "type": "whitespace", + "start": 45676, + "end": 45684, + "value": "\n " + }, + { + "type": "operator", + "start": 45684, + "end": 45685, + "value": "-" + }, + { + "type": "number", + "start": 45685, + "end": 45704, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 45704, + "end": 45710, + "value": "\n " + }, + { + "type": "brace", + "start": 45710, + "end": 45711, + "value": "]" + }, + { + "type": "comma", + "start": 45711, + "end": 45712, + "value": "," + }, + { + "type": "whitespace", + "start": 45712, + "end": 45713, + "value": " " + }, + { + "type": "operator", + "start": 45713, + "end": 45714, + "value": "%" + }, + { + "type": "brace", + "start": 45714, + "end": 45715, + "value": ")" + }, + { + "type": "whitespace", + "start": 45715, + "end": 45718, + "value": "\n " + }, + { + "type": "operator", + "start": 45718, + "end": 45720, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45720, + "end": 45721, + "value": " " + }, + { + "type": "word", + "start": 45721, + "end": 45725, + "value": "line" + }, + { + "type": "brace", + "start": 45725, + "end": 45726, + "value": "(" + }, + { + "type": "brace", + "start": 45726, + "end": 45727, + "value": "[" + }, + { + "type": "number", + "start": 45727, + "end": 45744, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 45744, + "end": 45745, + "value": "," + }, + { + "type": "whitespace", + "start": 45745, + "end": 45746, + "value": " " + }, + { + "type": "number", + "start": 45746, + "end": 45764, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 45764, + "end": 45765, + "value": "]" + }, + { + "type": "comma", + "start": 45765, + "end": 45766, + "value": "," + }, + { + "type": "whitespace", + "start": 45766, + "end": 45767, + "value": " " + }, + { + "type": "operator", + "start": 45767, + "end": 45768, + "value": "%" + }, + { + "type": "brace", + "start": 45768, + "end": 45769, + "value": ")" + }, + { + "type": "whitespace", + "start": 45769, + "end": 45772, + "value": "\n " + }, + { + "type": "operator", + "start": 45772, + "end": 45774, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45774, + "end": 45775, + "value": " " + }, + { + "type": "word", + "start": 45775, + "end": 45779, + "value": "line" + }, + { + "type": "brace", + "start": 45779, + "end": 45780, + "value": "(" + }, + { + "type": "brace", + "start": 45780, + "end": 45781, + "value": "[" + }, + { + "type": "whitespace", + "start": 45781, + "end": 45789, + "value": "\n " + }, + { + "type": "number", + "start": 45789, + "end": 45808, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 45808, + "end": 45809, + "value": "," + }, + { + "type": "whitespace", + "start": 45809, + "end": 45817, + "value": "\n " + }, + { + "type": "operator", + "start": 45817, + "end": 45818, + "value": "-" + }, + { + "type": "number", + "start": 45818, + "end": 45837, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 45837, + "end": 45843, + "value": "\n " + }, + { + "type": "brace", + "start": 45843, + "end": 45844, + "value": "]" + }, + { + "type": "comma", + "start": 45844, + "end": 45845, + "value": "," + }, + { + "type": "whitespace", + "start": 45845, + "end": 45846, + "value": " " + }, + { + "type": "operator", + "start": 45846, + "end": 45847, + "value": "%" + }, + { + "type": "brace", + "start": 45847, + "end": 45848, + "value": ")" + }, + { + "type": "whitespace", + "start": 45848, + "end": 45851, + "value": "\n " + }, + { + "type": "operator", + "start": 45851, + "end": 45853, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45853, + "end": 45854, + "value": " " + }, + { + "type": "word", + "start": 45854, + "end": 45858, + "value": "line" + }, + { + "type": "brace", + "start": 45858, + "end": 45859, + "value": "(" + }, + { + "type": "brace", + "start": 45859, + "end": 45860, + "value": "[" + }, + { + "type": "number", + "start": 45860, + "end": 45878, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 45878, + "end": 45879, + "value": "," + }, + { + "type": "whitespace", + "start": 45879, + "end": 45880, + "value": " " + }, + { + "type": "number", + "start": 45880, + "end": 45897, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 45897, + "end": 45898, + "value": "]" + }, + { + "type": "comma", + "start": 45898, + "end": 45899, + "value": "," + }, + { + "type": "whitespace", + "start": 45899, + "end": 45900, + "value": " " + }, + { + "type": "operator", + "start": 45900, + "end": 45901, + "value": "%" + }, + { + "type": "brace", + "start": 45901, + "end": 45902, + "value": ")" + }, + { + "type": "whitespace", + "start": 45902, + "end": 45905, + "value": "\n " + }, + { + "type": "operator", + "start": 45905, + "end": 45907, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45907, + "end": 45908, + "value": " " + }, + { + "type": "word", + "start": 45908, + "end": 45912, + "value": "line" + }, + { + "type": "brace", + "start": 45912, + "end": 45913, + "value": "(" + }, + { + "type": "brace", + "start": 45913, + "end": 45914, + "value": "[" + }, + { + "type": "whitespace", + "start": 45914, + "end": 45922, + "value": "\n " + }, + { + "type": "number", + "start": 45922, + "end": 45941, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 45941, + "end": 45942, + "value": "," + }, + { + "type": "whitespace", + "start": 45942, + "end": 45950, + "value": "\n " + }, + { + "type": "operator", + "start": 45950, + "end": 45951, + "value": "-" + }, + { + "type": "number", + "start": 45951, + "end": 45969, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 45969, + "end": 45975, + "value": "\n " + }, + { + "type": "brace", + "start": 45975, + "end": 45976, + "value": "]" + }, + { + "type": "comma", + "start": 45976, + "end": 45977, + "value": "," + }, + { + "type": "whitespace", + "start": 45977, + "end": 45978, + "value": " " + }, + { + "type": "operator", + "start": 45978, + "end": 45979, + "value": "%" + }, + { + "type": "brace", + "start": 45979, + "end": 45980, + "value": ")" + }, + { + "type": "whitespace", + "start": 45980, + "end": 45983, + "value": "\n " + }, + { + "type": "operator", + "start": 45983, + "end": 45985, + "value": "|>" + }, + { + "type": "whitespace", + "start": 45985, + "end": 45986, + "value": " " + }, + { + "type": "word", + "start": 45986, + "end": 45990, + "value": "line" + }, + { + "type": "brace", + "start": 45990, + "end": 45991, + "value": "(" + }, + { + "type": "brace", + "start": 45991, + "end": 45992, + "value": "[" + }, + { + "type": "number", + "start": 45992, + "end": 46010, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 46010, + "end": 46011, + "value": "," + }, + { + "type": "whitespace", + "start": 46011, + "end": 46012, + "value": " " + }, + { + "type": "number", + "start": 46012, + "end": 46030, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 46030, + "end": 46031, + "value": "]" + }, + { + "type": "comma", + "start": 46031, + "end": 46032, + "value": "," + }, + { + "type": "whitespace", + "start": 46032, + "end": 46033, + "value": " " + }, + { + "type": "operator", + "start": 46033, + "end": 46034, + "value": "%" + }, + { + "type": "brace", + "start": 46034, + "end": 46035, + "value": ")" + }, + { + "type": "whitespace", + "start": 46035, + "end": 46038, + "value": "\n " + }, + { + "type": "operator", + "start": 46038, + "end": 46040, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46040, + "end": 46041, + "value": " " + }, + { + "type": "word", + "start": 46041, + "end": 46045, + "value": "line" + }, + { + "type": "brace", + "start": 46045, + "end": 46046, + "value": "(" + }, + { + "type": "brace", + "start": 46046, + "end": 46047, + "value": "[" + }, + { + "type": "whitespace", + "start": 46047, + "end": 46055, + "value": "\n " + }, + { + "type": "number", + "start": 46055, + "end": 46073, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 46073, + "end": 46074, + "value": "," + }, + { + "type": "whitespace", + "start": 46074, + "end": 46082, + "value": "\n " + }, + { + "type": "number", + "start": 46082, + "end": 46101, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 46101, + "end": 46107, + "value": "\n " + }, + { + "type": "brace", + "start": 46107, + "end": 46108, + "value": "]" + }, + { + "type": "comma", + "start": 46108, + "end": 46109, + "value": "," + }, + { + "type": "whitespace", + "start": 46109, + "end": 46110, + "value": " " + }, + { + "type": "operator", + "start": 46110, + "end": 46111, + "value": "%" + }, + { + "type": "brace", + "start": 46111, + "end": 46112, + "value": ")" + }, + { + "type": "whitespace", + "start": 46112, + "end": 46115, + "value": "\n " + }, + { + "type": "operator", + "start": 46115, + "end": 46117, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46117, + "end": 46118, + "value": " " + }, + { + "type": "word", + "start": 46118, + "end": 46122, + "value": "line" + }, + { + "type": "brace", + "start": 46122, + "end": 46123, + "value": "(" + }, + { + "type": "brace", + "start": 46123, + "end": 46124, + "value": "[" + }, + { + "type": "number", + "start": 46124, + "end": 46142, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 46142, + "end": 46143, + "value": "," + }, + { + "type": "whitespace", + "start": 46143, + "end": 46144, + "value": " " + }, + { + "type": "number", + "start": 46144, + "end": 46162, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 46162, + "end": 46163, + "value": "]" + }, + { + "type": "comma", + "start": 46163, + "end": 46164, + "value": "," + }, + { + "type": "whitespace", + "start": 46164, + "end": 46165, + "value": " " + }, + { + "type": "operator", + "start": 46165, + "end": 46166, + "value": "%" + }, + { + "type": "brace", + "start": 46166, + "end": 46167, + "value": ")" + }, + { + "type": "whitespace", + "start": 46167, + "end": 46170, + "value": "\n " + }, + { + "type": "operator", + "start": 46170, + "end": 46172, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46172, + "end": 46173, + "value": " " + }, + { + "type": "word", + "start": 46173, + "end": 46177, + "value": "line" + }, + { + "type": "brace", + "start": 46177, + "end": 46178, + "value": "(" + }, + { + "type": "brace", + "start": 46178, + "end": 46179, + "value": "[" + }, + { + "type": "whitespace", + "start": 46179, + "end": 46187, + "value": "\n " + }, + { + "type": "operator", + "start": 46187, + "end": 46188, + "value": "-" + }, + { + "type": "number", + "start": 46188, + "end": 46207, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 46207, + "end": 46208, + "value": "," + }, + { + "type": "whitespace", + "start": 46208, + "end": 46216, + "value": "\n " + }, + { + "type": "operator", + "start": 46216, + "end": 46217, + "value": "-" + }, + { + "type": "number", + "start": 46217, + "end": 46235, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 46235, + "end": 46241, + "value": "\n " + }, + { + "type": "brace", + "start": 46241, + "end": 46242, + "value": "]" + }, + { + "type": "comma", + "start": 46242, + "end": 46243, + "value": "," + }, + { + "type": "whitespace", + "start": 46243, + "end": 46244, + "value": " " + }, + { + "type": "operator", + "start": 46244, + "end": 46245, + "value": "%" + }, + { + "type": "brace", + "start": 46245, + "end": 46246, + "value": ")" + }, + { + "type": "whitespace", + "start": 46246, + "end": 46249, + "value": "\n " + }, + { + "type": "operator", + "start": 46249, + "end": 46251, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46251, + "end": 46252, + "value": " " + }, + { + "type": "word", + "start": 46252, + "end": 46256, + "value": "line" + }, + { + "type": "brace", + "start": 46256, + "end": 46257, + "value": "(" + }, + { + "type": "brace", + "start": 46257, + "end": 46258, + "value": "[" + }, + { + "type": "whitespace", + "start": 46258, + "end": 46266, + "value": "\n " + }, + { + "type": "number", + "start": 46266, + "end": 46284, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 46284, + "end": 46285, + "value": "," + }, + { + "type": "whitespace", + "start": 46285, + "end": 46293, + "value": "\n " + }, + { + "type": "operator", + "start": 46293, + "end": 46294, + "value": "-" + }, + { + "type": "number", + "start": 46294, + "end": 46312, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 46312, + "end": 46318, + "value": "\n " + }, + { + "type": "brace", + "start": 46318, + "end": 46319, + "value": "]" + }, + { + "type": "comma", + "start": 46319, + "end": 46320, + "value": "," + }, + { + "type": "whitespace", + "start": 46320, + "end": 46321, + "value": " " + }, + { + "type": "operator", + "start": 46321, + "end": 46322, + "value": "%" + }, + { + "type": "brace", + "start": 46322, + "end": 46323, + "value": ")" + }, + { + "type": "whitespace", + "start": 46323, + "end": 46326, + "value": "\n " + }, + { + "type": "operator", + "start": 46326, + "end": 46328, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46328, + "end": 46329, + "value": " " + }, + { + "type": "word", + "start": 46329, + "end": 46333, + "value": "line" + }, + { + "type": "brace", + "start": 46333, + "end": 46334, + "value": "(" + }, + { + "type": "brace", + "start": 46334, + "end": 46335, + "value": "[" + }, + { + "type": "whitespace", + "start": 46335, + "end": 46343, + "value": "\n " + }, + { + "type": "operator", + "start": 46343, + "end": 46344, + "value": "-" + }, + { + "type": "number", + "start": 46344, + "end": 46362, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 46362, + "end": 46363, + "value": "," + }, + { + "type": "whitespace", + "start": 46363, + "end": 46371, + "value": "\n " + }, + { + "type": "operator", + "start": 46371, + "end": 46372, + "value": "-" + }, + { + "type": "number", + "start": 46372, + "end": 46390, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 46390, + "end": 46396, + "value": "\n " + }, + { + "type": "brace", + "start": 46396, + "end": 46397, + "value": "]" + }, + { + "type": "comma", + "start": 46397, + "end": 46398, + "value": "," + }, + { + "type": "whitespace", + "start": 46398, + "end": 46399, + "value": " " + }, + { + "type": "operator", + "start": 46399, + "end": 46400, + "value": "%" + }, + { + "type": "brace", + "start": 46400, + "end": 46401, + "value": ")" + }, + { + "type": "whitespace", + "start": 46401, + "end": 46404, + "value": "\n " + }, + { + "type": "operator", + "start": 46404, + "end": 46406, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46406, + "end": 46407, + "value": " " + }, + { + "type": "word", + "start": 46407, + "end": 46411, + "value": "line" + }, + { + "type": "brace", + "start": 46411, + "end": 46412, + "value": "(" + }, + { + "type": "brace", + "start": 46412, + "end": 46413, + "value": "[" + }, + { + "type": "whitespace", + "start": 46413, + "end": 46421, + "value": "\n " + }, + { + "type": "number", + "start": 46421, + "end": 46441, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 46441, + "end": 46442, + "value": "," + }, + { + "type": "whitespace", + "start": 46442, + "end": 46450, + "value": "\n " + }, + { + "type": "operator", + "start": 46450, + "end": 46451, + "value": "-" + }, + { + "type": "number", + "start": 46451, + "end": 46470, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 46470, + "end": 46476, + "value": "\n " + }, + { + "type": "brace", + "start": 46476, + "end": 46477, + "value": "]" + }, + { + "type": "comma", + "start": 46477, + "end": 46478, + "value": "," + }, + { + "type": "whitespace", + "start": 46478, + "end": 46479, + "value": " " + }, + { + "type": "operator", + "start": 46479, + "end": 46480, + "value": "%" + }, + { + "type": "brace", + "start": 46480, + "end": 46481, + "value": ")" + }, + { + "type": "whitespace", + "start": 46481, + "end": 46484, + "value": "\n " + }, + { + "type": "operator", + "start": 46484, + "end": 46486, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46486, + "end": 46487, + "value": " " + }, + { + "type": "word", + "start": 46487, + "end": 46491, + "value": "line" + }, + { + "type": "brace", + "start": 46491, + "end": 46492, + "value": "(" + }, + { + "type": "brace", + "start": 46492, + "end": 46493, + "value": "[" + }, + { + "type": "whitespace", + "start": 46493, + "end": 46501, + "value": "\n " + }, + { + "type": "number", + "start": 46501, + "end": 46520, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 46520, + "end": 46521, + "value": "," + }, + { + "type": "whitespace", + "start": 46521, + "end": 46529, + "value": "\n " + }, + { + "type": "operator", + "start": 46529, + "end": 46530, + "value": "-" + }, + { + "type": "number", + "start": 46530, + "end": 46549, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 46549, + "end": 46555, + "value": "\n " + }, + { + "type": "brace", + "start": 46555, + "end": 46556, + "value": "]" + }, + { + "type": "comma", + "start": 46556, + "end": 46557, + "value": "," + }, + { + "type": "whitespace", + "start": 46557, + "end": 46558, + "value": " " + }, + { + "type": "operator", + "start": 46558, + "end": 46559, + "value": "%" + }, + { + "type": "brace", + "start": 46559, + "end": 46560, + "value": ")" + }, + { + "type": "whitespace", + "start": 46560, + "end": 46563, + "value": "\n " + }, + { + "type": "operator", + "start": 46563, + "end": 46565, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46565, + "end": 46566, + "value": " " + }, + { + "type": "word", + "start": 46566, + "end": 46570, + "value": "line" + }, + { + "type": "brace", + "start": 46570, + "end": 46571, + "value": "(" + }, + { + "type": "brace", + "start": 46571, + "end": 46572, + "value": "[" + }, + { + "type": "whitespace", + "start": 46572, + "end": 46580, + "value": "\n " + }, + { + "type": "number", + "start": 46580, + "end": 46598, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 46598, + "end": 46599, + "value": "," + }, + { + "type": "whitespace", + "start": 46599, + "end": 46607, + "value": "\n " + }, + { + "type": "operator", + "start": 46607, + "end": 46608, + "value": "-" + }, + { + "type": "number", + "start": 46608, + "end": 46627, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 46627, + "end": 46633, + "value": "\n " + }, + { + "type": "brace", + "start": 46633, + "end": 46634, + "value": "]" + }, + { + "type": "comma", + "start": 46634, + "end": 46635, + "value": "," + }, + { + "type": "whitespace", + "start": 46635, + "end": 46636, + "value": " " + }, + { + "type": "operator", + "start": 46636, + "end": 46637, + "value": "%" + }, + { + "type": "brace", + "start": 46637, + "end": 46638, + "value": ")" + }, + { + "type": "whitespace", + "start": 46638, + "end": 46641, + "value": "\n " + }, + { + "type": "operator", + "start": 46641, + "end": 46643, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46643, + "end": 46644, + "value": " " + }, + { + "type": "word", + "start": 46644, + "end": 46648, + "value": "line" + }, + { + "type": "brace", + "start": 46648, + "end": 46649, + "value": "(" + }, + { + "type": "brace", + "start": 46649, + "end": 46650, + "value": "[" + }, + { + "type": "whitespace", + "start": 46650, + "end": 46658, + "value": "\n " + }, + { + "type": "operator", + "start": 46658, + "end": 46659, + "value": "-" + }, + { + "type": "number", + "start": 46659, + "end": 46677, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 46677, + "end": 46678, + "value": "," + }, + { + "type": "whitespace", + "start": 46678, + "end": 46686, + "value": "\n " + }, + { + "type": "operator", + "start": 46686, + "end": 46687, + "value": "-" + }, + { + "type": "number", + "start": 46687, + "end": 46705, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 46705, + "end": 46711, + "value": "\n " + }, + { + "type": "brace", + "start": 46711, + "end": 46712, + "value": "]" + }, + { + "type": "comma", + "start": 46712, + "end": 46713, + "value": "," + }, + { + "type": "whitespace", + "start": 46713, + "end": 46714, + "value": " " + }, + { + "type": "operator", + "start": 46714, + "end": 46715, + "value": "%" + }, + { + "type": "brace", + "start": 46715, + "end": 46716, + "value": ")" + }, + { + "type": "whitespace", + "start": 46716, + "end": 46719, + "value": "\n " + }, + { + "type": "operator", + "start": 46719, + "end": 46721, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46721, + "end": 46722, + "value": " " + }, + { + "type": "word", + "start": 46722, + "end": 46726, + "value": "line" + }, + { + "type": "brace", + "start": 46726, + "end": 46727, + "value": "(" + }, + { + "type": "brace", + "start": 46727, + "end": 46728, + "value": "[" + }, + { + "type": "number", + "start": 46728, + "end": 46746, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 46746, + "end": 46747, + "value": "," + }, + { + "type": "whitespace", + "start": 46747, + "end": 46748, + "value": " " + }, + { + "type": "number", + "start": 46748, + "end": 46766, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 46766, + "end": 46767, + "value": "]" + }, + { + "type": "comma", + "start": 46767, + "end": 46768, + "value": "," + }, + { + "type": "whitespace", + "start": 46768, + "end": 46769, + "value": " " + }, + { + "type": "operator", + "start": 46769, + "end": 46770, + "value": "%" + }, + { + "type": "brace", + "start": 46770, + "end": 46771, + "value": ")" + }, + { + "type": "whitespace", + "start": 46771, + "end": 46774, + "value": "\n " + }, + { + "type": "operator", + "start": 46774, + "end": 46776, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46776, + "end": 46777, + "value": " " + }, + { + "type": "word", + "start": 46777, + "end": 46781, + "value": "line" + }, + { + "type": "brace", + "start": 46781, + "end": 46782, + "value": "(" + }, + { + "type": "brace", + "start": 46782, + "end": 46783, + "value": "[" + }, + { + "type": "whitespace", + "start": 46783, + "end": 46791, + "value": "\n " + }, + { + "type": "number", + "start": 46791, + "end": 46809, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 46809, + "end": 46810, + "value": "," + }, + { + "type": "whitespace", + "start": 46810, + "end": 46818, + "value": "\n " + }, + { + "type": "number", + "start": 46818, + "end": 46837, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 46837, + "end": 46843, + "value": "\n " + }, + { + "type": "brace", + "start": 46843, + "end": 46844, + "value": "]" + }, + { + "type": "comma", + "start": 46844, + "end": 46845, + "value": "," + }, + { + "type": "whitespace", + "start": 46845, + "end": 46846, + "value": " " + }, + { + "type": "operator", + "start": 46846, + "end": 46847, + "value": "%" + }, + { + "type": "brace", + "start": 46847, + "end": 46848, + "value": ")" + }, + { + "type": "whitespace", + "start": 46848, + "end": 46851, + "value": "\n " + }, + { + "type": "operator", + "start": 46851, + "end": 46853, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46853, + "end": 46854, + "value": " " + }, + { + "type": "word", + "start": 46854, + "end": 46858, + "value": "line" + }, + { + "type": "brace", + "start": 46858, + "end": 46859, + "value": "(" + }, + { + "type": "brace", + "start": 46859, + "end": 46860, + "value": "[" + }, + { + "type": "whitespace", + "start": 46860, + "end": 46868, + "value": "\n " + }, + { + "type": "operator", + "start": 46868, + "end": 46869, + "value": "-" + }, + { + "type": "number", + "start": 46869, + "end": 46888, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 46888, + "end": 46889, + "value": "," + }, + { + "type": "whitespace", + "start": 46889, + "end": 46897, + "value": "\n " + }, + { + "type": "number", + "start": 46897, + "end": 46915, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 46915, + "end": 46921, + "value": "\n " + }, + { + "type": "brace", + "start": 46921, + "end": 46922, + "value": "]" + }, + { + "type": "comma", + "start": 46922, + "end": 46923, + "value": "," + }, + { + "type": "whitespace", + "start": 46923, + "end": 46924, + "value": " " + }, + { + "type": "operator", + "start": 46924, + "end": 46925, + "value": "%" + }, + { + "type": "brace", + "start": 46925, + "end": 46926, + "value": ")" + }, + { + "type": "whitespace", + "start": 46926, + "end": 46929, + "value": "\n " + }, + { + "type": "operator", + "start": 46929, + "end": 46931, + "value": "|>" + }, + { + "type": "whitespace", + "start": 46931, + "end": 46932, + "value": " " + }, + { + "type": "word", + "start": 46932, + "end": 46936, + "value": "line" + }, + { + "type": "brace", + "start": 46936, + "end": 46937, + "value": "(" + }, + { + "type": "brace", + "start": 46937, + "end": 46938, + "value": "[" + }, + { + "type": "whitespace", + "start": 46938, + "end": 46946, + "value": "\n " + }, + { + "type": "operator", + "start": 46946, + "end": 46947, + "value": "-" + }, + { + "type": "number", + "start": 46947, + "end": 46966, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 46966, + "end": 46967, + "value": "," + }, + { + "type": "whitespace", + "start": 46967, + "end": 46975, + "value": "\n " + }, + { + "type": "operator", + "start": 46975, + "end": 46976, + "value": "-" + }, + { + "type": "number", + "start": 46976, + "end": 46995, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 46995, + "end": 47001, + "value": "\n " + }, + { + "type": "brace", + "start": 47001, + "end": 47002, + "value": "]" + }, + { + "type": "comma", + "start": 47002, + "end": 47003, + "value": "," + }, + { + "type": "whitespace", + "start": 47003, + "end": 47004, + "value": " " + }, + { + "type": "operator", + "start": 47004, + "end": 47005, + "value": "%" + }, + { + "type": "brace", + "start": 47005, + "end": 47006, + "value": ")" + }, + { + "type": "whitespace", + "start": 47006, + "end": 47009, + "value": "\n " + }, + { + "type": "operator", + "start": 47009, + "end": 47011, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47011, + "end": 47012, + "value": " " + }, + { + "type": "word", + "start": 47012, + "end": 47016, + "value": "line" + }, + { + "type": "brace", + "start": 47016, + "end": 47017, + "value": "(" + }, + { + "type": "brace", + "start": 47017, + "end": 47018, + "value": "[" + }, + { + "type": "whitespace", + "start": 47018, + "end": 47026, + "value": "\n " + }, + { + "type": "number", + "start": 47026, + "end": 47045, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 47045, + "end": 47046, + "value": "," + }, + { + "type": "whitespace", + "start": 47046, + "end": 47054, + "value": "\n " + }, + { + "type": "operator", + "start": 47054, + "end": 47055, + "value": "-" + }, + { + "type": "number", + "start": 47055, + "end": 47073, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 47073, + "end": 47079, + "value": "\n " + }, + { + "type": "brace", + "start": 47079, + "end": 47080, + "value": "]" + }, + { + "type": "comma", + "start": 47080, + "end": 47081, + "value": "," + }, + { + "type": "whitespace", + "start": 47081, + "end": 47082, + "value": " " + }, + { + "type": "operator", + "start": 47082, + "end": 47083, + "value": "%" + }, + { + "type": "brace", + "start": 47083, + "end": 47084, + "value": ")" + }, + { + "type": "whitespace", + "start": 47084, + "end": 47087, + "value": "\n " + }, + { + "type": "operator", + "start": 47087, + "end": 47089, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47089, + "end": 47090, + "value": " " + }, + { + "type": "word", + "start": 47090, + "end": 47094, + "value": "line" + }, + { + "type": "brace", + "start": 47094, + "end": 47095, + "value": "(" + }, + { + "type": "brace", + "start": 47095, + "end": 47096, + "value": "[" + }, + { + "type": "whitespace", + "start": 47096, + "end": 47104, + "value": "\n " + }, + { + "type": "operator", + "start": 47104, + "end": 47105, + "value": "-" + }, + { + "type": "number", + "start": 47105, + "end": 47123, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 47123, + "end": 47124, + "value": "," + }, + { + "type": "whitespace", + "start": 47124, + "end": 47132, + "value": "\n " + }, + { + "type": "number", + "start": 47132, + "end": 47151, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 47151, + "end": 47157, + "value": "\n " + }, + { + "type": "brace", + "start": 47157, + "end": 47158, + "value": "]" + }, + { + "type": "comma", + "start": 47158, + "end": 47159, + "value": "," + }, + { + "type": "whitespace", + "start": 47159, + "end": 47160, + "value": " " + }, + { + "type": "operator", + "start": 47160, + "end": 47161, + "value": "%" + }, + { + "type": "brace", + "start": 47161, + "end": 47162, + "value": ")" + }, + { + "type": "whitespace", + "start": 47162, + "end": 47165, + "value": "\n " + }, + { + "type": "operator", + "start": 47165, + "end": 47167, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47167, + "end": 47168, + "value": " " + }, + { + "type": "word", + "start": 47168, + "end": 47172, + "value": "line" + }, + { + "type": "brace", + "start": 47172, + "end": 47173, + "value": "(" + }, + { + "type": "brace", + "start": 47173, + "end": 47174, + "value": "[" + }, + { + "type": "number", + "start": 47174, + "end": 47192, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 47192, + "end": 47193, + "value": "," + }, + { + "type": "whitespace", + "start": 47193, + "end": 47194, + "value": " " + }, + { + "type": "number", + "start": 47194, + "end": 47212, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 47212, + "end": 47213, + "value": "]" + }, + { + "type": "comma", + "start": 47213, + "end": 47214, + "value": "," + }, + { + "type": "whitespace", + "start": 47214, + "end": 47215, + "value": " " + }, + { + "type": "operator", + "start": 47215, + "end": 47216, + "value": "%" + }, + { + "type": "brace", + "start": 47216, + "end": 47217, + "value": ")" + }, + { + "type": "whitespace", + "start": 47217, + "end": 47220, + "value": "\n " + }, + { + "type": "operator", + "start": 47220, + "end": 47222, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47222, + "end": 47223, + "value": " " + }, + { + "type": "word", + "start": 47223, + "end": 47227, + "value": "line" + }, + { + "type": "brace", + "start": 47227, + "end": 47228, + "value": "(" + }, + { + "type": "brace", + "start": 47228, + "end": 47229, + "value": "[" + }, + { + "type": "whitespace", + "start": 47229, + "end": 47237, + "value": "\n " + }, + { + "type": "operator", + "start": 47237, + "end": 47238, + "value": "-" + }, + { + "type": "number", + "start": 47238, + "end": 47256, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 47256, + "end": 47257, + "value": "," + }, + { + "type": "whitespace", + "start": 47257, + "end": 47265, + "value": "\n " + }, + { + "type": "operator", + "start": 47265, + "end": 47266, + "value": "-" + }, + { + "type": "number", + "start": 47266, + "end": 47285, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 47285, + "end": 47291, + "value": "\n " + }, + { + "type": "brace", + "start": 47291, + "end": 47292, + "value": "]" + }, + { + "type": "comma", + "start": 47292, + "end": 47293, + "value": "," + }, + { + "type": "whitespace", + "start": 47293, + "end": 47294, + "value": " " + }, + { + "type": "operator", + "start": 47294, + "end": 47295, + "value": "%" + }, + { + "type": "brace", + "start": 47295, + "end": 47296, + "value": ")" + }, + { + "type": "whitespace", + "start": 47296, + "end": 47299, + "value": "\n " + }, + { + "type": "operator", + "start": 47299, + "end": 47301, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47301, + "end": 47302, + "value": " " + }, + { + "type": "word", + "start": 47302, + "end": 47306, + "value": "line" + }, + { + "type": "brace", + "start": 47306, + "end": 47307, + "value": "(" + }, + { + "type": "brace", + "start": 47307, + "end": 47308, + "value": "[" + }, + { + "type": "whitespace", + "start": 47308, + "end": 47316, + "value": "\n " + }, + { + "type": "number", + "start": 47316, + "end": 47334, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 47334, + "end": 47335, + "value": "," + }, + { + "type": "whitespace", + "start": 47335, + "end": 47343, + "value": "\n " + }, + { + "type": "operator", + "start": 47343, + "end": 47344, + "value": "-" + }, + { + "type": "number", + "start": 47344, + "end": 47362, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 47362, + "end": 47368, + "value": "\n " + }, + { + "type": "brace", + "start": 47368, + "end": 47369, + "value": "]" + }, + { + "type": "comma", + "start": 47369, + "end": 47370, + "value": "," + }, + { + "type": "whitespace", + "start": 47370, + "end": 47371, + "value": " " + }, + { + "type": "operator", + "start": 47371, + "end": 47372, + "value": "%" + }, + { + "type": "brace", + "start": 47372, + "end": 47373, + "value": ")" + }, + { + "type": "whitespace", + "start": 47373, + "end": 47376, + "value": "\n " + }, + { + "type": "operator", + "start": 47376, + "end": 47378, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47378, + "end": 47379, + "value": " " + }, + { + "type": "word", + "start": 47379, + "end": 47383, + "value": "line" + }, + { + "type": "brace", + "start": 47383, + "end": 47384, + "value": "(" + }, + { + "type": "brace", + "start": 47384, + "end": 47385, + "value": "[" + }, + { + "type": "whitespace", + "start": 47385, + "end": 47393, + "value": "\n " + }, + { + "type": "number", + "start": 47393, + "end": 47411, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 47411, + "end": 47412, + "value": "," + }, + { + "type": "whitespace", + "start": 47412, + "end": 47420, + "value": "\n " + }, + { + "type": "operator", + "start": 47420, + "end": 47421, + "value": "-" + }, + { + "type": "number", + "start": 47421, + "end": 47439, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 47439, + "end": 47445, + "value": "\n " + }, + { + "type": "brace", + "start": 47445, + "end": 47446, + "value": "]" + }, + { + "type": "comma", + "start": 47446, + "end": 47447, + "value": "," + }, + { + "type": "whitespace", + "start": 47447, + "end": 47448, + "value": " " + }, + { + "type": "operator", + "start": 47448, + "end": 47449, + "value": "%" + }, + { + "type": "brace", + "start": 47449, + "end": 47450, + "value": ")" + }, + { + "type": "whitespace", + "start": 47450, + "end": 47453, + "value": "\n " + }, + { + "type": "operator", + "start": 47453, + "end": 47455, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47455, + "end": 47456, + "value": " " + }, + { + "type": "word", + "start": 47456, + "end": 47460, + "value": "line" + }, + { + "type": "brace", + "start": 47460, + "end": 47461, + "value": "(" + }, + { + "type": "brace", + "start": 47461, + "end": 47462, + "value": "[" + }, + { + "type": "number", + "start": 47462, + "end": 47480, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 47480, + "end": 47481, + "value": "," + }, + { + "type": "whitespace", + "start": 47481, + "end": 47482, + "value": " " + }, + { + "type": "number", + "start": 47482, + "end": 47500, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 47500, + "end": 47501, + "value": "]" + }, + { + "type": "comma", + "start": 47501, + "end": 47502, + "value": "," + }, + { + "type": "whitespace", + "start": 47502, + "end": 47503, + "value": " " + }, + { + "type": "operator", + "start": 47503, + "end": 47504, + "value": "%" + }, + { + "type": "brace", + "start": 47504, + "end": 47505, + "value": ")" + }, + { + "type": "whitespace", + "start": 47505, + "end": 47508, + "value": "\n " + }, + { + "type": "operator", + "start": 47508, + "end": 47510, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47510, + "end": 47511, + "value": " " + }, + { + "type": "word", + "start": 47511, + "end": 47515, + "value": "line" + }, + { + "type": "brace", + "start": 47515, + "end": 47516, + "value": "(" + }, + { + "type": "brace", + "start": 47516, + "end": 47517, + "value": "[" + }, + { + "type": "whitespace", + "start": 47517, + "end": 47525, + "value": "\n " + }, + { + "type": "operator", + "start": 47525, + "end": 47526, + "value": "-" + }, + { + "type": "number", + "start": 47526, + "end": 47544, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 47544, + "end": 47545, + "value": "," + }, + { + "type": "whitespace", + "start": 47545, + "end": 47553, + "value": "\n " + }, + { + "type": "number", + "start": 47553, + "end": 47571, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 47571, + "end": 47577, + "value": "\n " + }, + { + "type": "brace", + "start": 47577, + "end": 47578, + "value": "]" + }, + { + "type": "comma", + "start": 47578, + "end": 47579, + "value": "," + }, + { + "type": "whitespace", + "start": 47579, + "end": 47580, + "value": " " + }, + { + "type": "operator", + "start": 47580, + "end": 47581, + "value": "%" + }, + { + "type": "brace", + "start": 47581, + "end": 47582, + "value": ")" + }, + { + "type": "whitespace", + "start": 47582, + "end": 47585, + "value": "\n " + }, + { + "type": "operator", + "start": 47585, + "end": 47587, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47587, + "end": 47588, + "value": " " + }, + { + "type": "word", + "start": 47588, + "end": 47592, + "value": "line" + }, + { + "type": "brace", + "start": 47592, + "end": 47593, + "value": "(" + }, + { + "type": "brace", + "start": 47593, + "end": 47594, + "value": "[" + }, + { + "type": "number", + "start": 47594, + "end": 47612, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 47612, + "end": 47613, + "value": "," + }, + { + "type": "whitespace", + "start": 47613, + "end": 47614, + "value": " " + }, + { + "type": "number", + "start": 47614, + "end": 47632, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 47632, + "end": 47633, + "value": "]" + }, + { + "type": "comma", + "start": 47633, + "end": 47634, + "value": "," + }, + { + "type": "whitespace", + "start": 47634, + "end": 47635, + "value": " " + }, + { + "type": "operator", + "start": 47635, + "end": 47636, + "value": "%" + }, + { + "type": "brace", + "start": 47636, + "end": 47637, + "value": ")" + }, + { + "type": "whitespace", + "start": 47637, + "end": 47640, + "value": "\n " + }, + { + "type": "operator", + "start": 47640, + "end": 47642, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47642, + "end": 47643, + "value": " " + }, + { + "type": "word", + "start": 47643, + "end": 47647, + "value": "line" + }, + { + "type": "brace", + "start": 47647, + "end": 47648, + "value": "(" + }, + { + "type": "brace", + "start": 47648, + "end": 47649, + "value": "[" + }, + { + "type": "whitespace", + "start": 47649, + "end": 47657, + "value": "\n " + }, + { + "type": "number", + "start": 47657, + "end": 47675, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 47675, + "end": 47676, + "value": "," + }, + { + "type": "whitespace", + "start": 47676, + "end": 47684, + "value": "\n " + }, + { + "type": "number", + "start": 47684, + "end": 47703, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 47703, + "end": 47709, + "value": "\n " + }, + { + "type": "brace", + "start": 47709, + "end": 47710, + "value": "]" + }, + { + "type": "comma", + "start": 47710, + "end": 47711, + "value": "," + }, + { + "type": "whitespace", + "start": 47711, + "end": 47712, + "value": " " + }, + { + "type": "operator", + "start": 47712, + "end": 47713, + "value": "%" + }, + { + "type": "brace", + "start": 47713, + "end": 47714, + "value": ")" + }, + { + "type": "whitespace", + "start": 47714, + "end": 47717, + "value": "\n " + }, + { + "type": "operator", + "start": 47717, + "end": 47719, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47719, + "end": 47720, + "value": " " + }, + { + "type": "word", + "start": 47720, + "end": 47724, + "value": "line" + }, + { + "type": "brace", + "start": 47724, + "end": 47725, + "value": "(" + }, + { + "type": "brace", + "start": 47725, + "end": 47726, + "value": "[" + }, + { + "type": "whitespace", + "start": 47726, + "end": 47734, + "value": "\n " + }, + { + "type": "operator", + "start": 47734, + "end": 47735, + "value": "-" + }, + { + "type": "number", + "start": 47735, + "end": 47753, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 47753, + "end": 47754, + "value": "," + }, + { + "type": "whitespace", + "start": 47754, + "end": 47762, + "value": "\n " + }, + { + "type": "operator", + "start": 47762, + "end": 47763, + "value": "-" + }, + { + "type": "number", + "start": 47763, + "end": 47780, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 47780, + "end": 47786, + "value": "\n " + }, + { + "type": "brace", + "start": 47786, + "end": 47787, + "value": "]" + }, + { + "type": "comma", + "start": 47787, + "end": 47788, + "value": "," + }, + { + "type": "whitespace", + "start": 47788, + "end": 47789, + "value": " " + }, + { + "type": "operator", + "start": 47789, + "end": 47790, + "value": "%" + }, + { + "type": "brace", + "start": 47790, + "end": 47791, + "value": ")" + }, + { + "type": "whitespace", + "start": 47791, + "end": 47794, + "value": "\n " + }, + { + "type": "operator", + "start": 47794, + "end": 47796, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47796, + "end": 47797, + "value": " " + }, + { + "type": "word", + "start": 47797, + "end": 47801, + "value": "line" + }, + { + "type": "brace", + "start": 47801, + "end": 47802, + "value": "(" + }, + { + "type": "brace", + "start": 47802, + "end": 47803, + "value": "[" + }, + { + "type": "whitespace", + "start": 47803, + "end": 47811, + "value": "\n " + }, + { + "type": "number", + "start": 47811, + "end": 47829, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 47829, + "end": 47830, + "value": "," + }, + { + "type": "whitespace", + "start": 47830, + "end": 47838, + "value": "\n " + }, + { + "type": "operator", + "start": 47838, + "end": 47839, + "value": "-" + }, + { + "type": "number", + "start": 47839, + "end": 47858, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 47858, + "end": 47864, + "value": "\n " + }, + { + "type": "brace", + "start": 47864, + "end": 47865, + "value": "]" + }, + { + "type": "comma", + "start": 47865, + "end": 47866, + "value": "," + }, + { + "type": "whitespace", + "start": 47866, + "end": 47867, + "value": " " + }, + { + "type": "operator", + "start": 47867, + "end": 47868, + "value": "%" + }, + { + "type": "brace", + "start": 47868, + "end": 47869, + "value": ")" + }, + { + "type": "whitespace", + "start": 47869, + "end": 47872, + "value": "\n " + }, + { + "type": "operator", + "start": 47872, + "end": 47874, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47874, + "end": 47875, + "value": " " + }, + { + "type": "word", + "start": 47875, + "end": 47879, + "value": "line" + }, + { + "type": "brace", + "start": 47879, + "end": 47880, + "value": "(" + }, + { + "type": "brace", + "start": 47880, + "end": 47881, + "value": "[" + }, + { + "type": "whitespace", + "start": 47881, + "end": 47889, + "value": "\n " + }, + { + "type": "operator", + "start": 47889, + "end": 47890, + "value": "-" + }, + { + "type": "number", + "start": 47890, + "end": 47909, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 47909, + "end": 47910, + "value": "," + }, + { + "type": "whitespace", + "start": 47910, + "end": 47918, + "value": "\n " + }, + { + "type": "operator", + "start": 47918, + "end": 47919, + "value": "-" + }, + { + "type": "number", + "start": 47919, + "end": 47938, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 47938, + "end": 47944, + "value": "\n " + }, + { + "type": "brace", + "start": 47944, + "end": 47945, + "value": "]" + }, + { + "type": "comma", + "start": 47945, + "end": 47946, + "value": "," + }, + { + "type": "whitespace", + "start": 47946, + "end": 47947, + "value": " " + }, + { + "type": "operator", + "start": 47947, + "end": 47948, + "value": "%" + }, + { + "type": "brace", + "start": 47948, + "end": 47949, + "value": ")" + }, + { + "type": "whitespace", + "start": 47949, + "end": 47952, + "value": "\n " + }, + { + "type": "operator", + "start": 47952, + "end": 47954, + "value": "|>" + }, + { + "type": "whitespace", + "start": 47954, + "end": 47955, + "value": " " + }, + { + "type": "word", + "start": 47955, + "end": 47959, + "value": "line" + }, + { + "type": "brace", + "start": 47959, + "end": 47960, + "value": "(" + }, + { + "type": "brace", + "start": 47960, + "end": 47961, + "value": "[" + }, + { + "type": "whitespace", + "start": 47961, + "end": 47969, + "value": "\n " + }, + { + "type": "operator", + "start": 47969, + "end": 47970, + "value": "-" + }, + { + "type": "number", + "start": 47970, + "end": 47988, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 47988, + "end": 47989, + "value": "," + }, + { + "type": "whitespace", + "start": 47989, + "end": 47997, + "value": "\n " + }, + { + "type": "operator", + "start": 47997, + "end": 47998, + "value": "-" + }, + { + "type": "number", + "start": 47998, + "end": 48017, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 48017, + "end": 48023, + "value": "\n " + }, + { + "type": "brace", + "start": 48023, + "end": 48024, + "value": "]" + }, + { + "type": "comma", + "start": 48024, + "end": 48025, + "value": "," + }, + { + "type": "whitespace", + "start": 48025, + "end": 48026, + "value": " " + }, + { + "type": "operator", + "start": 48026, + "end": 48027, + "value": "%" + }, + { + "type": "brace", + "start": 48027, + "end": 48028, + "value": ")" + }, + { + "type": "whitespace", + "start": 48028, + "end": 48031, + "value": "\n " + }, + { + "type": "operator", + "start": 48031, + "end": 48033, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48033, + "end": 48034, + "value": " " + }, + { + "type": "word", + "start": 48034, + "end": 48038, + "value": "line" + }, + { + "type": "brace", + "start": 48038, + "end": 48039, + "value": "(" + }, + { + "type": "brace", + "start": 48039, + "end": 48040, + "value": "[" + }, + { + "type": "whitespace", + "start": 48040, + "end": 48048, + "value": "\n " + }, + { + "type": "operator", + "start": 48048, + "end": 48049, + "value": "-" + }, + { + "type": "number", + "start": 48049, + "end": 48067, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 48067, + "end": 48068, + "value": "," + }, + { + "type": "whitespace", + "start": 48068, + "end": 48076, + "value": "\n " + }, + { + "type": "number", + "start": 48076, + "end": 48095, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 48095, + "end": 48101, + "value": "\n " + }, + { + "type": "brace", + "start": 48101, + "end": 48102, + "value": "]" + }, + { + "type": "comma", + "start": 48102, + "end": 48103, + "value": "," + }, + { + "type": "whitespace", + "start": 48103, + "end": 48104, + "value": " " + }, + { + "type": "operator", + "start": 48104, + "end": 48105, + "value": "%" + }, + { + "type": "brace", + "start": 48105, + "end": 48106, + "value": ")" + }, + { + "type": "whitespace", + "start": 48106, + "end": 48109, + "value": "\n " + }, + { + "type": "operator", + "start": 48109, + "end": 48111, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48111, + "end": 48112, + "value": " " + }, + { + "type": "word", + "start": 48112, + "end": 48116, + "value": "line" + }, + { + "type": "brace", + "start": 48116, + "end": 48117, + "value": "(" + }, + { + "type": "brace", + "start": 48117, + "end": 48118, + "value": "[" + }, + { + "type": "whitespace", + "start": 48118, + "end": 48126, + "value": "\n " + }, + { + "type": "operator", + "start": 48126, + "end": 48127, + "value": "-" + }, + { + "type": "number", + "start": 48127, + "end": 48145, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 48145, + "end": 48146, + "value": "," + }, + { + "type": "whitespace", + "start": 48146, + "end": 48154, + "value": "\n " + }, + { + "type": "operator", + "start": 48154, + "end": 48155, + "value": "-" + }, + { + "type": "number", + "start": 48155, + "end": 48174, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 48174, + "end": 48180, + "value": "\n " + }, + { + "type": "brace", + "start": 48180, + "end": 48181, + "value": "]" + }, + { + "type": "comma", + "start": 48181, + "end": 48182, + "value": "," + }, + { + "type": "whitespace", + "start": 48182, + "end": 48183, + "value": " " + }, + { + "type": "operator", + "start": 48183, + "end": 48184, + "value": "%" + }, + { + "type": "brace", + "start": 48184, + "end": 48185, + "value": ")" + }, + { + "type": "whitespace", + "start": 48185, + "end": 48188, + "value": "\n " + }, + { + "type": "operator", + "start": 48188, + "end": 48190, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48190, + "end": 48191, + "value": " " + }, + { + "type": "word", + "start": 48191, + "end": 48195, + "value": "line" + }, + { + "type": "brace", + "start": 48195, + "end": 48196, + "value": "(" + }, + { + "type": "brace", + "start": 48196, + "end": 48197, + "value": "[" + }, + { + "type": "whitespace", + "start": 48197, + "end": 48205, + "value": "\n " + }, + { + "type": "number", + "start": 48205, + "end": 48223, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 48223, + "end": 48224, + "value": "," + }, + { + "type": "whitespace", + "start": 48224, + "end": 48232, + "value": "\n " + }, + { + "type": "operator", + "start": 48232, + "end": 48233, + "value": "-" + }, + { + "type": "number", + "start": 48233, + "end": 48251, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 48251, + "end": 48257, + "value": "\n " + }, + { + "type": "brace", + "start": 48257, + "end": 48258, + "value": "]" + }, + { + "type": "comma", + "start": 48258, + "end": 48259, + "value": "," + }, + { + "type": "whitespace", + "start": 48259, + "end": 48260, + "value": " " + }, + { + "type": "operator", + "start": 48260, + "end": 48261, + "value": "%" + }, + { + "type": "brace", + "start": 48261, + "end": 48262, + "value": ")" + }, + { + "type": "whitespace", + "start": 48262, + "end": 48265, + "value": "\n " + }, + { + "type": "operator", + "start": 48265, + "end": 48267, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48267, + "end": 48268, + "value": " " + }, + { + "type": "word", + "start": 48268, + "end": 48272, + "value": "line" + }, + { + "type": "brace", + "start": 48272, + "end": 48273, + "value": "(" + }, + { + "type": "brace", + "start": 48273, + "end": 48274, + "value": "[" + }, + { + "type": "whitespace", + "start": 48274, + "end": 48282, + "value": "\n " + }, + { + "type": "operator", + "start": 48282, + "end": 48283, + "value": "-" + }, + { + "type": "number", + "start": 48283, + "end": 48301, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 48301, + "end": 48302, + "value": "," + }, + { + "type": "whitespace", + "start": 48302, + "end": 48310, + "value": "\n " + }, + { + "type": "number", + "start": 48310, + "end": 48328, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 48328, + "end": 48334, + "value": "\n " + }, + { + "type": "brace", + "start": 48334, + "end": 48335, + "value": "]" + }, + { + "type": "comma", + "start": 48335, + "end": 48336, + "value": "," + }, + { + "type": "whitespace", + "start": 48336, + "end": 48337, + "value": " " + }, + { + "type": "operator", + "start": 48337, + "end": 48338, + "value": "%" + }, + { + "type": "brace", + "start": 48338, + "end": 48339, + "value": ")" + }, + { + "type": "whitespace", + "start": 48339, + "end": 48342, + "value": "\n " + }, + { + "type": "operator", + "start": 48342, + "end": 48344, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48344, + "end": 48345, + "value": " " + }, + { + "type": "word", + "start": 48345, + "end": 48349, + "value": "line" + }, + { + "type": "brace", + "start": 48349, + "end": 48350, + "value": "(" + }, + { + "type": "brace", + "start": 48350, + "end": 48351, + "value": "[" + }, + { + "type": "whitespace", + "start": 48351, + "end": 48359, + "value": "\n " + }, + { + "type": "operator", + "start": 48359, + "end": 48360, + "value": "-" + }, + { + "type": "number", + "start": 48360, + "end": 48378, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 48378, + "end": 48379, + "value": "," + }, + { + "type": "whitespace", + "start": 48379, + "end": 48387, + "value": "\n " + }, + { + "type": "number", + "start": 48387, + "end": 48405, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 48405, + "end": 48411, + "value": "\n " + }, + { + "type": "brace", + "start": 48411, + "end": 48412, + "value": "]" + }, + { + "type": "comma", + "start": 48412, + "end": 48413, + "value": "," + }, + { + "type": "whitespace", + "start": 48413, + "end": 48414, + "value": " " + }, + { + "type": "operator", + "start": 48414, + "end": 48415, + "value": "%" + }, + { + "type": "brace", + "start": 48415, + "end": 48416, + "value": ")" + }, + { + "type": "whitespace", + "start": 48416, + "end": 48419, + "value": "\n " + }, + { + "type": "operator", + "start": 48419, + "end": 48421, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48421, + "end": 48422, + "value": " " + }, + { + "type": "word", + "start": 48422, + "end": 48426, + "value": "line" + }, + { + "type": "brace", + "start": 48426, + "end": 48427, + "value": "(" + }, + { + "type": "brace", + "start": 48427, + "end": 48428, + "value": "[" + }, + { + "type": "whitespace", + "start": 48428, + "end": 48436, + "value": "\n " + }, + { + "type": "operator", + "start": 48436, + "end": 48437, + "value": "-" + }, + { + "type": "number", + "start": 48437, + "end": 48455, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 48455, + "end": 48456, + "value": "," + }, + { + "type": "whitespace", + "start": 48456, + "end": 48464, + "value": "\n " + }, + { + "type": "operator", + "start": 48464, + "end": 48465, + "value": "-" + }, + { + "type": "number", + "start": 48465, + "end": 48484, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 48484, + "end": 48490, + "value": "\n " + }, + { + "type": "brace", + "start": 48490, + "end": 48491, + "value": "]" + }, + { + "type": "comma", + "start": 48491, + "end": 48492, + "value": "," + }, + { + "type": "whitespace", + "start": 48492, + "end": 48493, + "value": " " + }, + { + "type": "operator", + "start": 48493, + "end": 48494, + "value": "%" + }, + { + "type": "brace", + "start": 48494, + "end": 48495, + "value": ")" + }, + { + "type": "whitespace", + "start": 48495, + "end": 48498, + "value": "\n " + }, + { + "type": "operator", + "start": 48498, + "end": 48500, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48500, + "end": 48501, + "value": " " + }, + { + "type": "word", + "start": 48501, + "end": 48505, + "value": "line" + }, + { + "type": "brace", + "start": 48505, + "end": 48506, + "value": "(" + }, + { + "type": "brace", + "start": 48506, + "end": 48507, + "value": "[" + }, + { + "type": "whitespace", + "start": 48507, + "end": 48515, + "value": "\n " + }, + { + "type": "number", + "start": 48515, + "end": 48534, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 48534, + "end": 48535, + "value": "," + }, + { + "type": "whitespace", + "start": 48535, + "end": 48543, + "value": "\n " + }, + { + "type": "number", + "start": 48543, + "end": 48562, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 48562, + "end": 48568, + "value": "\n " + }, + { + "type": "brace", + "start": 48568, + "end": 48569, + "value": "]" + }, + { + "type": "comma", + "start": 48569, + "end": 48570, + "value": "," + }, + { + "type": "whitespace", + "start": 48570, + "end": 48571, + "value": " " + }, + { + "type": "operator", + "start": 48571, + "end": 48572, + "value": "%" + }, + { + "type": "brace", + "start": 48572, + "end": 48573, + "value": ")" + }, + { + "type": "whitespace", + "start": 48573, + "end": 48576, + "value": "\n " + }, + { + "type": "operator", + "start": 48576, + "end": 48578, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48578, + "end": 48579, + "value": " " + }, + { + "type": "word", + "start": 48579, + "end": 48583, + "value": "line" + }, + { + "type": "brace", + "start": 48583, + "end": 48584, + "value": "(" + }, + { + "type": "brace", + "start": 48584, + "end": 48585, + "value": "[" + }, + { + "type": "whitespace", + "start": 48585, + "end": 48593, + "value": "\n " + }, + { + "type": "number", + "start": 48593, + "end": 48612, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 48612, + "end": 48613, + "value": "," + }, + { + "type": "whitespace", + "start": 48613, + "end": 48621, + "value": "\n " + }, + { + "type": "number", + "start": 48621, + "end": 48640, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 48640, + "end": 48646, + "value": "\n " + }, + { + "type": "brace", + "start": 48646, + "end": 48647, + "value": "]" + }, + { + "type": "comma", + "start": 48647, + "end": 48648, + "value": "," + }, + { + "type": "whitespace", + "start": 48648, + "end": 48649, + "value": " " + }, + { + "type": "operator", + "start": 48649, + "end": 48650, + "value": "%" + }, + { + "type": "brace", + "start": 48650, + "end": 48651, + "value": ")" + }, + { + "type": "whitespace", + "start": 48651, + "end": 48654, + "value": "\n " + }, + { + "type": "operator", + "start": 48654, + "end": 48656, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48656, + "end": 48657, + "value": " " + }, + { + "type": "word", + "start": 48657, + "end": 48661, + "value": "line" + }, + { + "type": "brace", + "start": 48661, + "end": 48662, + "value": "(" + }, + { + "type": "brace", + "start": 48662, + "end": 48663, + "value": "[" + }, + { + "type": "whitespace", + "start": 48663, + "end": 48671, + "value": "\n " + }, + { + "type": "operator", + "start": 48671, + "end": 48672, + "value": "-" + }, + { + "type": "number", + "start": 48672, + "end": 48691, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 48691, + "end": 48692, + "value": "," + }, + { + "type": "whitespace", + "start": 48692, + "end": 48700, + "value": "\n " + }, + { + "type": "number", + "start": 48700, + "end": 48718, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 48718, + "end": 48724, + "value": "\n " + }, + { + "type": "brace", + "start": 48724, + "end": 48725, + "value": "]" + }, + { + "type": "comma", + "start": 48725, + "end": 48726, + "value": "," + }, + { + "type": "whitespace", + "start": 48726, + "end": 48727, + "value": " " + }, + { + "type": "operator", + "start": 48727, + "end": 48728, + "value": "%" + }, + { + "type": "brace", + "start": 48728, + "end": 48729, + "value": ")" + }, + { + "type": "whitespace", + "start": 48729, + "end": 48732, + "value": "\n " + }, + { + "type": "operator", + "start": 48732, + "end": 48734, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48734, + "end": 48735, + "value": " " + }, + { + "type": "word", + "start": 48735, + "end": 48739, + "value": "line" + }, + { + "type": "brace", + "start": 48739, + "end": 48740, + "value": "(" + }, + { + "type": "brace", + "start": 48740, + "end": 48741, + "value": "[" + }, + { + "type": "whitespace", + "start": 48741, + "end": 48749, + "value": "\n " + }, + { + "type": "operator", + "start": 48749, + "end": 48750, + "value": "-" + }, + { + "type": "number", + "start": 48750, + "end": 48769, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 48769, + "end": 48770, + "value": "," + }, + { + "type": "whitespace", + "start": 48770, + "end": 48778, + "value": "\n " + }, + { + "type": "operator", + "start": 48778, + "end": 48779, + "value": "-" + }, + { + "type": "number", + "start": 48779, + "end": 48798, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 48798, + "end": 48804, + "value": "\n " + }, + { + "type": "brace", + "start": 48804, + "end": 48805, + "value": "]" + }, + { + "type": "comma", + "start": 48805, + "end": 48806, + "value": "," + }, + { + "type": "whitespace", + "start": 48806, + "end": 48807, + "value": " " + }, + { + "type": "operator", + "start": 48807, + "end": 48808, + "value": "%" + }, + { + "type": "brace", + "start": 48808, + "end": 48809, + "value": ")" + }, + { + "type": "whitespace", + "start": 48809, + "end": 48812, + "value": "\n " + }, + { + "type": "operator", + "start": 48812, + "end": 48814, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48814, + "end": 48815, + "value": " " + }, + { + "type": "word", + "start": 48815, + "end": 48819, + "value": "line" + }, + { + "type": "brace", + "start": 48819, + "end": 48820, + "value": "(" + }, + { + "type": "brace", + "start": 48820, + "end": 48821, + "value": "[" + }, + { + "type": "whitespace", + "start": 48821, + "end": 48829, + "value": "\n " + }, + { + "type": "number", + "start": 48829, + "end": 48847, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 48847, + "end": 48848, + "value": "," + }, + { + "type": "whitespace", + "start": 48848, + "end": 48856, + "value": "\n " + }, + { + "type": "operator", + "start": 48856, + "end": 48857, + "value": "-" + }, + { + "type": "number", + "start": 48857, + "end": 48876, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 48876, + "end": 48882, + "value": "\n " + }, + { + "type": "brace", + "start": 48882, + "end": 48883, + "value": "]" + }, + { + "type": "comma", + "start": 48883, + "end": 48884, + "value": "," + }, + { + "type": "whitespace", + "start": 48884, + "end": 48885, + "value": " " + }, + { + "type": "operator", + "start": 48885, + "end": 48886, + "value": "%" + }, + { + "type": "brace", + "start": 48886, + "end": 48887, + "value": ")" + }, + { + "type": "whitespace", + "start": 48887, + "end": 48890, + "value": "\n " + }, + { + "type": "operator", + "start": 48890, + "end": 48892, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48892, + "end": 48893, + "value": " " + }, + { + "type": "word", + "start": 48893, + "end": 48897, + "value": "line" + }, + { + "type": "brace", + "start": 48897, + "end": 48898, + "value": "(" + }, + { + "type": "brace", + "start": 48898, + "end": 48899, + "value": "[" + }, + { + "type": "whitespace", + "start": 48899, + "end": 48907, + "value": "\n " + }, + { + "type": "number", + "start": 48907, + "end": 48928, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 48928, + "end": 48929, + "value": "," + }, + { + "type": "whitespace", + "start": 48929, + "end": 48937, + "value": "\n " + }, + { + "type": "operator", + "start": 48937, + "end": 48938, + "value": "-" + }, + { + "type": "number", + "start": 48938, + "end": 48956, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 48956, + "end": 48962, + "value": "\n " + }, + { + "type": "brace", + "start": 48962, + "end": 48963, + "value": "]" + }, + { + "type": "comma", + "start": 48963, + "end": 48964, + "value": "," + }, + { + "type": "whitespace", + "start": 48964, + "end": 48965, + "value": " " + }, + { + "type": "operator", + "start": 48965, + "end": 48966, + "value": "%" + }, + { + "type": "brace", + "start": 48966, + "end": 48967, + "value": ")" + }, + { + "type": "whitespace", + "start": 48967, + "end": 48970, + "value": "\n " + }, + { + "type": "operator", + "start": 48970, + "end": 48972, + "value": "|>" + }, + { + "type": "whitespace", + "start": 48972, + "end": 48973, + "value": " " + }, + { + "type": "word", + "start": 48973, + "end": 48977, + "value": "line" + }, + { + "type": "brace", + "start": 48977, + "end": 48978, + "value": "(" + }, + { + "type": "brace", + "start": 48978, + "end": 48979, + "value": "[" + }, + { + "type": "whitespace", + "start": 48979, + "end": 48987, + "value": "\n " + }, + { + "type": "number", + "start": 48987, + "end": 49005, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 49005, + "end": 49006, + "value": "," + }, + { + "type": "whitespace", + "start": 49006, + "end": 49014, + "value": "\n " + }, + { + "type": "operator", + "start": 49014, + "end": 49015, + "value": "-" + }, + { + "type": "number", + "start": 49015, + "end": 49033, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 49033, + "end": 49039, + "value": "\n " + }, + { + "type": "brace", + "start": 49039, + "end": 49040, + "value": "]" + }, + { + "type": "comma", + "start": 49040, + "end": 49041, + "value": "," + }, + { + "type": "whitespace", + "start": 49041, + "end": 49042, + "value": " " + }, + { + "type": "operator", + "start": 49042, + "end": 49043, + "value": "%" + }, + { + "type": "brace", + "start": 49043, + "end": 49044, + "value": ")" + }, + { + "type": "whitespace", + "start": 49044, + "end": 49047, + "value": "\n " + }, + { + "type": "operator", + "start": 49047, + "end": 49049, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49049, + "end": 49050, + "value": " " + }, + { + "type": "word", + "start": 49050, + "end": 49054, + "value": "line" + }, + { + "type": "brace", + "start": 49054, + "end": 49055, + "value": "(" + }, + { + "type": "brace", + "start": 49055, + "end": 49056, + "value": "[" + }, + { + "type": "whitespace", + "start": 49056, + "end": 49064, + "value": "\n " + }, + { + "type": "operator", + "start": 49064, + "end": 49065, + "value": "-" + }, + { + "type": "number", + "start": 49065, + "end": 49083, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 49083, + "end": 49084, + "value": "," + }, + { + "type": "whitespace", + "start": 49084, + "end": 49092, + "value": "\n " + }, + { + "type": "number", + "start": 49092, + "end": 49110, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 49110, + "end": 49116, + "value": "\n " + }, + { + "type": "brace", + "start": 49116, + "end": 49117, + "value": "]" + }, + { + "type": "comma", + "start": 49117, + "end": 49118, + "value": "," + }, + { + "type": "whitespace", + "start": 49118, + "end": 49119, + "value": " " + }, + { + "type": "operator", + "start": 49119, + "end": 49120, + "value": "%" + }, + { + "type": "brace", + "start": 49120, + "end": 49121, + "value": ")" + }, + { + "type": "whitespace", + "start": 49121, + "end": 49124, + "value": "\n " + }, + { + "type": "operator", + "start": 49124, + "end": 49126, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49126, + "end": 49127, + "value": " " + }, + { + "type": "word", + "start": 49127, + "end": 49131, + "value": "line" + }, + { + "type": "brace", + "start": 49131, + "end": 49132, + "value": "(" + }, + { + "type": "brace", + "start": 49132, + "end": 49133, + "value": "[" + }, + { + "type": "number", + "start": 49133, + "end": 49151, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 49151, + "end": 49152, + "value": "," + }, + { + "type": "whitespace", + "start": 49152, + "end": 49153, + "value": " " + }, + { + "type": "number", + "start": 49153, + "end": 49171, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 49171, + "end": 49172, + "value": "]" + }, + { + "type": "comma", + "start": 49172, + "end": 49173, + "value": "," + }, + { + "type": "whitespace", + "start": 49173, + "end": 49174, + "value": " " + }, + { + "type": "operator", + "start": 49174, + "end": 49175, + "value": "%" + }, + { + "type": "brace", + "start": 49175, + "end": 49176, + "value": ")" + }, + { + "type": "whitespace", + "start": 49176, + "end": 49179, + "value": "\n " + }, + { + "type": "operator", + "start": 49179, + "end": 49181, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49181, + "end": 49182, + "value": " " + }, + { + "type": "word", + "start": 49182, + "end": 49186, + "value": "line" + }, + { + "type": "brace", + "start": 49186, + "end": 49187, + "value": "(" + }, + { + "type": "brace", + "start": 49187, + "end": 49188, + "value": "[" + }, + { + "type": "whitespace", + "start": 49188, + "end": 49196, + "value": "\n " + }, + { + "type": "operator", + "start": 49196, + "end": 49197, + "value": "-" + }, + { + "type": "number", + "start": 49197, + "end": 49216, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 49216, + "end": 49217, + "value": "," + }, + { + "type": "whitespace", + "start": 49217, + "end": 49225, + "value": "\n " + }, + { + "type": "number", + "start": 49225, + "end": 49245, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 49245, + "end": 49251, + "value": "\n " + }, + { + "type": "brace", + "start": 49251, + "end": 49252, + "value": "]" + }, + { + "type": "comma", + "start": 49252, + "end": 49253, + "value": "," + }, + { + "type": "whitespace", + "start": 49253, + "end": 49254, + "value": " " + }, + { + "type": "operator", + "start": 49254, + "end": 49255, + "value": "%" + }, + { + "type": "brace", + "start": 49255, + "end": 49256, + "value": ")" + }, + { + "type": "whitespace", + "start": 49256, + "end": 49259, + "value": "\n " + }, + { + "type": "operator", + "start": 49259, + "end": 49261, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49261, + "end": 49262, + "value": " " + }, + { + "type": "word", + "start": 49262, + "end": 49266, + "value": "line" + }, + { + "type": "brace", + "start": 49266, + "end": 49267, + "value": "(" + }, + { + "type": "brace", + "start": 49267, + "end": 49268, + "value": "[" + }, + { + "type": "whitespace", + "start": 49268, + "end": 49276, + "value": "\n " + }, + { + "type": "operator", + "start": 49276, + "end": 49277, + "value": "-" + }, + { + "type": "number", + "start": 49277, + "end": 49295, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 49295, + "end": 49296, + "value": "," + }, + { + "type": "whitespace", + "start": 49296, + "end": 49304, + "value": "\n " + }, + { + "type": "operator", + "start": 49304, + "end": 49305, + "value": "-" + }, + { + "type": "number", + "start": 49305, + "end": 49324, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 49324, + "end": 49330, + "value": "\n " + }, + { + "type": "brace", + "start": 49330, + "end": 49331, + "value": "]" + }, + { + "type": "comma", + "start": 49331, + "end": 49332, + "value": "," + }, + { + "type": "whitespace", + "start": 49332, + "end": 49333, + "value": " " + }, + { + "type": "operator", + "start": 49333, + "end": 49334, + "value": "%" + }, + { + "type": "brace", + "start": 49334, + "end": 49335, + "value": ")" + }, + { + "type": "whitespace", + "start": 49335, + "end": 49338, + "value": "\n " + }, + { + "type": "operator", + "start": 49338, + "end": 49340, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49340, + "end": 49341, + "value": " " + }, + { + "type": "word", + "start": 49341, + "end": 49345, + "value": "line" + }, + { + "type": "brace", + "start": 49345, + "end": 49346, + "value": "(" + }, + { + "type": "brace", + "start": 49346, + "end": 49347, + "value": "[" + }, + { + "type": "whitespace", + "start": 49347, + "end": 49355, + "value": "\n " + }, + { + "type": "operator", + "start": 49355, + "end": 49356, + "value": "-" + }, + { + "type": "number", + "start": 49356, + "end": 49374, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 49374, + "end": 49375, + "value": "," + }, + { + "type": "whitespace", + "start": 49375, + "end": 49383, + "value": "\n " + }, + { + "type": "operator", + "start": 49383, + "end": 49384, + "value": "-" + }, + { + "type": "number", + "start": 49384, + "end": 49403, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 49403, + "end": 49409, + "value": "\n " + }, + { + "type": "brace", + "start": 49409, + "end": 49410, + "value": "]" + }, + { + "type": "comma", + "start": 49410, + "end": 49411, + "value": "," + }, + { + "type": "whitespace", + "start": 49411, + "end": 49412, + "value": " " + }, + { + "type": "operator", + "start": 49412, + "end": 49413, + "value": "%" + }, + { + "type": "brace", + "start": 49413, + "end": 49414, + "value": ")" + }, + { + "type": "whitespace", + "start": 49414, + "end": 49417, + "value": "\n " + }, + { + "type": "operator", + "start": 49417, + "end": 49419, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49419, + "end": 49420, + "value": " " + }, + { + "type": "word", + "start": 49420, + "end": 49424, + "value": "line" + }, + { + "type": "brace", + "start": 49424, + "end": 49425, + "value": "(" + }, + { + "type": "brace", + "start": 49425, + "end": 49426, + "value": "[" + }, + { + "type": "number", + "start": 49426, + "end": 49443, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 49443, + "end": 49444, + "value": "," + }, + { + "type": "whitespace", + "start": 49444, + "end": 49445, + "value": " " + }, + { + "type": "number", + "start": 49445, + "end": 49463, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 49463, + "end": 49464, + "value": "]" + }, + { + "type": "comma", + "start": 49464, + "end": 49465, + "value": "," + }, + { + "type": "whitespace", + "start": 49465, + "end": 49466, + "value": " " + }, + { + "type": "operator", + "start": 49466, + "end": 49467, + "value": "%" + }, + { + "type": "brace", + "start": 49467, + "end": 49468, + "value": ")" + }, + { + "type": "whitespace", + "start": 49468, + "end": 49471, + "value": "\n " + }, + { + "type": "operator", + "start": 49471, + "end": 49473, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49473, + "end": 49474, + "value": " " + }, + { + "type": "word", + "start": 49474, + "end": 49478, + "value": "line" + }, + { + "type": "brace", + "start": 49478, + "end": 49479, + "value": "(" + }, + { + "type": "brace", + "start": 49479, + "end": 49480, + "value": "[" + }, + { + "type": "whitespace", + "start": 49480, + "end": 49488, + "value": "\n " + }, + { + "type": "number", + "start": 49488, + "end": 49507, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 49507, + "end": 49508, + "value": "," + }, + { + "type": "whitespace", + "start": 49508, + "end": 49516, + "value": "\n " + }, + { + "type": "operator", + "start": 49516, + "end": 49517, + "value": "-" + }, + { + "type": "number", + "start": 49517, + "end": 49536, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 49536, + "end": 49542, + "value": "\n " + }, + { + "type": "brace", + "start": 49542, + "end": 49543, + "value": "]" + }, + { + "type": "comma", + "start": 49543, + "end": 49544, + "value": "," + }, + { + "type": "whitespace", + "start": 49544, + "end": 49545, + "value": " " + }, + { + "type": "operator", + "start": 49545, + "end": 49546, + "value": "%" + }, + { + "type": "brace", + "start": 49546, + "end": 49547, + "value": ")" + }, + { + "type": "whitespace", + "start": 49547, + "end": 49550, + "value": "\n " + }, + { + "type": "operator", + "start": 49550, + "end": 49552, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49552, + "end": 49553, + "value": " " + }, + { + "type": "word", + "start": 49553, + "end": 49557, + "value": "line" + }, + { + "type": "brace", + "start": 49557, + "end": 49558, + "value": "(" + }, + { + "type": "brace", + "start": 49558, + "end": 49559, + "value": "[" + }, + { + "type": "number", + "start": 49559, + "end": 49577, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 49577, + "end": 49578, + "value": "," + }, + { + "type": "whitespace", + "start": 49578, + "end": 49579, + "value": " " + }, + { + "type": "number", + "start": 49579, + "end": 49596, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 49596, + "end": 49597, + "value": "]" + }, + { + "type": "comma", + "start": 49597, + "end": 49598, + "value": "," + }, + { + "type": "whitespace", + "start": 49598, + "end": 49599, + "value": " " + }, + { + "type": "operator", + "start": 49599, + "end": 49600, + "value": "%" + }, + { + "type": "brace", + "start": 49600, + "end": 49601, + "value": ")" + }, + { + "type": "whitespace", + "start": 49601, + "end": 49604, + "value": "\n " + }, + { + "type": "operator", + "start": 49604, + "end": 49606, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49606, + "end": 49607, + "value": " " + }, + { + "type": "word", + "start": 49607, + "end": 49611, + "value": "line" + }, + { + "type": "brace", + "start": 49611, + "end": 49612, + "value": "(" + }, + { + "type": "brace", + "start": 49612, + "end": 49613, + "value": "[" + }, + { + "type": "whitespace", + "start": 49613, + "end": 49621, + "value": "\n " + }, + { + "type": "number", + "start": 49621, + "end": 49640, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 49640, + "end": 49641, + "value": "," + }, + { + "type": "whitespace", + "start": 49641, + "end": 49649, + "value": "\n " + }, + { + "type": "operator", + "start": 49649, + "end": 49650, + "value": "-" + }, + { + "type": "number", + "start": 49650, + "end": 49668, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 49668, + "end": 49674, + "value": "\n " + }, + { + "type": "brace", + "start": 49674, + "end": 49675, + "value": "]" + }, + { + "type": "comma", + "start": 49675, + "end": 49676, + "value": "," + }, + { + "type": "whitespace", + "start": 49676, + "end": 49677, + "value": " " + }, + { + "type": "operator", + "start": 49677, + "end": 49678, + "value": "%" + }, + { + "type": "brace", + "start": 49678, + "end": 49679, + "value": ")" + }, + { + "type": "whitespace", + "start": 49679, + "end": 49682, + "value": "\n " + }, + { + "type": "operator", + "start": 49682, + "end": 49684, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49684, + "end": 49685, + "value": " " + }, + { + "type": "word", + "start": 49685, + "end": 49689, + "value": "line" + }, + { + "type": "brace", + "start": 49689, + "end": 49690, + "value": "(" + }, + { + "type": "brace", + "start": 49690, + "end": 49691, + "value": "[" + }, + { + "type": "number", + "start": 49691, + "end": 49709, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 49709, + "end": 49710, + "value": "," + }, + { + "type": "whitespace", + "start": 49710, + "end": 49711, + "value": " " + }, + { + "type": "number", + "start": 49711, + "end": 49729, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 49729, + "end": 49730, + "value": "]" + }, + { + "type": "comma", + "start": 49730, + "end": 49731, + "value": "," + }, + { + "type": "whitespace", + "start": 49731, + "end": 49732, + "value": " " + }, + { + "type": "operator", + "start": 49732, + "end": 49733, + "value": "%" + }, + { + "type": "brace", + "start": 49733, + "end": 49734, + "value": ")" + }, + { + "type": "whitespace", + "start": 49734, + "end": 49737, + "value": "\n " + }, + { + "type": "operator", + "start": 49737, + "end": 49739, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49739, + "end": 49740, + "value": " " + }, + { + "type": "word", + "start": 49740, + "end": 49744, + "value": "line" + }, + { + "type": "brace", + "start": 49744, + "end": 49745, + "value": "(" + }, + { + "type": "brace", + "start": 49745, + "end": 49746, + "value": "[" + }, + { + "type": "whitespace", + "start": 49746, + "end": 49754, + "value": "\n " + }, + { + "type": "number", + "start": 49754, + "end": 49772, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 49772, + "end": 49773, + "value": "," + }, + { + "type": "whitespace", + "start": 49773, + "end": 49781, + "value": "\n " + }, + { + "type": "number", + "start": 49781, + "end": 49800, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 49800, + "end": 49806, + "value": "\n " + }, + { + "type": "brace", + "start": 49806, + "end": 49807, + "value": "]" + }, + { + "type": "comma", + "start": 49807, + "end": 49808, + "value": "," + }, + { + "type": "whitespace", + "start": 49808, + "end": 49809, + "value": " " + }, + { + "type": "operator", + "start": 49809, + "end": 49810, + "value": "%" + }, + { + "type": "brace", + "start": 49810, + "end": 49811, + "value": ")" + }, + { + "type": "whitespace", + "start": 49811, + "end": 49814, + "value": "\n " + }, + { + "type": "operator", + "start": 49814, + "end": 49816, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49816, + "end": 49817, + "value": " " + }, + { + "type": "word", + "start": 49817, + "end": 49821, + "value": "line" + }, + { + "type": "brace", + "start": 49821, + "end": 49822, + "value": "(" + }, + { + "type": "brace", + "start": 49822, + "end": 49823, + "value": "[" + }, + { + "type": "number", + "start": 49823, + "end": 49841, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 49841, + "end": 49842, + "value": "," + }, + { + "type": "whitespace", + "start": 49842, + "end": 49843, + "value": " " + }, + { + "type": "number", + "start": 49843, + "end": 49861, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 49861, + "end": 49862, + "value": "]" + }, + { + "type": "comma", + "start": 49862, + "end": 49863, + "value": "," + }, + { + "type": "whitespace", + "start": 49863, + "end": 49864, + "value": " " + }, + { + "type": "operator", + "start": 49864, + "end": 49865, + "value": "%" + }, + { + "type": "brace", + "start": 49865, + "end": 49866, + "value": ")" + }, + { + "type": "whitespace", + "start": 49866, + "end": 49869, + "value": "\n " + }, + { + "type": "operator", + "start": 49869, + "end": 49871, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49871, + "end": 49872, + "value": " " + }, + { + "type": "word", + "start": 49872, + "end": 49876, + "value": "line" + }, + { + "type": "brace", + "start": 49876, + "end": 49877, + "value": "(" + }, + { + "type": "brace", + "start": 49877, + "end": 49878, + "value": "[" + }, + { + "type": "whitespace", + "start": 49878, + "end": 49886, + "value": "\n " + }, + { + "type": "operator", + "start": 49886, + "end": 49887, + "value": "-" + }, + { + "type": "number", + "start": 49887, + "end": 49905, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 49905, + "end": 49906, + "value": "," + }, + { + "type": "whitespace", + "start": 49906, + "end": 49914, + "value": "\n " + }, + { + "type": "number", + "start": 49914, + "end": 49933, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 49933, + "end": 49939, + "value": "\n " + }, + { + "type": "brace", + "start": 49939, + "end": 49940, + "value": "]" + }, + { + "type": "comma", + "start": 49940, + "end": 49941, + "value": "," + }, + { + "type": "whitespace", + "start": 49941, + "end": 49942, + "value": " " + }, + { + "type": "operator", + "start": 49942, + "end": 49943, + "value": "%" + }, + { + "type": "brace", + "start": 49943, + "end": 49944, + "value": ")" + }, + { + "type": "whitespace", + "start": 49944, + "end": 49947, + "value": "\n " + }, + { + "type": "operator", + "start": 49947, + "end": 49949, + "value": "|>" + }, + { + "type": "whitespace", + "start": 49949, + "end": 49950, + "value": " " + }, + { + "type": "word", + "start": 49950, + "end": 49954, + "value": "line" + }, + { + "type": "brace", + "start": 49954, + "end": 49955, + "value": "(" + }, + { + "type": "brace", + "start": 49955, + "end": 49956, + "value": "[" + }, + { + "type": "whitespace", + "start": 49956, + "end": 49964, + "value": "\n " + }, + { + "type": "operator", + "start": 49964, + "end": 49965, + "value": "-" + }, + { + "type": "number", + "start": 49965, + "end": 49983, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 49983, + "end": 49984, + "value": "," + }, + { + "type": "whitespace", + "start": 49984, + "end": 49992, + "value": "\n " + }, + { + "type": "number", + "start": 49992, + "end": 50010, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 50010, + "end": 50016, + "value": "\n " + }, + { + "type": "brace", + "start": 50016, + "end": 50017, + "value": "]" + }, + { + "type": "comma", + "start": 50017, + "end": 50018, + "value": "," + }, + { + "type": "whitespace", + "start": 50018, + "end": 50019, + "value": " " + }, + { + "type": "operator", + "start": 50019, + "end": 50020, + "value": "%" + }, + { + "type": "brace", + "start": 50020, + "end": 50021, + "value": ")" + }, + { + "type": "whitespace", + "start": 50021, + "end": 50024, + "value": "\n " + }, + { + "type": "operator", + "start": 50024, + "end": 50026, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50026, + "end": 50027, + "value": " " + }, + { + "type": "word", + "start": 50027, + "end": 50031, + "value": "line" + }, + { + "type": "brace", + "start": 50031, + "end": 50032, + "value": "(" + }, + { + "type": "brace", + "start": 50032, + "end": 50033, + "value": "[" + }, + { + "type": "whitespace", + "start": 50033, + "end": 50041, + "value": "\n " + }, + { + "type": "operator", + "start": 50041, + "end": 50042, + "value": "-" + }, + { + "type": "number", + "start": 50042, + "end": 50060, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 50060, + "end": 50061, + "value": "," + }, + { + "type": "whitespace", + "start": 50061, + "end": 50069, + "value": "\n " + }, + { + "type": "number", + "start": 50069, + "end": 50087, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 50087, + "end": 50093, + "value": "\n " + }, + { + "type": "brace", + "start": 50093, + "end": 50094, + "value": "]" + }, + { + "type": "comma", + "start": 50094, + "end": 50095, + "value": "," + }, + { + "type": "whitespace", + "start": 50095, + "end": 50096, + "value": " " + }, + { + "type": "operator", + "start": 50096, + "end": 50097, + "value": "%" + }, + { + "type": "brace", + "start": 50097, + "end": 50098, + "value": ")" + }, + { + "type": "whitespace", + "start": 50098, + "end": 50101, + "value": "\n " + }, + { + "type": "operator", + "start": 50101, + "end": 50103, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50103, + "end": 50104, + "value": " " + }, + { + "type": "word", + "start": 50104, + "end": 50108, + "value": "line" + }, + { + "type": "brace", + "start": 50108, + "end": 50109, + "value": "(" + }, + { + "type": "brace", + "start": 50109, + "end": 50110, + "value": "[" + }, + { + "type": "whitespace", + "start": 50110, + "end": 50118, + "value": "\n " + }, + { + "type": "operator", + "start": 50118, + "end": 50119, + "value": "-" + }, + { + "type": "number", + "start": 50119, + "end": 50137, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 50137, + "end": 50138, + "value": "," + }, + { + "type": "whitespace", + "start": 50138, + "end": 50146, + "value": "\n " + }, + { + "type": "operator", + "start": 50146, + "end": 50147, + "value": "-" + }, + { + "type": "number", + "start": 50147, + "end": 50166, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 50166, + "end": 50172, + "value": "\n " + }, + { + "type": "brace", + "start": 50172, + "end": 50173, + "value": "]" + }, + { + "type": "comma", + "start": 50173, + "end": 50174, + "value": "," + }, + { + "type": "whitespace", + "start": 50174, + "end": 50175, + "value": " " + }, + { + "type": "operator", + "start": 50175, + "end": 50176, + "value": "%" + }, + { + "type": "brace", + "start": 50176, + "end": 50177, + "value": ")" + }, + { + "type": "whitespace", + "start": 50177, + "end": 50180, + "value": "\n " + }, + { + "type": "operator", + "start": 50180, + "end": 50182, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50182, + "end": 50183, + "value": " " + }, + { + "type": "word", + "start": 50183, + "end": 50187, + "value": "line" + }, + { + "type": "brace", + "start": 50187, + "end": 50188, + "value": "(" + }, + { + "type": "brace", + "start": 50188, + "end": 50189, + "value": "[" + }, + { + "type": "whitespace", + "start": 50189, + "end": 50197, + "value": "\n " + }, + { + "type": "number", + "start": 50197, + "end": 50216, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 50216, + "end": 50217, + "value": "," + }, + { + "type": "whitespace", + "start": 50217, + "end": 50225, + "value": "\n " + }, + { + "type": "number", + "start": 50225, + "end": 50244, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 50244, + "end": 50250, + "value": "\n " + }, + { + "type": "brace", + "start": 50250, + "end": 50251, + "value": "]" + }, + { + "type": "comma", + "start": 50251, + "end": 50252, + "value": "," + }, + { + "type": "whitespace", + "start": 50252, + "end": 50253, + "value": " " + }, + { + "type": "operator", + "start": 50253, + "end": 50254, + "value": "%" + }, + { + "type": "brace", + "start": 50254, + "end": 50255, + "value": ")" + }, + { + "type": "whitespace", + "start": 50255, + "end": 50258, + "value": "\n " + }, + { + "type": "operator", + "start": 50258, + "end": 50260, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50260, + "end": 50261, + "value": " " + }, + { + "type": "word", + "start": 50261, + "end": 50265, + "value": "line" + }, + { + "type": "brace", + "start": 50265, + "end": 50266, + "value": "(" + }, + { + "type": "brace", + "start": 50266, + "end": 50267, + "value": "[" + }, + { + "type": "whitespace", + "start": 50267, + "end": 50275, + "value": "\n " + }, + { + "type": "number", + "start": 50275, + "end": 50294, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 50294, + "end": 50295, + "value": "," + }, + { + "type": "whitespace", + "start": 50295, + "end": 50303, + "value": "\n " + }, + { + "type": "number", + "start": 50303, + "end": 50322, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 50322, + "end": 50328, + "value": "\n " + }, + { + "type": "brace", + "start": 50328, + "end": 50329, + "value": "]" + }, + { + "type": "comma", + "start": 50329, + "end": 50330, + "value": "," + }, + { + "type": "whitespace", + "start": 50330, + "end": 50331, + "value": " " + }, + { + "type": "operator", + "start": 50331, + "end": 50332, + "value": "%" + }, + { + "type": "brace", + "start": 50332, + "end": 50333, + "value": ")" + }, + { + "type": "whitespace", + "start": 50333, + "end": 50336, + "value": "\n " + }, + { + "type": "operator", + "start": 50336, + "end": 50338, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50338, + "end": 50339, + "value": " " + }, + { + "type": "word", + "start": 50339, + "end": 50343, + "value": "line" + }, + { + "type": "brace", + "start": 50343, + "end": 50344, + "value": "(" + }, + { + "type": "brace", + "start": 50344, + "end": 50345, + "value": "[" + }, + { + "type": "whitespace", + "start": 50345, + "end": 50353, + "value": "\n " + }, + { + "type": "operator", + "start": 50353, + "end": 50354, + "value": "-" + }, + { + "type": "number", + "start": 50354, + "end": 50373, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 50373, + "end": 50374, + "value": "," + }, + { + "type": "whitespace", + "start": 50374, + "end": 50382, + "value": "\n " + }, + { + "type": "number", + "start": 50382, + "end": 50400, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 50400, + "end": 50406, + "value": "\n " + }, + { + "type": "brace", + "start": 50406, + "end": 50407, + "value": "]" + }, + { + "type": "comma", + "start": 50407, + "end": 50408, + "value": "," + }, + { + "type": "whitespace", + "start": 50408, + "end": 50409, + "value": " " + }, + { + "type": "operator", + "start": 50409, + "end": 50410, + "value": "%" + }, + { + "type": "brace", + "start": 50410, + "end": 50411, + "value": ")" + }, + { + "type": "whitespace", + "start": 50411, + "end": 50414, + "value": "\n " + }, + { + "type": "operator", + "start": 50414, + "end": 50416, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50416, + "end": 50417, + "value": " " + }, + { + "type": "word", + "start": 50417, + "end": 50421, + "value": "line" + }, + { + "type": "brace", + "start": 50421, + "end": 50422, + "value": "(" + }, + { + "type": "brace", + "start": 50422, + "end": 50423, + "value": "[" + }, + { + "type": "whitespace", + "start": 50423, + "end": 50431, + "value": "\n " + }, + { + "type": "operator", + "start": 50431, + "end": 50432, + "value": "-" + }, + { + "type": "number", + "start": 50432, + "end": 50451, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 50451, + "end": 50452, + "value": "," + }, + { + "type": "whitespace", + "start": 50452, + "end": 50460, + "value": "\n " + }, + { + "type": "operator", + "start": 50460, + "end": 50461, + "value": "-" + }, + { + "type": "number", + "start": 50461, + "end": 50480, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 50480, + "end": 50486, + "value": "\n " + }, + { + "type": "brace", + "start": 50486, + "end": 50487, + "value": "]" + }, + { + "type": "comma", + "start": 50487, + "end": 50488, + "value": "," + }, + { + "type": "whitespace", + "start": 50488, + "end": 50489, + "value": " " + }, + { + "type": "operator", + "start": 50489, + "end": 50490, + "value": "%" + }, + { + "type": "brace", + "start": 50490, + "end": 50491, + "value": ")" + }, + { + "type": "whitespace", + "start": 50491, + "end": 50494, + "value": "\n " + }, + { + "type": "operator", + "start": 50494, + "end": 50496, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50496, + "end": 50497, + "value": " " + }, + { + "type": "word", + "start": 50497, + "end": 50501, + "value": "line" + }, + { + "type": "brace", + "start": 50501, + "end": 50502, + "value": "(" + }, + { + "type": "brace", + "start": 50502, + "end": 50503, + "value": "[" + }, + { + "type": "whitespace", + "start": 50503, + "end": 50511, + "value": "\n " + }, + { + "type": "number", + "start": 50511, + "end": 50529, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 50529, + "end": 50530, + "value": "," + }, + { + "type": "whitespace", + "start": 50530, + "end": 50538, + "value": "\n " + }, + { + "type": "operator", + "start": 50538, + "end": 50539, + "value": "-" + }, + { + "type": "number", + "start": 50539, + "end": 50558, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 50558, + "end": 50564, + "value": "\n " + }, + { + "type": "brace", + "start": 50564, + "end": 50565, + "value": "]" + }, + { + "type": "comma", + "start": 50565, + "end": 50566, + "value": "," + }, + { + "type": "whitespace", + "start": 50566, + "end": 50567, + "value": " " + }, + { + "type": "operator", + "start": 50567, + "end": 50568, + "value": "%" + }, + { + "type": "brace", + "start": 50568, + "end": 50569, + "value": ")" + }, + { + "type": "whitespace", + "start": 50569, + "end": 50572, + "value": "\n " + }, + { + "type": "operator", + "start": 50572, + "end": 50574, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50574, + "end": 50575, + "value": " " + }, + { + "type": "word", + "start": 50575, + "end": 50579, + "value": "line" + }, + { + "type": "brace", + "start": 50579, + "end": 50580, + "value": "(" + }, + { + "type": "brace", + "start": 50580, + "end": 50581, + "value": "[" + }, + { + "type": "whitespace", + "start": 50581, + "end": 50589, + "value": "\n " + }, + { + "type": "number", + "start": 50589, + "end": 50610, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 50610, + "end": 50611, + "value": "," + }, + { + "type": "whitespace", + "start": 50611, + "end": 50619, + "value": "\n " + }, + { + "type": "operator", + "start": 50619, + "end": 50620, + "value": "-" + }, + { + "type": "number", + "start": 50620, + "end": 50638, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 50638, + "end": 50644, + "value": "\n " + }, + { + "type": "brace", + "start": 50644, + "end": 50645, + "value": "]" + }, + { + "type": "comma", + "start": 50645, + "end": 50646, + "value": "," + }, + { + "type": "whitespace", + "start": 50646, + "end": 50647, + "value": " " + }, + { + "type": "operator", + "start": 50647, + "end": 50648, + "value": "%" + }, + { + "type": "brace", + "start": 50648, + "end": 50649, + "value": ")" + }, + { + "type": "whitespace", + "start": 50649, + "end": 50652, + "value": "\n " + }, + { + "type": "operator", + "start": 50652, + "end": 50654, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50654, + "end": 50655, + "value": " " + }, + { + "type": "word", + "start": 50655, + "end": 50659, + "value": "line" + }, + { + "type": "brace", + "start": 50659, + "end": 50660, + "value": "(" + }, + { + "type": "brace", + "start": 50660, + "end": 50661, + "value": "[" + }, + { + "type": "whitespace", + "start": 50661, + "end": 50669, + "value": "\n " + }, + { + "type": "number", + "start": 50669, + "end": 50687, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 50687, + "end": 50688, + "value": "," + }, + { + "type": "whitespace", + "start": 50688, + "end": 50696, + "value": "\n " + }, + { + "type": "operator", + "start": 50696, + "end": 50697, + "value": "-" + }, + { + "type": "number", + "start": 50697, + "end": 50715, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 50715, + "end": 50721, + "value": "\n " + }, + { + "type": "brace", + "start": 50721, + "end": 50722, + "value": "]" + }, + { + "type": "comma", + "start": 50722, + "end": 50723, + "value": "," + }, + { + "type": "whitespace", + "start": 50723, + "end": 50724, + "value": " " + }, + { + "type": "operator", + "start": 50724, + "end": 50725, + "value": "%" + }, + { + "type": "brace", + "start": 50725, + "end": 50726, + "value": ")" + }, + { + "type": "whitespace", + "start": 50726, + "end": 50729, + "value": "\n " + }, + { + "type": "operator", + "start": 50729, + "end": 50731, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50731, + "end": 50732, + "value": " " + }, + { + "type": "word", + "start": 50732, + "end": 50736, + "value": "line" + }, + { + "type": "brace", + "start": 50736, + "end": 50737, + "value": "(" + }, + { + "type": "brace", + "start": 50737, + "end": 50738, + "value": "[" + }, + { + "type": "whitespace", + "start": 50738, + "end": 50746, + "value": "\n " + }, + { + "type": "operator", + "start": 50746, + "end": 50747, + "value": "-" + }, + { + "type": "number", + "start": 50747, + "end": 50765, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 50765, + "end": 50766, + "value": "," + }, + { + "type": "whitespace", + "start": 50766, + "end": 50774, + "value": "\n " + }, + { + "type": "number", + "start": 50774, + "end": 50792, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 50792, + "end": 50798, + "value": "\n " + }, + { + "type": "brace", + "start": 50798, + "end": 50799, + "value": "]" + }, + { + "type": "comma", + "start": 50799, + "end": 50800, + "value": "," + }, + { + "type": "whitespace", + "start": 50800, + "end": 50801, + "value": " " + }, + { + "type": "operator", + "start": 50801, + "end": 50802, + "value": "%" + }, + { + "type": "brace", + "start": 50802, + "end": 50803, + "value": ")" + }, + { + "type": "whitespace", + "start": 50803, + "end": 50806, + "value": "\n " + }, + { + "type": "operator", + "start": 50806, + "end": 50808, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50808, + "end": 50809, + "value": " " + }, + { + "type": "word", + "start": 50809, + "end": 50813, + "value": "line" + }, + { + "type": "brace", + "start": 50813, + "end": 50814, + "value": "(" + }, + { + "type": "brace", + "start": 50814, + "end": 50815, + "value": "[" + }, + { + "type": "number", + "start": 50815, + "end": 50833, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 50833, + "end": 50834, + "value": "," + }, + { + "type": "whitespace", + "start": 50834, + "end": 50835, + "value": " " + }, + { + "type": "number", + "start": 50835, + "end": 50853, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 50853, + "end": 50854, + "value": "]" + }, + { + "type": "comma", + "start": 50854, + "end": 50855, + "value": "," + }, + { + "type": "whitespace", + "start": 50855, + "end": 50856, + "value": " " + }, + { + "type": "operator", + "start": 50856, + "end": 50857, + "value": "%" + }, + { + "type": "brace", + "start": 50857, + "end": 50858, + "value": ")" + }, + { + "type": "whitespace", + "start": 50858, + "end": 50861, + "value": "\n " + }, + { + "type": "operator", + "start": 50861, + "end": 50863, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50863, + "end": 50864, + "value": " " + }, + { + "type": "word", + "start": 50864, + "end": 50868, + "value": "line" + }, + { + "type": "brace", + "start": 50868, + "end": 50869, + "value": "(" + }, + { + "type": "brace", + "start": 50869, + "end": 50870, + "value": "[" + }, + { + "type": "whitespace", + "start": 50870, + "end": 50878, + "value": "\n " + }, + { + "type": "operator", + "start": 50878, + "end": 50879, + "value": "-" + }, + { + "type": "number", + "start": 50879, + "end": 50898, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 50898, + "end": 50899, + "value": "," + }, + { + "type": "whitespace", + "start": 50899, + "end": 50907, + "value": "\n " + }, + { + "type": "number", + "start": 50907, + "end": 50927, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 50927, + "end": 50933, + "value": "\n " + }, + { + "type": "brace", + "start": 50933, + "end": 50934, + "value": "]" + }, + { + "type": "comma", + "start": 50934, + "end": 50935, + "value": "," + }, + { + "type": "whitespace", + "start": 50935, + "end": 50936, + "value": " " + }, + { + "type": "operator", + "start": 50936, + "end": 50937, + "value": "%" + }, + { + "type": "brace", + "start": 50937, + "end": 50938, + "value": ")" + }, + { + "type": "whitespace", + "start": 50938, + "end": 50941, + "value": "\n " + }, + { + "type": "operator", + "start": 50941, + "end": 50943, + "value": "|>" + }, + { + "type": "whitespace", + "start": 50943, + "end": 50944, + "value": " " + }, + { + "type": "word", + "start": 50944, + "end": 50948, + "value": "line" + }, + { + "type": "brace", + "start": 50948, + "end": 50949, + "value": "(" + }, + { + "type": "brace", + "start": 50949, + "end": 50950, + "value": "[" + }, + { + "type": "whitespace", + "start": 50950, + "end": 50958, + "value": "\n " + }, + { + "type": "operator", + "start": 50958, + "end": 50959, + "value": "-" + }, + { + "type": "number", + "start": 50959, + "end": 50977, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 50977, + "end": 50978, + "value": "," + }, + { + "type": "whitespace", + "start": 50978, + "end": 50986, + "value": "\n " + }, + { + "type": "operator", + "start": 50986, + "end": 50987, + "value": "-" + }, + { + "type": "number", + "start": 50987, + "end": 51006, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 51006, + "end": 51012, + "value": "\n " + }, + { + "type": "brace", + "start": 51012, + "end": 51013, + "value": "]" + }, + { + "type": "comma", + "start": 51013, + "end": 51014, + "value": "," + }, + { + "type": "whitespace", + "start": 51014, + "end": 51015, + "value": " " + }, + { + "type": "operator", + "start": 51015, + "end": 51016, + "value": "%" + }, + { + "type": "brace", + "start": 51016, + "end": 51017, + "value": ")" + }, + { + "type": "whitespace", + "start": 51017, + "end": 51020, + "value": "\n " + }, + { + "type": "operator", + "start": 51020, + "end": 51022, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51022, + "end": 51023, + "value": " " + }, + { + "type": "word", + "start": 51023, + "end": 51027, + "value": "line" + }, + { + "type": "brace", + "start": 51027, + "end": 51028, + "value": "(" + }, + { + "type": "brace", + "start": 51028, + "end": 51029, + "value": "[" + }, + { + "type": "whitespace", + "start": 51029, + "end": 51037, + "value": "\n " + }, + { + "type": "operator", + "start": 51037, + "end": 51038, + "value": "-" + }, + { + "type": "number", + "start": 51038, + "end": 51056, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 51056, + "end": 51057, + "value": "," + }, + { + "type": "whitespace", + "start": 51057, + "end": 51065, + "value": "\n " + }, + { + "type": "operator", + "start": 51065, + "end": 51066, + "value": "-" + }, + { + "type": "number", + "start": 51066, + "end": 51085, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 51085, + "end": 51091, + "value": "\n " + }, + { + "type": "brace", + "start": 51091, + "end": 51092, + "value": "]" + }, + { + "type": "comma", + "start": 51092, + "end": 51093, + "value": "," + }, + { + "type": "whitespace", + "start": 51093, + "end": 51094, + "value": " " + }, + { + "type": "operator", + "start": 51094, + "end": 51095, + "value": "%" + }, + { + "type": "brace", + "start": 51095, + "end": 51096, + "value": ")" + }, + { + "type": "whitespace", + "start": 51096, + "end": 51099, + "value": "\n " + }, + { + "type": "operator", + "start": 51099, + "end": 51101, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51101, + "end": 51102, + "value": " " + }, + { + "type": "word", + "start": 51102, + "end": 51106, + "value": "line" + }, + { + "type": "brace", + "start": 51106, + "end": 51107, + "value": "(" + }, + { + "type": "brace", + "start": 51107, + "end": 51108, + "value": "[" + }, + { + "type": "number", + "start": 51108, + "end": 51125, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 51125, + "end": 51126, + "value": "," + }, + { + "type": "whitespace", + "start": 51126, + "end": 51127, + "value": " " + }, + { + "type": "number", + "start": 51127, + "end": 51145, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 51145, + "end": 51146, + "value": "]" + }, + { + "type": "comma", + "start": 51146, + "end": 51147, + "value": "," + }, + { + "type": "whitespace", + "start": 51147, + "end": 51148, + "value": " " + }, + { + "type": "operator", + "start": 51148, + "end": 51149, + "value": "%" + }, + { + "type": "brace", + "start": 51149, + "end": 51150, + "value": ")" + }, + { + "type": "whitespace", + "start": 51150, + "end": 51153, + "value": "\n " + }, + { + "type": "operator", + "start": 51153, + "end": 51155, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51155, + "end": 51156, + "value": " " + }, + { + "type": "word", + "start": 51156, + "end": 51160, + "value": "line" + }, + { + "type": "brace", + "start": 51160, + "end": 51161, + "value": "(" + }, + { + "type": "brace", + "start": 51161, + "end": 51162, + "value": "[" + }, + { + "type": "whitespace", + "start": 51162, + "end": 51170, + "value": "\n " + }, + { + "type": "number", + "start": 51170, + "end": 51189, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 51189, + "end": 51190, + "value": "," + }, + { + "type": "whitespace", + "start": 51190, + "end": 51198, + "value": "\n " + }, + { + "type": "operator", + "start": 51198, + "end": 51199, + "value": "-" + }, + { + "type": "number", + "start": 51199, + "end": 51218, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 51218, + "end": 51224, + "value": "\n " + }, + { + "type": "brace", + "start": 51224, + "end": 51225, + "value": "]" + }, + { + "type": "comma", + "start": 51225, + "end": 51226, + "value": "," + }, + { + "type": "whitespace", + "start": 51226, + "end": 51227, + "value": " " + }, + { + "type": "operator", + "start": 51227, + "end": 51228, + "value": "%" + }, + { + "type": "brace", + "start": 51228, + "end": 51229, + "value": ")" + }, + { + "type": "whitespace", + "start": 51229, + "end": 51232, + "value": "\n " + }, + { + "type": "operator", + "start": 51232, + "end": 51234, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51234, + "end": 51235, + "value": " " + }, + { + "type": "word", + "start": 51235, + "end": 51239, + "value": "line" + }, + { + "type": "brace", + "start": 51239, + "end": 51240, + "value": "(" + }, + { + "type": "brace", + "start": 51240, + "end": 51241, + "value": "[" + }, + { + "type": "number", + "start": 51241, + "end": 51259, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 51259, + "end": 51260, + "value": "," + }, + { + "type": "whitespace", + "start": 51260, + "end": 51261, + "value": " " + }, + { + "type": "number", + "start": 51261, + "end": 51278, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 51278, + "end": 51279, + "value": "]" + }, + { + "type": "comma", + "start": 51279, + "end": 51280, + "value": "," + }, + { + "type": "whitespace", + "start": 51280, + "end": 51281, + "value": " " + }, + { + "type": "operator", + "start": 51281, + "end": 51282, + "value": "%" + }, + { + "type": "brace", + "start": 51282, + "end": 51283, + "value": ")" + }, + { + "type": "whitespace", + "start": 51283, + "end": 51286, + "value": "\n " + }, + { + "type": "operator", + "start": 51286, + "end": 51288, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51288, + "end": 51289, + "value": " " + }, + { + "type": "word", + "start": 51289, + "end": 51293, + "value": "line" + }, + { + "type": "brace", + "start": 51293, + "end": 51294, + "value": "(" + }, + { + "type": "brace", + "start": 51294, + "end": 51295, + "value": "[" + }, + { + "type": "whitespace", + "start": 51295, + "end": 51303, + "value": "\n " + }, + { + "type": "number", + "start": 51303, + "end": 51322, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 51322, + "end": 51323, + "value": "," + }, + { + "type": "whitespace", + "start": 51323, + "end": 51331, + "value": "\n " + }, + { + "type": "operator", + "start": 51331, + "end": 51332, + "value": "-" + }, + { + "type": "number", + "start": 51332, + "end": 51350, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 51350, + "end": 51356, + "value": "\n " + }, + { + "type": "brace", + "start": 51356, + "end": 51357, + "value": "]" + }, + { + "type": "comma", + "start": 51357, + "end": 51358, + "value": "," + }, + { + "type": "whitespace", + "start": 51358, + "end": 51359, + "value": " " + }, + { + "type": "operator", + "start": 51359, + "end": 51360, + "value": "%" + }, + { + "type": "brace", + "start": 51360, + "end": 51361, + "value": ")" + }, + { + "type": "whitespace", + "start": 51361, + "end": 51364, + "value": "\n " + }, + { + "type": "operator", + "start": 51364, + "end": 51366, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51366, + "end": 51367, + "value": " " + }, + { + "type": "word", + "start": 51367, + "end": 51371, + "value": "line" + }, + { + "type": "brace", + "start": 51371, + "end": 51372, + "value": "(" + }, + { + "type": "brace", + "start": 51372, + "end": 51373, + "value": "[" + }, + { + "type": "number", + "start": 51373, + "end": 51391, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 51391, + "end": 51392, + "value": "," + }, + { + "type": "whitespace", + "start": 51392, + "end": 51393, + "value": " " + }, + { + "type": "number", + "start": 51393, + "end": 51411, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 51411, + "end": 51412, + "value": "]" + }, + { + "type": "comma", + "start": 51412, + "end": 51413, + "value": "," + }, + { + "type": "whitespace", + "start": 51413, + "end": 51414, + "value": " " + }, + { + "type": "operator", + "start": 51414, + "end": 51415, + "value": "%" + }, + { + "type": "brace", + "start": 51415, + "end": 51416, + "value": ")" + }, + { + "type": "whitespace", + "start": 51416, + "end": 51419, + "value": "\n " + }, + { + "type": "operator", + "start": 51419, + "end": 51421, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51421, + "end": 51422, + "value": " " + }, + { + "type": "word", + "start": 51422, + "end": 51426, + "value": "line" + }, + { + "type": "brace", + "start": 51426, + "end": 51427, + "value": "(" + }, + { + "type": "brace", + "start": 51427, + "end": 51428, + "value": "[" + }, + { + "type": "whitespace", + "start": 51428, + "end": 51436, + "value": "\n " + }, + { + "type": "number", + "start": 51436, + "end": 51454, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 51454, + "end": 51455, + "value": "," + }, + { + "type": "whitespace", + "start": 51455, + "end": 51463, + "value": "\n " + }, + { + "type": "number", + "start": 51463, + "end": 51482, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 51482, + "end": 51488, + "value": "\n " + }, + { + "type": "brace", + "start": 51488, + "end": 51489, + "value": "]" + }, + { + "type": "comma", + "start": 51489, + "end": 51490, + "value": "," + }, + { + "type": "whitespace", + "start": 51490, + "end": 51491, + "value": " " + }, + { + "type": "operator", + "start": 51491, + "end": 51492, + "value": "%" + }, + { + "type": "brace", + "start": 51492, + "end": 51493, + "value": ")" + }, + { + "type": "whitespace", + "start": 51493, + "end": 51496, + "value": "\n " + }, + { + "type": "operator", + "start": 51496, + "end": 51498, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51498, + "end": 51499, + "value": " " + }, + { + "type": "word", + "start": 51499, + "end": 51503, + "value": "line" + }, + { + "type": "brace", + "start": 51503, + "end": 51504, + "value": "(" + }, + { + "type": "brace", + "start": 51504, + "end": 51505, + "value": "[" + }, + { + "type": "number", + "start": 51505, + "end": 51523, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 51523, + "end": 51524, + "value": "," + }, + { + "type": "whitespace", + "start": 51524, + "end": 51525, + "value": " " + }, + { + "type": "number", + "start": 51525, + "end": 51543, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 51543, + "end": 51544, + "value": "]" + }, + { + "type": "comma", + "start": 51544, + "end": 51545, + "value": "," + }, + { + "type": "whitespace", + "start": 51545, + "end": 51546, + "value": " " + }, + { + "type": "operator", + "start": 51546, + "end": 51547, + "value": "%" + }, + { + "type": "brace", + "start": 51547, + "end": 51548, + "value": ")" + }, + { + "type": "whitespace", + "start": 51548, + "end": 51551, + "value": "\n " + }, + { + "type": "operator", + "start": 51551, + "end": 51553, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51553, + "end": 51554, + "value": " " + }, + { + "type": "word", + "start": 51554, + "end": 51558, + "value": "line" + }, + { + "type": "brace", + "start": 51558, + "end": 51559, + "value": "(" + }, + { + "type": "brace", + "start": 51559, + "end": 51560, + "value": "[" + }, + { + "type": "whitespace", + "start": 51560, + "end": 51568, + "value": "\n " + }, + { + "type": "operator", + "start": 51568, + "end": 51569, + "value": "-" + }, + { + "type": "number", + "start": 51569, + "end": 51588, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 51588, + "end": 51589, + "value": "," + }, + { + "type": "whitespace", + "start": 51589, + "end": 51597, + "value": "\n " + }, + { + "type": "operator", + "start": 51597, + "end": 51598, + "value": "-" + }, + { + "type": "number", + "start": 51598, + "end": 51616, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 51616, + "end": 51622, + "value": "\n " + }, + { + "type": "brace", + "start": 51622, + "end": 51623, + "value": "]" + }, + { + "type": "comma", + "start": 51623, + "end": 51624, + "value": "," + }, + { + "type": "whitespace", + "start": 51624, + "end": 51625, + "value": " " + }, + { + "type": "operator", + "start": 51625, + "end": 51626, + "value": "%" + }, + { + "type": "brace", + "start": 51626, + "end": 51627, + "value": ")" + }, + { + "type": "whitespace", + "start": 51627, + "end": 51630, + "value": "\n " + }, + { + "type": "operator", + "start": 51630, + "end": 51632, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51632, + "end": 51633, + "value": " " + }, + { + "type": "word", + "start": 51633, + "end": 51637, + "value": "line" + }, + { + "type": "brace", + "start": 51637, + "end": 51638, + "value": "(" + }, + { + "type": "brace", + "start": 51638, + "end": 51639, + "value": "[" + }, + { + "type": "whitespace", + "start": 51639, + "end": 51647, + "value": "\n " + }, + { + "type": "number", + "start": 51647, + "end": 51665, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 51665, + "end": 51666, + "value": "," + }, + { + "type": "whitespace", + "start": 51666, + "end": 51674, + "value": "\n " + }, + { + "type": "operator", + "start": 51674, + "end": 51675, + "value": "-" + }, + { + "type": "number", + "start": 51675, + "end": 51693, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 51693, + "end": 51699, + "value": "\n " + }, + { + "type": "brace", + "start": 51699, + "end": 51700, + "value": "]" + }, + { + "type": "comma", + "start": 51700, + "end": 51701, + "value": "," + }, + { + "type": "whitespace", + "start": 51701, + "end": 51702, + "value": " " + }, + { + "type": "operator", + "start": 51702, + "end": 51703, + "value": "%" + }, + { + "type": "brace", + "start": 51703, + "end": 51704, + "value": ")" + }, + { + "type": "whitespace", + "start": 51704, + "end": 51707, + "value": "\n " + }, + { + "type": "operator", + "start": 51707, + "end": 51709, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51709, + "end": 51710, + "value": " " + }, + { + "type": "word", + "start": 51710, + "end": 51714, + "value": "line" + }, + { + "type": "brace", + "start": 51714, + "end": 51715, + "value": "(" + }, + { + "type": "brace", + "start": 51715, + "end": 51716, + "value": "[" + }, + { + "type": "whitespace", + "start": 51716, + "end": 51724, + "value": "\n " + }, + { + "type": "operator", + "start": 51724, + "end": 51725, + "value": "-" + }, + { + "type": "number", + "start": 51725, + "end": 51743, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 51743, + "end": 51744, + "value": "," + }, + { + "type": "whitespace", + "start": 51744, + "end": 51752, + "value": "\n " + }, + { + "type": "operator", + "start": 51752, + "end": 51753, + "value": "-" + }, + { + "type": "number", + "start": 51753, + "end": 51771, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 51771, + "end": 51777, + "value": "\n " + }, + { + "type": "brace", + "start": 51777, + "end": 51778, + "value": "]" + }, + { + "type": "comma", + "start": 51778, + "end": 51779, + "value": "," + }, + { + "type": "whitespace", + "start": 51779, + "end": 51780, + "value": " " + }, + { + "type": "operator", + "start": 51780, + "end": 51781, + "value": "%" + }, + { + "type": "brace", + "start": 51781, + "end": 51782, + "value": ")" + }, + { + "type": "whitespace", + "start": 51782, + "end": 51785, + "value": "\n " + }, + { + "type": "operator", + "start": 51785, + "end": 51787, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51787, + "end": 51788, + "value": " " + }, + { + "type": "word", + "start": 51788, + "end": 51792, + "value": "line" + }, + { + "type": "brace", + "start": 51792, + "end": 51793, + "value": "(" + }, + { + "type": "brace", + "start": 51793, + "end": 51794, + "value": "[" + }, + { + "type": "whitespace", + "start": 51794, + "end": 51802, + "value": "\n " + }, + { + "type": "number", + "start": 51802, + "end": 51822, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 51822, + "end": 51823, + "value": "," + }, + { + "type": "whitespace", + "start": 51823, + "end": 51831, + "value": "\n " + }, + { + "type": "operator", + "start": 51831, + "end": 51832, + "value": "-" + }, + { + "type": "number", + "start": 51832, + "end": 51851, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 51851, + "end": 51857, + "value": "\n " + }, + { + "type": "brace", + "start": 51857, + "end": 51858, + "value": "]" + }, + { + "type": "comma", + "start": 51858, + "end": 51859, + "value": "," + }, + { + "type": "whitespace", + "start": 51859, + "end": 51860, + "value": " " + }, + { + "type": "operator", + "start": 51860, + "end": 51861, + "value": "%" + }, + { + "type": "brace", + "start": 51861, + "end": 51862, + "value": ")" + }, + { + "type": "whitespace", + "start": 51862, + "end": 51865, + "value": "\n " + }, + { + "type": "operator", + "start": 51865, + "end": 51867, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51867, + "end": 51868, + "value": " " + }, + { + "type": "word", + "start": 51868, + "end": 51872, + "value": "line" + }, + { + "type": "brace", + "start": 51872, + "end": 51873, + "value": "(" + }, + { + "type": "brace", + "start": 51873, + "end": 51874, + "value": "[" + }, + { + "type": "whitespace", + "start": 51874, + "end": 51882, + "value": "\n " + }, + { + "type": "operator", + "start": 51882, + "end": 51883, + "value": "-" + }, + { + "type": "number", + "start": 51883, + "end": 51901, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 51901, + "end": 51902, + "value": "," + }, + { + "type": "whitespace", + "start": 51902, + "end": 51910, + "value": "\n " + }, + { + "type": "number", + "start": 51910, + "end": 51929, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 51929, + "end": 51935, + "value": "\n " + }, + { + "type": "brace", + "start": 51935, + "end": 51936, + "value": "]" + }, + { + "type": "comma", + "start": 51936, + "end": 51937, + "value": "," + }, + { + "type": "whitespace", + "start": 51937, + "end": 51938, + "value": " " + }, + { + "type": "operator", + "start": 51938, + "end": 51939, + "value": "%" + }, + { + "type": "brace", + "start": 51939, + "end": 51940, + "value": ")" + }, + { + "type": "whitespace", + "start": 51940, + "end": 51943, + "value": "\n " + }, + { + "type": "operator", + "start": 51943, + "end": 51945, + "value": "|>" + }, + { + "type": "whitespace", + "start": 51945, + "end": 51946, + "value": " " + }, + { + "type": "word", + "start": 51946, + "end": 51950, + "value": "line" + }, + { + "type": "brace", + "start": 51950, + "end": 51951, + "value": "(" + }, + { + "type": "brace", + "start": 51951, + "end": 51952, + "value": "[" + }, + { + "type": "whitespace", + "start": 51952, + "end": 51960, + "value": "\n " + }, + { + "type": "operator", + "start": 51960, + "end": 51961, + "value": "-" + }, + { + "type": "number", + "start": 51961, + "end": 51979, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 51979, + "end": 51980, + "value": "," + }, + { + "type": "whitespace", + "start": 51980, + "end": 51988, + "value": "\n " + }, + { + "type": "number", + "start": 51988, + "end": 52006, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 52006, + "end": 52012, + "value": "\n " + }, + { + "type": "brace", + "start": 52012, + "end": 52013, + "value": "]" + }, + { + "type": "comma", + "start": 52013, + "end": 52014, + "value": "," + }, + { + "type": "whitespace", + "start": 52014, + "end": 52015, + "value": " " + }, + { + "type": "operator", + "start": 52015, + "end": 52016, + "value": "%" + }, + { + "type": "brace", + "start": 52016, + "end": 52017, + "value": ")" + }, + { + "type": "whitespace", + "start": 52017, + "end": 52020, + "value": "\n " + }, + { + "type": "operator", + "start": 52020, + "end": 52022, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52022, + "end": 52023, + "value": " " + }, + { + "type": "word", + "start": 52023, + "end": 52027, + "value": "line" + }, + { + "type": "brace", + "start": 52027, + "end": 52028, + "value": "(" + }, + { + "type": "brace", + "start": 52028, + "end": 52029, + "value": "[" + }, + { + "type": "whitespace", + "start": 52029, + "end": 52037, + "value": "\n " + }, + { + "type": "operator", + "start": 52037, + "end": 52038, + "value": "-" + }, + { + "type": "number", + "start": 52038, + "end": 52056, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 52056, + "end": 52057, + "value": "," + }, + { + "type": "whitespace", + "start": 52057, + "end": 52065, + "value": "\n " + }, + { + "type": "number", + "start": 52065, + "end": 52083, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 52083, + "end": 52089, + "value": "\n " + }, + { + "type": "brace", + "start": 52089, + "end": 52090, + "value": "]" + }, + { + "type": "comma", + "start": 52090, + "end": 52091, + "value": "," + }, + { + "type": "whitespace", + "start": 52091, + "end": 52092, + "value": " " + }, + { + "type": "operator", + "start": 52092, + "end": 52093, + "value": "%" + }, + { + "type": "brace", + "start": 52093, + "end": 52094, + "value": ")" + }, + { + "type": "whitespace", + "start": 52094, + "end": 52097, + "value": "\n " + }, + { + "type": "operator", + "start": 52097, + "end": 52099, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52099, + "end": 52100, + "value": " " + }, + { + "type": "word", + "start": 52100, + "end": 52104, + "value": "line" + }, + { + "type": "brace", + "start": 52104, + "end": 52105, + "value": "(" + }, + { + "type": "brace", + "start": 52105, + "end": 52106, + "value": "[" + }, + { + "type": "whitespace", + "start": 52106, + "end": 52114, + "value": "\n " + }, + { + "type": "operator", + "start": 52114, + "end": 52115, + "value": "-" + }, + { + "type": "number", + "start": 52115, + "end": 52133, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 52133, + "end": 52134, + "value": "," + }, + { + "type": "whitespace", + "start": 52134, + "end": 52142, + "value": "\n " + }, + { + "type": "operator", + "start": 52142, + "end": 52143, + "value": "-" + }, + { + "type": "number", + "start": 52143, + "end": 52162, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 52162, + "end": 52168, + "value": "\n " + }, + { + "type": "brace", + "start": 52168, + "end": 52169, + "value": "]" + }, + { + "type": "comma", + "start": 52169, + "end": 52170, + "value": "," + }, + { + "type": "whitespace", + "start": 52170, + "end": 52171, + "value": " " + }, + { + "type": "operator", + "start": 52171, + "end": 52172, + "value": "%" + }, + { + "type": "brace", + "start": 52172, + "end": 52173, + "value": ")" + }, + { + "type": "whitespace", + "start": 52173, + "end": 52176, + "value": "\n " + }, + { + "type": "operator", + "start": 52176, + "end": 52178, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52178, + "end": 52179, + "value": " " + }, + { + "type": "word", + "start": 52179, + "end": 52183, + "value": "line" + }, + { + "type": "brace", + "start": 52183, + "end": 52184, + "value": "(" + }, + { + "type": "brace", + "start": 52184, + "end": 52185, + "value": "[" + }, + { + "type": "whitespace", + "start": 52185, + "end": 52193, + "value": "\n " + }, + { + "type": "number", + "start": 52193, + "end": 52212, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 52212, + "end": 52213, + "value": "," + }, + { + "type": "whitespace", + "start": 52213, + "end": 52221, + "value": "\n " + }, + { + "type": "number", + "start": 52221, + "end": 52240, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 52240, + "end": 52246, + "value": "\n " + }, + { + "type": "brace", + "start": 52246, + "end": 52247, + "value": "]" + }, + { + "type": "comma", + "start": 52247, + "end": 52248, + "value": "," + }, + { + "type": "whitespace", + "start": 52248, + "end": 52249, + "value": " " + }, + { + "type": "operator", + "start": 52249, + "end": 52250, + "value": "%" + }, + { + "type": "brace", + "start": 52250, + "end": 52251, + "value": ")" + }, + { + "type": "whitespace", + "start": 52251, + "end": 52254, + "value": "\n " + }, + { + "type": "operator", + "start": 52254, + "end": 52256, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52256, + "end": 52257, + "value": " " + }, + { + "type": "word", + "start": 52257, + "end": 52261, + "value": "line" + }, + { + "type": "brace", + "start": 52261, + "end": 52262, + "value": "(" + }, + { + "type": "brace", + "start": 52262, + "end": 52263, + "value": "[" + }, + { + "type": "whitespace", + "start": 52263, + "end": 52271, + "value": "\n " + }, + { + "type": "number", + "start": 52271, + "end": 52290, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 52290, + "end": 52291, + "value": "," + }, + { + "type": "whitespace", + "start": 52291, + "end": 52299, + "value": "\n " + }, + { + "type": "number", + "start": 52299, + "end": 52318, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 52318, + "end": 52324, + "value": "\n " + }, + { + "type": "brace", + "start": 52324, + "end": 52325, + "value": "]" + }, + { + "type": "comma", + "start": 52325, + "end": 52326, + "value": "," + }, + { + "type": "whitespace", + "start": 52326, + "end": 52327, + "value": " " + }, + { + "type": "operator", + "start": 52327, + "end": 52328, + "value": "%" + }, + { + "type": "brace", + "start": 52328, + "end": 52329, + "value": ")" + }, + { + "type": "whitespace", + "start": 52329, + "end": 52332, + "value": "\n " + }, + { + "type": "operator", + "start": 52332, + "end": 52334, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52334, + "end": 52335, + "value": " " + }, + { + "type": "word", + "start": 52335, + "end": 52339, + "value": "line" + }, + { + "type": "brace", + "start": 52339, + "end": 52340, + "value": "(" + }, + { + "type": "brace", + "start": 52340, + "end": 52341, + "value": "[" + }, + { + "type": "whitespace", + "start": 52341, + "end": 52349, + "value": "\n " + }, + { + "type": "operator", + "start": 52349, + "end": 52350, + "value": "-" + }, + { + "type": "number", + "start": 52350, + "end": 52369, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 52369, + "end": 52370, + "value": "," + }, + { + "type": "whitespace", + "start": 52370, + "end": 52378, + "value": "\n " + }, + { + "type": "number", + "start": 52378, + "end": 52396, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 52396, + "end": 52402, + "value": "\n " + }, + { + "type": "brace", + "start": 52402, + "end": 52403, + "value": "]" + }, + { + "type": "comma", + "start": 52403, + "end": 52404, + "value": "," + }, + { + "type": "whitespace", + "start": 52404, + "end": 52405, + "value": " " + }, + { + "type": "operator", + "start": 52405, + "end": 52406, + "value": "%" + }, + { + "type": "brace", + "start": 52406, + "end": 52407, + "value": ")" + }, + { + "type": "whitespace", + "start": 52407, + "end": 52410, + "value": "\n " + }, + { + "type": "operator", + "start": 52410, + "end": 52412, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52412, + "end": 52413, + "value": " " + }, + { + "type": "word", + "start": 52413, + "end": 52417, + "value": "line" + }, + { + "type": "brace", + "start": 52417, + "end": 52418, + "value": "(" + }, + { + "type": "brace", + "start": 52418, + "end": 52419, + "value": "[" + }, + { + "type": "whitespace", + "start": 52419, + "end": 52427, + "value": "\n " + }, + { + "type": "operator", + "start": 52427, + "end": 52428, + "value": "-" + }, + { + "type": "number", + "start": 52428, + "end": 52447, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 52447, + "end": 52448, + "value": "," + }, + { + "type": "whitespace", + "start": 52448, + "end": 52456, + "value": "\n " + }, + { + "type": "operator", + "start": 52456, + "end": 52457, + "value": "-" + }, + { + "type": "number", + "start": 52457, + "end": 52476, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 52476, + "end": 52482, + "value": "\n " + }, + { + "type": "brace", + "start": 52482, + "end": 52483, + "value": "]" + }, + { + "type": "comma", + "start": 52483, + "end": 52484, + "value": "," + }, + { + "type": "whitespace", + "start": 52484, + "end": 52485, + "value": " " + }, + { + "type": "operator", + "start": 52485, + "end": 52486, + "value": "%" + }, + { + "type": "brace", + "start": 52486, + "end": 52487, + "value": ")" + }, + { + "type": "whitespace", + "start": 52487, + "end": 52490, + "value": "\n " + }, + { + "type": "operator", + "start": 52490, + "end": 52492, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52492, + "end": 52493, + "value": " " + }, + { + "type": "word", + "start": 52493, + "end": 52497, + "value": "line" + }, + { + "type": "brace", + "start": 52497, + "end": 52498, + "value": "(" + }, + { + "type": "brace", + "start": 52498, + "end": 52499, + "value": "[" + }, + { + "type": "whitespace", + "start": 52499, + "end": 52507, + "value": "\n " + }, + { + "type": "number", + "start": 52507, + "end": 52525, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 52525, + "end": 52526, + "value": "," + }, + { + "type": "whitespace", + "start": 52526, + "end": 52534, + "value": "\n " + }, + { + "type": "operator", + "start": 52534, + "end": 52535, + "value": "-" + }, + { + "type": "number", + "start": 52535, + "end": 52554, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 52554, + "end": 52560, + "value": "\n " + }, + { + "type": "brace", + "start": 52560, + "end": 52561, + "value": "]" + }, + { + "type": "comma", + "start": 52561, + "end": 52562, + "value": "," + }, + { + "type": "whitespace", + "start": 52562, + "end": 52563, + "value": " " + }, + { + "type": "operator", + "start": 52563, + "end": 52564, + "value": "%" + }, + { + "type": "brace", + "start": 52564, + "end": 52565, + "value": ")" + }, + { + "type": "whitespace", + "start": 52565, + "end": 52568, + "value": "\n " + }, + { + "type": "operator", + "start": 52568, + "end": 52570, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52570, + "end": 52571, + "value": " " + }, + { + "type": "word", + "start": 52571, + "end": 52575, + "value": "line" + }, + { + "type": "brace", + "start": 52575, + "end": 52576, + "value": "(" + }, + { + "type": "brace", + "start": 52576, + "end": 52577, + "value": "[" + }, + { + "type": "whitespace", + "start": 52577, + "end": 52585, + "value": "\n " + }, + { + "type": "number", + "start": 52585, + "end": 52606, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 52606, + "end": 52607, + "value": "," + }, + { + "type": "whitespace", + "start": 52607, + "end": 52615, + "value": "\n " + }, + { + "type": "operator", + "start": 52615, + "end": 52616, + "value": "-" + }, + { + "type": "number", + "start": 52616, + "end": 52634, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 52634, + "end": 52640, + "value": "\n " + }, + { + "type": "brace", + "start": 52640, + "end": 52641, + "value": "]" + }, + { + "type": "comma", + "start": 52641, + "end": 52642, + "value": "," + }, + { + "type": "whitespace", + "start": 52642, + "end": 52643, + "value": " " + }, + { + "type": "operator", + "start": 52643, + "end": 52644, + "value": "%" + }, + { + "type": "brace", + "start": 52644, + "end": 52645, + "value": ")" + }, + { + "type": "whitespace", + "start": 52645, + "end": 52648, + "value": "\n " + }, + { + "type": "operator", + "start": 52648, + "end": 52650, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52650, + "end": 52651, + "value": " " + }, + { + "type": "word", + "start": 52651, + "end": 52655, + "value": "line" + }, + { + "type": "brace", + "start": 52655, + "end": 52656, + "value": "(" + }, + { + "type": "brace", + "start": 52656, + "end": 52657, + "value": "[" + }, + { + "type": "whitespace", + "start": 52657, + "end": 52665, + "value": "\n " + }, + { + "type": "number", + "start": 52665, + "end": 52683, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 52683, + "end": 52684, + "value": "," + }, + { + "type": "whitespace", + "start": 52684, + "end": 52692, + "value": "\n " + }, + { + "type": "operator", + "start": 52692, + "end": 52693, + "value": "-" + }, + { + "type": "number", + "start": 52693, + "end": 52711, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 52711, + "end": 52717, + "value": "\n " + }, + { + "type": "brace", + "start": 52717, + "end": 52718, + "value": "]" + }, + { + "type": "comma", + "start": 52718, + "end": 52719, + "value": "," + }, + { + "type": "whitespace", + "start": 52719, + "end": 52720, + "value": " " + }, + { + "type": "operator", + "start": 52720, + "end": 52721, + "value": "%" + }, + { + "type": "brace", + "start": 52721, + "end": 52722, + "value": ")" + }, + { + "type": "whitespace", + "start": 52722, + "end": 52725, + "value": "\n " + }, + { + "type": "operator", + "start": 52725, + "end": 52727, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52727, + "end": 52728, + "value": " " + }, + { + "type": "word", + "start": 52728, + "end": 52732, + "value": "line" + }, + { + "type": "brace", + "start": 52732, + "end": 52733, + "value": "(" + }, + { + "type": "brace", + "start": 52733, + "end": 52734, + "value": "[" + }, + { + "type": "whitespace", + "start": 52734, + "end": 52742, + "value": "\n " + }, + { + "type": "operator", + "start": 52742, + "end": 52743, + "value": "-" + }, + { + "type": "number", + "start": 52743, + "end": 52761, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 52761, + "end": 52762, + "value": "," + }, + { + "type": "whitespace", + "start": 52762, + "end": 52770, + "value": "\n " + }, + { + "type": "number", + "start": 52770, + "end": 52788, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 52788, + "end": 52794, + "value": "\n " + }, + { + "type": "brace", + "start": 52794, + "end": 52795, + "value": "]" + }, + { + "type": "comma", + "start": 52795, + "end": 52796, + "value": "," + }, + { + "type": "whitespace", + "start": 52796, + "end": 52797, + "value": " " + }, + { + "type": "operator", + "start": 52797, + "end": 52798, + "value": "%" + }, + { + "type": "brace", + "start": 52798, + "end": 52799, + "value": ")" + }, + { + "type": "whitespace", + "start": 52799, + "end": 52802, + "value": "\n " + }, + { + "type": "operator", + "start": 52802, + "end": 52804, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52804, + "end": 52805, + "value": " " + }, + { + "type": "word", + "start": 52805, + "end": 52809, + "value": "line" + }, + { + "type": "brace", + "start": 52809, + "end": 52810, + "value": "(" + }, + { + "type": "brace", + "start": 52810, + "end": 52811, + "value": "[" + }, + { + "type": "number", + "start": 52811, + "end": 52829, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 52829, + "end": 52830, + "value": "," + }, + { + "type": "whitespace", + "start": 52830, + "end": 52831, + "value": " " + }, + { + "type": "number", + "start": 52831, + "end": 52849, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 52849, + "end": 52850, + "value": "]" + }, + { + "type": "comma", + "start": 52850, + "end": 52851, + "value": "," + }, + { + "type": "whitespace", + "start": 52851, + "end": 52852, + "value": " " + }, + { + "type": "operator", + "start": 52852, + "end": 52853, + "value": "%" + }, + { + "type": "brace", + "start": 52853, + "end": 52854, + "value": ")" + }, + { + "type": "whitespace", + "start": 52854, + "end": 52857, + "value": "\n " + }, + { + "type": "operator", + "start": 52857, + "end": 52859, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52859, + "end": 52860, + "value": " " + }, + { + "type": "word", + "start": 52860, + "end": 52864, + "value": "line" + }, + { + "type": "brace", + "start": 52864, + "end": 52865, + "value": "(" + }, + { + "type": "brace", + "start": 52865, + "end": 52866, + "value": "[" + }, + { + "type": "whitespace", + "start": 52866, + "end": 52874, + "value": "\n " + }, + { + "type": "operator", + "start": 52874, + "end": 52875, + "value": "-" + }, + { + "type": "number", + "start": 52875, + "end": 52894, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 52894, + "end": 52895, + "value": "," + }, + { + "type": "whitespace", + "start": 52895, + "end": 52903, + "value": "\n " + }, + { + "type": "number", + "start": 52903, + "end": 52923, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 52923, + "end": 52929, + "value": "\n " + }, + { + "type": "brace", + "start": 52929, + "end": 52930, + "value": "]" + }, + { + "type": "comma", + "start": 52930, + "end": 52931, + "value": "," + }, + { + "type": "whitespace", + "start": 52931, + "end": 52932, + "value": " " + }, + { + "type": "operator", + "start": 52932, + "end": 52933, + "value": "%" + }, + { + "type": "brace", + "start": 52933, + "end": 52934, + "value": ")" + }, + { + "type": "whitespace", + "start": 52934, + "end": 52937, + "value": "\n " + }, + { + "type": "operator", + "start": 52937, + "end": 52939, + "value": "|>" + }, + { + "type": "whitespace", + "start": 52939, + "end": 52940, + "value": " " + }, + { + "type": "word", + "start": 52940, + "end": 52944, + "value": "line" + }, + { + "type": "brace", + "start": 52944, + "end": 52945, + "value": "(" + }, + { + "type": "brace", + "start": 52945, + "end": 52946, + "value": "[" + }, + { + "type": "whitespace", + "start": 52946, + "end": 52954, + "value": "\n " + }, + { + "type": "operator", + "start": 52954, + "end": 52955, + "value": "-" + }, + { + "type": "number", + "start": 52955, + "end": 52973, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 52973, + "end": 52974, + "value": "," + }, + { + "type": "whitespace", + "start": 52974, + "end": 52982, + "value": "\n " + }, + { + "type": "operator", + "start": 52982, + "end": 52983, + "value": "-" + }, + { + "type": "number", + "start": 52983, + "end": 53002, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 53002, + "end": 53008, + "value": "\n " + }, + { + "type": "brace", + "start": 53008, + "end": 53009, + "value": "]" + }, + { + "type": "comma", + "start": 53009, + "end": 53010, + "value": "," + }, + { + "type": "whitespace", + "start": 53010, + "end": 53011, + "value": " " + }, + { + "type": "operator", + "start": 53011, + "end": 53012, + "value": "%" + }, + { + "type": "brace", + "start": 53012, + "end": 53013, + "value": ")" + }, + { + "type": "whitespace", + "start": 53013, + "end": 53016, + "value": "\n " + }, + { + "type": "operator", + "start": 53016, + "end": 53018, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53018, + "end": 53019, + "value": " " + }, + { + "type": "word", + "start": 53019, + "end": 53023, + "value": "line" + }, + { + "type": "brace", + "start": 53023, + "end": 53024, + "value": "(" + }, + { + "type": "brace", + "start": 53024, + "end": 53025, + "value": "[" + }, + { + "type": "whitespace", + "start": 53025, + "end": 53033, + "value": "\n " + }, + { + "type": "operator", + "start": 53033, + "end": 53034, + "value": "-" + }, + { + "type": "number", + "start": 53034, + "end": 53052, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 53052, + "end": 53053, + "value": "," + }, + { + "type": "whitespace", + "start": 53053, + "end": 53061, + "value": "\n " + }, + { + "type": "operator", + "start": 53061, + "end": 53062, + "value": "-" + }, + { + "type": "number", + "start": 53062, + "end": 53081, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 53081, + "end": 53087, + "value": "\n " + }, + { + "type": "brace", + "start": 53087, + "end": 53088, + "value": "]" + }, + { + "type": "comma", + "start": 53088, + "end": 53089, + "value": "," + }, + { + "type": "whitespace", + "start": 53089, + "end": 53090, + "value": " " + }, + { + "type": "operator", + "start": 53090, + "end": 53091, + "value": "%" + }, + { + "type": "brace", + "start": 53091, + "end": 53092, + "value": ")" + }, + { + "type": "whitespace", + "start": 53092, + "end": 53095, + "value": "\n " + }, + { + "type": "operator", + "start": 53095, + "end": 53097, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53097, + "end": 53098, + "value": " " + }, + { + "type": "word", + "start": 53098, + "end": 53102, + "value": "line" + }, + { + "type": "brace", + "start": 53102, + "end": 53103, + "value": "(" + }, + { + "type": "brace", + "start": 53103, + "end": 53104, + "value": "[" + }, + { + "type": "number", + "start": 53104, + "end": 53121, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 53121, + "end": 53122, + "value": "," + }, + { + "type": "whitespace", + "start": 53122, + "end": 53123, + "value": " " + }, + { + "type": "number", + "start": 53123, + "end": 53141, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 53141, + "end": 53142, + "value": "]" + }, + { + "type": "comma", + "start": 53142, + "end": 53143, + "value": "," + }, + { + "type": "whitespace", + "start": 53143, + "end": 53144, + "value": " " + }, + { + "type": "operator", + "start": 53144, + "end": 53145, + "value": "%" + }, + { + "type": "brace", + "start": 53145, + "end": 53146, + "value": ")" + }, + { + "type": "whitespace", + "start": 53146, + "end": 53149, + "value": "\n " + }, + { + "type": "operator", + "start": 53149, + "end": 53151, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53151, + "end": 53152, + "value": " " + }, + { + "type": "word", + "start": 53152, + "end": 53156, + "value": "line" + }, + { + "type": "brace", + "start": 53156, + "end": 53157, + "value": "(" + }, + { + "type": "brace", + "start": 53157, + "end": 53158, + "value": "[" + }, + { + "type": "whitespace", + "start": 53158, + "end": 53166, + "value": "\n " + }, + { + "type": "number", + "start": 53166, + "end": 53185, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 53185, + "end": 53186, + "value": "," + }, + { + "type": "whitespace", + "start": 53186, + "end": 53194, + "value": "\n " + }, + { + "type": "operator", + "start": 53194, + "end": 53195, + "value": "-" + }, + { + "type": "number", + "start": 53195, + "end": 53214, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 53214, + "end": 53220, + "value": "\n " + }, + { + "type": "brace", + "start": 53220, + "end": 53221, + "value": "]" + }, + { + "type": "comma", + "start": 53221, + "end": 53222, + "value": "," + }, + { + "type": "whitespace", + "start": 53222, + "end": 53223, + "value": " " + }, + { + "type": "operator", + "start": 53223, + "end": 53224, + "value": "%" + }, + { + "type": "brace", + "start": 53224, + "end": 53225, + "value": ")" + }, + { + "type": "whitespace", + "start": 53225, + "end": 53228, + "value": "\n " + }, + { + "type": "operator", + "start": 53228, + "end": 53230, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53230, + "end": 53231, + "value": " " + }, + { + "type": "word", + "start": 53231, + "end": 53235, + "value": "line" + }, + { + "type": "brace", + "start": 53235, + "end": 53236, + "value": "(" + }, + { + "type": "brace", + "start": 53236, + "end": 53237, + "value": "[" + }, + { + "type": "number", + "start": 53237, + "end": 53255, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 53255, + "end": 53256, + "value": "," + }, + { + "type": "whitespace", + "start": 53256, + "end": 53257, + "value": " " + }, + { + "type": "number", + "start": 53257, + "end": 53274, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 53274, + "end": 53275, + "value": "]" + }, + { + "type": "comma", + "start": 53275, + "end": 53276, + "value": "," + }, + { + "type": "whitespace", + "start": 53276, + "end": 53277, + "value": " " + }, + { + "type": "operator", + "start": 53277, + "end": 53278, + "value": "%" + }, + { + "type": "brace", + "start": 53278, + "end": 53279, + "value": ")" + }, + { + "type": "whitespace", + "start": 53279, + "end": 53282, + "value": "\n " + }, + { + "type": "operator", + "start": 53282, + "end": 53284, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53284, + "end": 53285, + "value": " " + }, + { + "type": "word", + "start": 53285, + "end": 53289, + "value": "line" + }, + { + "type": "brace", + "start": 53289, + "end": 53290, + "value": "(" + }, + { + "type": "brace", + "start": 53290, + "end": 53291, + "value": "[" + }, + { + "type": "whitespace", + "start": 53291, + "end": 53299, + "value": "\n " + }, + { + "type": "number", + "start": 53299, + "end": 53318, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 53318, + "end": 53319, + "value": "," + }, + { + "type": "whitespace", + "start": 53319, + "end": 53327, + "value": "\n " + }, + { + "type": "operator", + "start": 53327, + "end": 53328, + "value": "-" + }, + { + "type": "number", + "start": 53328, + "end": 53346, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 53346, + "end": 53352, + "value": "\n " + }, + { + "type": "brace", + "start": 53352, + "end": 53353, + "value": "]" + }, + { + "type": "comma", + "start": 53353, + "end": 53354, + "value": "," + }, + { + "type": "whitespace", + "start": 53354, + "end": 53355, + "value": " " + }, + { + "type": "operator", + "start": 53355, + "end": 53356, + "value": "%" + }, + { + "type": "brace", + "start": 53356, + "end": 53357, + "value": ")" + }, + { + "type": "whitespace", + "start": 53357, + "end": 53360, + "value": "\n " + }, + { + "type": "operator", + "start": 53360, + "end": 53362, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53362, + "end": 53363, + "value": " " + }, + { + "type": "word", + "start": 53363, + "end": 53367, + "value": "line" + }, + { + "type": "brace", + "start": 53367, + "end": 53368, + "value": "(" + }, + { + "type": "brace", + "start": 53368, + "end": 53369, + "value": "[" + }, + { + "type": "number", + "start": 53369, + "end": 53387, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 53387, + "end": 53388, + "value": "," + }, + { + "type": "whitespace", + "start": 53388, + "end": 53389, + "value": " " + }, + { + "type": "number", + "start": 53389, + "end": 53407, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 53407, + "end": 53408, + "value": "]" + }, + { + "type": "comma", + "start": 53408, + "end": 53409, + "value": "," + }, + { + "type": "whitespace", + "start": 53409, + "end": 53410, + "value": " " + }, + { + "type": "operator", + "start": 53410, + "end": 53411, + "value": "%" + }, + { + "type": "brace", + "start": 53411, + "end": 53412, + "value": ")" + }, + { + "type": "whitespace", + "start": 53412, + "end": 53415, + "value": "\n " + }, + { + "type": "operator", + "start": 53415, + "end": 53417, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53417, + "end": 53418, + "value": " " + }, + { + "type": "word", + "start": 53418, + "end": 53422, + "value": "line" + }, + { + "type": "brace", + "start": 53422, + "end": 53423, + "value": "(" + }, + { + "type": "brace", + "start": 53423, + "end": 53424, + "value": "[" + }, + { + "type": "whitespace", + "start": 53424, + "end": 53432, + "value": "\n " + }, + { + "type": "number", + "start": 53432, + "end": 53450, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 53450, + "end": 53451, + "value": "," + }, + { + "type": "whitespace", + "start": 53451, + "end": 53459, + "value": "\n " + }, + { + "type": "number", + "start": 53459, + "end": 53478, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 53478, + "end": 53484, + "value": "\n " + }, + { + "type": "brace", + "start": 53484, + "end": 53485, + "value": "]" + }, + { + "type": "comma", + "start": 53485, + "end": 53486, + "value": "," + }, + { + "type": "whitespace", + "start": 53486, + "end": 53487, + "value": " " + }, + { + "type": "operator", + "start": 53487, + "end": 53488, + "value": "%" + }, + { + "type": "brace", + "start": 53488, + "end": 53489, + "value": ")" + }, + { + "type": "whitespace", + "start": 53489, + "end": 53492, + "value": "\n " + }, + { + "type": "operator", + "start": 53492, + "end": 53494, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53494, + "end": 53495, + "value": " " + }, + { + "type": "word", + "start": 53495, + "end": 53499, + "value": "line" + }, + { + "type": "brace", + "start": 53499, + "end": 53500, + "value": "(" + }, + { + "type": "brace", + "start": 53500, + "end": 53501, + "value": "[" + }, + { + "type": "number", + "start": 53501, + "end": 53519, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 53519, + "end": 53520, + "value": "," + }, + { + "type": "whitespace", + "start": 53520, + "end": 53521, + "value": " " + }, + { + "type": "number", + "start": 53521, + "end": 53539, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 53539, + "end": 53540, + "value": "]" + }, + { + "type": "comma", + "start": 53540, + "end": 53541, + "value": "," + }, + { + "type": "whitespace", + "start": 53541, + "end": 53542, + "value": " " + }, + { + "type": "operator", + "start": 53542, + "end": 53543, + "value": "%" + }, + { + "type": "brace", + "start": 53543, + "end": 53544, + "value": ")" + }, + { + "type": "whitespace", + "start": 53544, + "end": 53547, + "value": "\n " + }, + { + "type": "operator", + "start": 53547, + "end": 53549, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53549, + "end": 53550, + "value": " " + }, + { + "type": "word", + "start": 53550, + "end": 53554, + "value": "line" + }, + { + "type": "brace", + "start": 53554, + "end": 53555, + "value": "(" + }, + { + "type": "brace", + "start": 53555, + "end": 53556, + "value": "[" + }, + { + "type": "whitespace", + "start": 53556, + "end": 53564, + "value": "\n " + }, + { + "type": "operator", + "start": 53564, + "end": 53565, + "value": "-" + }, + { + "type": "number", + "start": 53565, + "end": 53584, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 53584, + "end": 53585, + "value": "," + }, + { + "type": "whitespace", + "start": 53585, + "end": 53593, + "value": "\n " + }, + { + "type": "operator", + "start": 53593, + "end": 53594, + "value": "-" + }, + { + "type": "number", + "start": 53594, + "end": 53612, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 53612, + "end": 53618, + "value": "\n " + }, + { + "type": "brace", + "start": 53618, + "end": 53619, + "value": "]" + }, + { + "type": "comma", + "start": 53619, + "end": 53620, + "value": "," + }, + { + "type": "whitespace", + "start": 53620, + "end": 53621, + "value": " " + }, + { + "type": "operator", + "start": 53621, + "end": 53622, + "value": "%" + }, + { + "type": "brace", + "start": 53622, + "end": 53623, + "value": ")" + }, + { + "type": "whitespace", + "start": 53623, + "end": 53626, + "value": "\n " + }, + { + "type": "operator", + "start": 53626, + "end": 53628, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53628, + "end": 53629, + "value": " " + }, + { + "type": "word", + "start": 53629, + "end": 53633, + "value": "line" + }, + { + "type": "brace", + "start": 53633, + "end": 53634, + "value": "(" + }, + { + "type": "brace", + "start": 53634, + "end": 53635, + "value": "[" + }, + { + "type": "whitespace", + "start": 53635, + "end": 53643, + "value": "\n " + }, + { + "type": "number", + "start": 53643, + "end": 53661, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 53661, + "end": 53662, + "value": "," + }, + { + "type": "whitespace", + "start": 53662, + "end": 53670, + "value": "\n " + }, + { + "type": "operator", + "start": 53670, + "end": 53671, + "value": "-" + }, + { + "type": "number", + "start": 53671, + "end": 53689, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 53689, + "end": 53695, + "value": "\n " + }, + { + "type": "brace", + "start": 53695, + "end": 53696, + "value": "]" + }, + { + "type": "comma", + "start": 53696, + "end": 53697, + "value": "," + }, + { + "type": "whitespace", + "start": 53697, + "end": 53698, + "value": " " + }, + { + "type": "operator", + "start": 53698, + "end": 53699, + "value": "%" + }, + { + "type": "brace", + "start": 53699, + "end": 53700, + "value": ")" + }, + { + "type": "whitespace", + "start": 53700, + "end": 53703, + "value": "\n " + }, + { + "type": "operator", + "start": 53703, + "end": 53705, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53705, + "end": 53706, + "value": " " + }, + { + "type": "word", + "start": 53706, + "end": 53710, + "value": "line" + }, + { + "type": "brace", + "start": 53710, + "end": 53711, + "value": "(" + }, + { + "type": "brace", + "start": 53711, + "end": 53712, + "value": "[" + }, + { + "type": "whitespace", + "start": 53712, + "end": 53720, + "value": "\n " + }, + { + "type": "operator", + "start": 53720, + "end": 53721, + "value": "-" + }, + { + "type": "number", + "start": 53721, + "end": 53739, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 53739, + "end": 53740, + "value": "," + }, + { + "type": "whitespace", + "start": 53740, + "end": 53748, + "value": "\n " + }, + { + "type": "operator", + "start": 53748, + "end": 53749, + "value": "-" + }, + { + "type": "number", + "start": 53749, + "end": 53767, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 53767, + "end": 53773, + "value": "\n " + }, + { + "type": "brace", + "start": 53773, + "end": 53774, + "value": "]" + }, + { + "type": "comma", + "start": 53774, + "end": 53775, + "value": "," + }, + { + "type": "whitespace", + "start": 53775, + "end": 53776, + "value": " " + }, + { + "type": "operator", + "start": 53776, + "end": 53777, + "value": "%" + }, + { + "type": "brace", + "start": 53777, + "end": 53778, + "value": ")" + }, + { + "type": "whitespace", + "start": 53778, + "end": 53781, + "value": "\n " + }, + { + "type": "operator", + "start": 53781, + "end": 53783, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53783, + "end": 53784, + "value": " " + }, + { + "type": "word", + "start": 53784, + "end": 53788, + "value": "line" + }, + { + "type": "brace", + "start": 53788, + "end": 53789, + "value": "(" + }, + { + "type": "brace", + "start": 53789, + "end": 53790, + "value": "[" + }, + { + "type": "whitespace", + "start": 53790, + "end": 53798, + "value": "\n " + }, + { + "type": "number", + "start": 53798, + "end": 53818, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 53818, + "end": 53819, + "value": "," + }, + { + "type": "whitespace", + "start": 53819, + "end": 53827, + "value": "\n " + }, + { + "type": "operator", + "start": 53827, + "end": 53828, + "value": "-" + }, + { + "type": "number", + "start": 53828, + "end": 53847, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 53847, + "end": 53853, + "value": "\n " + }, + { + "type": "brace", + "start": 53853, + "end": 53854, + "value": "]" + }, + { + "type": "comma", + "start": 53854, + "end": 53855, + "value": "," + }, + { + "type": "whitespace", + "start": 53855, + "end": 53856, + "value": " " + }, + { + "type": "operator", + "start": 53856, + "end": 53857, + "value": "%" + }, + { + "type": "brace", + "start": 53857, + "end": 53858, + "value": ")" + }, + { + "type": "whitespace", + "start": 53858, + "end": 53861, + "value": "\n " + }, + { + "type": "operator", + "start": 53861, + "end": 53863, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53863, + "end": 53864, + "value": " " + }, + { + "type": "word", + "start": 53864, + "end": 53868, + "value": "line" + }, + { + "type": "brace", + "start": 53868, + "end": 53869, + "value": "(" + }, + { + "type": "brace", + "start": 53869, + "end": 53870, + "value": "[" + }, + { + "type": "whitespace", + "start": 53870, + "end": 53878, + "value": "\n " + }, + { + "type": "number", + "start": 53878, + "end": 53897, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 53897, + "end": 53898, + "value": "," + }, + { + "type": "whitespace", + "start": 53898, + "end": 53906, + "value": "\n " + }, + { + "type": "operator", + "start": 53906, + "end": 53907, + "value": "-" + }, + { + "type": "number", + "start": 53907, + "end": 53926, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 53926, + "end": 53932, + "value": "\n " + }, + { + "type": "brace", + "start": 53932, + "end": 53933, + "value": "]" + }, + { + "type": "comma", + "start": 53933, + "end": 53934, + "value": "," + }, + { + "type": "whitespace", + "start": 53934, + "end": 53935, + "value": " " + }, + { + "type": "operator", + "start": 53935, + "end": 53936, + "value": "%" + }, + { + "type": "brace", + "start": 53936, + "end": 53937, + "value": ")" + }, + { + "type": "whitespace", + "start": 53937, + "end": 53940, + "value": "\n " + }, + { + "type": "operator", + "start": 53940, + "end": 53942, + "value": "|>" + }, + { + "type": "whitespace", + "start": 53942, + "end": 53943, + "value": " " + }, + { + "type": "word", + "start": 53943, + "end": 53947, + "value": "line" + }, + { + "type": "brace", + "start": 53947, + "end": 53948, + "value": "(" + }, + { + "type": "brace", + "start": 53948, + "end": 53949, + "value": "[" + }, + { + "type": "whitespace", + "start": 53949, + "end": 53957, + "value": "\n " + }, + { + "type": "number", + "start": 53957, + "end": 53975, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 53975, + "end": 53976, + "value": "," + }, + { + "type": "whitespace", + "start": 53976, + "end": 53984, + "value": "\n " + }, + { + "type": "operator", + "start": 53984, + "end": 53985, + "value": "-" + }, + { + "type": "number", + "start": 53985, + "end": 54004, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 54004, + "end": 54010, + "value": "\n " + }, + { + "type": "brace", + "start": 54010, + "end": 54011, + "value": "]" + }, + { + "type": "comma", + "start": 54011, + "end": 54012, + "value": "," + }, + { + "type": "whitespace", + "start": 54012, + "end": 54013, + "value": " " + }, + { + "type": "operator", + "start": 54013, + "end": 54014, + "value": "%" + }, + { + "type": "brace", + "start": 54014, + "end": 54015, + "value": ")" + }, + { + "type": "whitespace", + "start": 54015, + "end": 54018, + "value": "\n " + }, + { + "type": "operator", + "start": 54018, + "end": 54020, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54020, + "end": 54021, + "value": " " + }, + { + "type": "word", + "start": 54021, + "end": 54025, + "value": "line" + }, + { + "type": "brace", + "start": 54025, + "end": 54026, + "value": "(" + }, + { + "type": "brace", + "start": 54026, + "end": 54027, + "value": "[" + }, + { + "type": "whitespace", + "start": 54027, + "end": 54035, + "value": "\n " + }, + { + "type": "operator", + "start": 54035, + "end": 54036, + "value": "-" + }, + { + "type": "number", + "start": 54036, + "end": 54054, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 54054, + "end": 54055, + "value": "," + }, + { + "type": "whitespace", + "start": 54055, + "end": 54063, + "value": "\n " + }, + { + "type": "operator", + "start": 54063, + "end": 54064, + "value": "-" + }, + { + "type": "number", + "start": 54064, + "end": 54082, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 54082, + "end": 54088, + "value": "\n " + }, + { + "type": "brace", + "start": 54088, + "end": 54089, + "value": "]" + }, + { + "type": "comma", + "start": 54089, + "end": 54090, + "value": "," + }, + { + "type": "whitespace", + "start": 54090, + "end": 54091, + "value": " " + }, + { + "type": "operator", + "start": 54091, + "end": 54092, + "value": "%" + }, + { + "type": "brace", + "start": 54092, + "end": 54093, + "value": ")" + }, + { + "type": "whitespace", + "start": 54093, + "end": 54096, + "value": "\n " + }, + { + "type": "operator", + "start": 54096, + "end": 54098, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54098, + "end": 54099, + "value": " " + }, + { + "type": "word", + "start": 54099, + "end": 54103, + "value": "line" + }, + { + "type": "brace", + "start": 54103, + "end": 54104, + "value": "(" + }, + { + "type": "brace", + "start": 54104, + "end": 54105, + "value": "[" + }, + { + "type": "number", + "start": 54105, + "end": 54123, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 54123, + "end": 54124, + "value": "," + }, + { + "type": "whitespace", + "start": 54124, + "end": 54125, + "value": " " + }, + { + "type": "number", + "start": 54125, + "end": 54143, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 54143, + "end": 54144, + "value": "]" + }, + { + "type": "comma", + "start": 54144, + "end": 54145, + "value": "," + }, + { + "type": "whitespace", + "start": 54145, + "end": 54146, + "value": " " + }, + { + "type": "operator", + "start": 54146, + "end": 54147, + "value": "%" + }, + { + "type": "brace", + "start": 54147, + "end": 54148, + "value": ")" + }, + { + "type": "whitespace", + "start": 54148, + "end": 54151, + "value": "\n " + }, + { + "type": "operator", + "start": 54151, + "end": 54153, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54153, + "end": 54154, + "value": " " + }, + { + "type": "word", + "start": 54154, + "end": 54158, + "value": "line" + }, + { + "type": "brace", + "start": 54158, + "end": 54159, + "value": "(" + }, + { + "type": "brace", + "start": 54159, + "end": 54160, + "value": "[" + }, + { + "type": "whitespace", + "start": 54160, + "end": 54168, + "value": "\n " + }, + { + "type": "number", + "start": 54168, + "end": 54186, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 54186, + "end": 54187, + "value": "," + }, + { + "type": "whitespace", + "start": 54187, + "end": 54195, + "value": "\n " + }, + { + "type": "number", + "start": 54195, + "end": 54214, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 54214, + "end": 54220, + "value": "\n " + }, + { + "type": "brace", + "start": 54220, + "end": 54221, + "value": "]" + }, + { + "type": "comma", + "start": 54221, + "end": 54222, + "value": "," + }, + { + "type": "whitespace", + "start": 54222, + "end": 54223, + "value": " " + }, + { + "type": "operator", + "start": 54223, + "end": 54224, + "value": "%" + }, + { + "type": "brace", + "start": 54224, + "end": 54225, + "value": ")" + }, + { + "type": "whitespace", + "start": 54225, + "end": 54228, + "value": "\n " + }, + { + "type": "operator", + "start": 54228, + "end": 54230, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54230, + "end": 54231, + "value": " " + }, + { + "type": "word", + "start": 54231, + "end": 54235, + "value": "line" + }, + { + "type": "brace", + "start": 54235, + "end": 54236, + "value": "(" + }, + { + "type": "brace", + "start": 54236, + "end": 54237, + "value": "[" + }, + { + "type": "whitespace", + "start": 54237, + "end": 54245, + "value": "\n " + }, + { + "type": "operator", + "start": 54245, + "end": 54246, + "value": "-" + }, + { + "type": "number", + "start": 54246, + "end": 54265, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 54265, + "end": 54266, + "value": "," + }, + { + "type": "whitespace", + "start": 54266, + "end": 54274, + "value": "\n " + }, + { + "type": "number", + "start": 54274, + "end": 54292, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 54292, + "end": 54298, + "value": "\n " + }, + { + "type": "brace", + "start": 54298, + "end": 54299, + "value": "]" + }, + { + "type": "comma", + "start": 54299, + "end": 54300, + "value": "," + }, + { + "type": "whitespace", + "start": 54300, + "end": 54301, + "value": " " + }, + { + "type": "operator", + "start": 54301, + "end": 54302, + "value": "%" + }, + { + "type": "brace", + "start": 54302, + "end": 54303, + "value": ")" + }, + { + "type": "whitespace", + "start": 54303, + "end": 54306, + "value": "\n " + }, + { + "type": "operator", + "start": 54306, + "end": 54308, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54308, + "end": 54309, + "value": " " + }, + { + "type": "word", + "start": 54309, + "end": 54313, + "value": "line" + }, + { + "type": "brace", + "start": 54313, + "end": 54314, + "value": "(" + }, + { + "type": "brace", + "start": 54314, + "end": 54315, + "value": "[" + }, + { + "type": "whitespace", + "start": 54315, + "end": 54323, + "value": "\n " + }, + { + "type": "operator", + "start": 54323, + "end": 54324, + "value": "-" + }, + { + "type": "number", + "start": 54324, + "end": 54343, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 54343, + "end": 54344, + "value": "," + }, + { + "type": "whitespace", + "start": 54344, + "end": 54352, + "value": "\n " + }, + { + "type": "operator", + "start": 54352, + "end": 54353, + "value": "-" + }, + { + "type": "number", + "start": 54353, + "end": 54372, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 54372, + "end": 54378, + "value": "\n " + }, + { + "type": "brace", + "start": 54378, + "end": 54379, + "value": "]" + }, + { + "type": "comma", + "start": 54379, + "end": 54380, + "value": "," + }, + { + "type": "whitespace", + "start": 54380, + "end": 54381, + "value": " " + }, + { + "type": "operator", + "start": 54381, + "end": 54382, + "value": "%" + }, + { + "type": "brace", + "start": 54382, + "end": 54383, + "value": ")" + }, + { + "type": "whitespace", + "start": 54383, + "end": 54386, + "value": "\n " + }, + { + "type": "operator", + "start": 54386, + "end": 54388, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54388, + "end": 54389, + "value": " " + }, + { + "type": "word", + "start": 54389, + "end": 54393, + "value": "line" + }, + { + "type": "brace", + "start": 54393, + "end": 54394, + "value": "(" + }, + { + "type": "brace", + "start": 54394, + "end": 54395, + "value": "[" + }, + { + "type": "whitespace", + "start": 54395, + "end": 54403, + "value": "\n " + }, + { + "type": "number", + "start": 54403, + "end": 54422, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 54422, + "end": 54423, + "value": "," + }, + { + "type": "whitespace", + "start": 54423, + "end": 54431, + "value": "\n " + }, + { + "type": "operator", + "start": 54431, + "end": 54432, + "value": "-" + }, + { + "type": "number", + "start": 54432, + "end": 54450, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 54450, + "end": 54456, + "value": "\n " + }, + { + "type": "brace", + "start": 54456, + "end": 54457, + "value": "]" + }, + { + "type": "comma", + "start": 54457, + "end": 54458, + "value": "," + }, + { + "type": "whitespace", + "start": 54458, + "end": 54459, + "value": " " + }, + { + "type": "operator", + "start": 54459, + "end": 54460, + "value": "%" + }, + { + "type": "brace", + "start": 54460, + "end": 54461, + "value": ")" + }, + { + "type": "whitespace", + "start": 54461, + "end": 54464, + "value": "\n " + }, + { + "type": "operator", + "start": 54464, + "end": 54466, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54466, + "end": 54467, + "value": " " + }, + { + "type": "word", + "start": 54467, + "end": 54471, + "value": "line" + }, + { + "type": "brace", + "start": 54471, + "end": 54472, + "value": "(" + }, + { + "type": "brace", + "start": 54472, + "end": 54473, + "value": "[" + }, + { + "type": "whitespace", + "start": 54473, + "end": 54481, + "value": "\n " + }, + { + "type": "operator", + "start": 54481, + "end": 54482, + "value": "-" + }, + { + "type": "number", + "start": 54482, + "end": 54500, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 54500, + "end": 54501, + "value": "," + }, + { + "type": "whitespace", + "start": 54501, + "end": 54509, + "value": "\n " + }, + { + "type": "number", + "start": 54509, + "end": 54528, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 54528, + "end": 54534, + "value": "\n " + }, + { + "type": "brace", + "start": 54534, + "end": 54535, + "value": "]" + }, + { + "type": "comma", + "start": 54535, + "end": 54536, + "value": "," + }, + { + "type": "whitespace", + "start": 54536, + "end": 54537, + "value": " " + }, + { + "type": "operator", + "start": 54537, + "end": 54538, + "value": "%" + }, + { + "type": "brace", + "start": 54538, + "end": 54539, + "value": ")" + }, + { + "type": "whitespace", + "start": 54539, + "end": 54542, + "value": "\n " + }, + { + "type": "operator", + "start": 54542, + "end": 54544, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54544, + "end": 54545, + "value": " " + }, + { + "type": "word", + "start": 54545, + "end": 54549, + "value": "line" + }, + { + "type": "brace", + "start": 54549, + "end": 54550, + "value": "(" + }, + { + "type": "brace", + "start": 54550, + "end": 54551, + "value": "[" + }, + { + "type": "number", + "start": 54551, + "end": 54569, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 54569, + "end": 54570, + "value": "," + }, + { + "type": "whitespace", + "start": 54570, + "end": 54571, + "value": " " + }, + { + "type": "number", + "start": 54571, + "end": 54589, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 54589, + "end": 54590, + "value": "]" + }, + { + "type": "comma", + "start": 54590, + "end": 54591, + "value": "," + }, + { + "type": "whitespace", + "start": 54591, + "end": 54592, + "value": " " + }, + { + "type": "operator", + "start": 54592, + "end": 54593, + "value": "%" + }, + { + "type": "brace", + "start": 54593, + "end": 54594, + "value": ")" + }, + { + "type": "whitespace", + "start": 54594, + "end": 54597, + "value": "\n " + }, + { + "type": "operator", + "start": 54597, + "end": 54599, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54599, + "end": 54600, + "value": " " + }, + { + "type": "word", + "start": 54600, + "end": 54604, + "value": "line" + }, + { + "type": "brace", + "start": 54604, + "end": 54605, + "value": "(" + }, + { + "type": "brace", + "start": 54605, + "end": 54606, + "value": "[" + }, + { + "type": "whitespace", + "start": 54606, + "end": 54614, + "value": "\n " + }, + { + "type": "operator", + "start": 54614, + "end": 54615, + "value": "-" + }, + { + "type": "number", + "start": 54615, + "end": 54633, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 54633, + "end": 54634, + "value": "," + }, + { + "type": "whitespace", + "start": 54634, + "end": 54642, + "value": "\n " + }, + { + "type": "operator", + "start": 54642, + "end": 54643, + "value": "-" + }, + { + "type": "number", + "start": 54643, + "end": 54662, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 54662, + "end": 54668, + "value": "\n " + }, + { + "type": "brace", + "start": 54668, + "end": 54669, + "value": "]" + }, + { + "type": "comma", + "start": 54669, + "end": 54670, + "value": "," + }, + { + "type": "whitespace", + "start": 54670, + "end": 54671, + "value": " " + }, + { + "type": "operator", + "start": 54671, + "end": 54672, + "value": "%" + }, + { + "type": "brace", + "start": 54672, + "end": 54673, + "value": ")" + }, + { + "type": "whitespace", + "start": 54673, + "end": 54676, + "value": "\n " + }, + { + "type": "operator", + "start": 54676, + "end": 54678, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54678, + "end": 54679, + "value": " " + }, + { + "type": "word", + "start": 54679, + "end": 54683, + "value": "line" + }, + { + "type": "brace", + "start": 54683, + "end": 54684, + "value": "(" + }, + { + "type": "brace", + "start": 54684, + "end": 54685, + "value": "[" + }, + { + "type": "whitespace", + "start": 54685, + "end": 54693, + "value": "\n " + }, + { + "type": "number", + "start": 54693, + "end": 54711, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 54711, + "end": 54712, + "value": "," + }, + { + "type": "whitespace", + "start": 54712, + "end": 54720, + "value": "\n " + }, + { + "type": "operator", + "start": 54720, + "end": 54721, + "value": "-" + }, + { + "type": "number", + "start": 54721, + "end": 54739, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 54739, + "end": 54745, + "value": "\n " + }, + { + "type": "brace", + "start": 54745, + "end": 54746, + "value": "]" + }, + { + "type": "comma", + "start": 54746, + "end": 54747, + "value": "," + }, + { + "type": "whitespace", + "start": 54747, + "end": 54748, + "value": " " + }, + { + "type": "operator", + "start": 54748, + "end": 54749, + "value": "%" + }, + { + "type": "brace", + "start": 54749, + "end": 54750, + "value": ")" + }, + { + "type": "whitespace", + "start": 54750, + "end": 54753, + "value": "\n " + }, + { + "type": "operator", + "start": 54753, + "end": 54755, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54755, + "end": 54756, + "value": " " + }, + { + "type": "word", + "start": 54756, + "end": 54760, + "value": "line" + }, + { + "type": "brace", + "start": 54760, + "end": 54761, + "value": "(" + }, + { + "type": "brace", + "start": 54761, + "end": 54762, + "value": "[" + }, + { + "type": "whitespace", + "start": 54762, + "end": 54770, + "value": "\n " + }, + { + "type": "number", + "start": 54770, + "end": 54788, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 54788, + "end": 54789, + "value": "," + }, + { + "type": "whitespace", + "start": 54789, + "end": 54797, + "value": "\n " + }, + { + "type": "operator", + "start": 54797, + "end": 54798, + "value": "-" + }, + { + "type": "number", + "start": 54798, + "end": 54816, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 54816, + "end": 54822, + "value": "\n " + }, + { + "type": "brace", + "start": 54822, + "end": 54823, + "value": "]" + }, + { + "type": "comma", + "start": 54823, + "end": 54824, + "value": "," + }, + { + "type": "whitespace", + "start": 54824, + "end": 54825, + "value": " " + }, + { + "type": "operator", + "start": 54825, + "end": 54826, + "value": "%" + }, + { + "type": "brace", + "start": 54826, + "end": 54827, + "value": ")" + }, + { + "type": "whitespace", + "start": 54827, + "end": 54830, + "value": "\n " + }, + { + "type": "operator", + "start": 54830, + "end": 54832, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54832, + "end": 54833, + "value": " " + }, + { + "type": "word", + "start": 54833, + "end": 54837, + "value": "line" + }, + { + "type": "brace", + "start": 54837, + "end": 54838, + "value": "(" + }, + { + "type": "brace", + "start": 54838, + "end": 54839, + "value": "[" + }, + { + "type": "number", + "start": 54839, + "end": 54857, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 54857, + "end": 54858, + "value": "," + }, + { + "type": "whitespace", + "start": 54858, + "end": 54859, + "value": " " + }, + { + "type": "number", + "start": 54859, + "end": 54877, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 54877, + "end": 54878, + "value": "]" + }, + { + "type": "comma", + "start": 54878, + "end": 54879, + "value": "," + }, + { + "type": "whitespace", + "start": 54879, + "end": 54880, + "value": " " + }, + { + "type": "operator", + "start": 54880, + "end": 54881, + "value": "%" + }, + { + "type": "brace", + "start": 54881, + "end": 54882, + "value": ")" + }, + { + "type": "whitespace", + "start": 54882, + "end": 54885, + "value": "\n " + }, + { + "type": "operator", + "start": 54885, + "end": 54887, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54887, + "end": 54888, + "value": " " + }, + { + "type": "word", + "start": 54888, + "end": 54892, + "value": "line" + }, + { + "type": "brace", + "start": 54892, + "end": 54893, + "value": "(" + }, + { + "type": "brace", + "start": 54893, + "end": 54894, + "value": "[" + }, + { + "type": "whitespace", + "start": 54894, + "end": 54902, + "value": "\n " + }, + { + "type": "operator", + "start": 54902, + "end": 54903, + "value": "-" + }, + { + "type": "number", + "start": 54903, + "end": 54921, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 54921, + "end": 54922, + "value": "," + }, + { + "type": "whitespace", + "start": 54922, + "end": 54930, + "value": "\n " + }, + { + "type": "number", + "start": 54930, + "end": 54948, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 54948, + "end": 54954, + "value": "\n " + }, + { + "type": "brace", + "start": 54954, + "end": 54955, + "value": "]" + }, + { + "type": "comma", + "start": 54955, + "end": 54956, + "value": "," + }, + { + "type": "whitespace", + "start": 54956, + "end": 54957, + "value": " " + }, + { + "type": "operator", + "start": 54957, + "end": 54958, + "value": "%" + }, + { + "type": "brace", + "start": 54958, + "end": 54959, + "value": ")" + }, + { + "type": "whitespace", + "start": 54959, + "end": 54962, + "value": "\n " + }, + { + "type": "operator", + "start": 54962, + "end": 54964, + "value": "|>" + }, + { + "type": "whitespace", + "start": 54964, + "end": 54965, + "value": " " + }, + { + "type": "word", + "start": 54965, + "end": 54969, + "value": "line" + }, + { + "type": "brace", + "start": 54969, + "end": 54970, + "value": "(" + }, + { + "type": "brace", + "start": 54970, + "end": 54971, + "value": "[" + }, + { + "type": "number", + "start": 54971, + "end": 54989, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 54989, + "end": 54990, + "value": "," + }, + { + "type": "whitespace", + "start": 54990, + "end": 54991, + "value": " " + }, + { + "type": "number", + "start": 54991, + "end": 55009, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 55009, + "end": 55010, + "value": "]" + }, + { + "type": "comma", + "start": 55010, + "end": 55011, + "value": "," + }, + { + "type": "whitespace", + "start": 55011, + "end": 55012, + "value": " " + }, + { + "type": "operator", + "start": 55012, + "end": 55013, + "value": "%" + }, + { + "type": "brace", + "start": 55013, + "end": 55014, + "value": ")" + }, + { + "type": "whitespace", + "start": 55014, + "end": 55017, + "value": "\n " + }, + { + "type": "operator", + "start": 55017, + "end": 55019, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55019, + "end": 55020, + "value": " " + }, + { + "type": "word", + "start": 55020, + "end": 55024, + "value": "line" + }, + { + "type": "brace", + "start": 55024, + "end": 55025, + "value": "(" + }, + { + "type": "brace", + "start": 55025, + "end": 55026, + "value": "[" + }, + { + "type": "whitespace", + "start": 55026, + "end": 55034, + "value": "\n " + }, + { + "type": "number", + "start": 55034, + "end": 55052, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 55052, + "end": 55053, + "value": "," + }, + { + "type": "whitespace", + "start": 55053, + "end": 55061, + "value": "\n " + }, + { + "type": "number", + "start": 55061, + "end": 55080, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 55080, + "end": 55086, + "value": "\n " + }, + { + "type": "brace", + "start": 55086, + "end": 55087, + "value": "]" + }, + { + "type": "comma", + "start": 55087, + "end": 55088, + "value": "," + }, + { + "type": "whitespace", + "start": 55088, + "end": 55089, + "value": " " + }, + { + "type": "operator", + "start": 55089, + "end": 55090, + "value": "%" + }, + { + "type": "brace", + "start": 55090, + "end": 55091, + "value": ")" + }, + { + "type": "whitespace", + "start": 55091, + "end": 55094, + "value": "\n " + }, + { + "type": "operator", + "start": 55094, + "end": 55096, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55096, + "end": 55097, + "value": " " + }, + { + "type": "word", + "start": 55097, + "end": 55101, + "value": "line" + }, + { + "type": "brace", + "start": 55101, + "end": 55102, + "value": "(" + }, + { + "type": "brace", + "start": 55102, + "end": 55103, + "value": "[" + }, + { + "type": "whitespace", + "start": 55103, + "end": 55111, + "value": "\n " + }, + { + "type": "operator", + "start": 55111, + "end": 55112, + "value": "-" + }, + { + "type": "number", + "start": 55112, + "end": 55130, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 55130, + "end": 55131, + "value": "," + }, + { + "type": "whitespace", + "start": 55131, + "end": 55139, + "value": "\n " + }, + { + "type": "operator", + "start": 55139, + "end": 55140, + "value": "-" + }, + { + "type": "number", + "start": 55140, + "end": 55157, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 55157, + "end": 55163, + "value": "\n " + }, + { + "type": "brace", + "start": 55163, + "end": 55164, + "value": "]" + }, + { + "type": "comma", + "start": 55164, + "end": 55165, + "value": "," + }, + { + "type": "whitespace", + "start": 55165, + "end": 55166, + "value": " " + }, + { + "type": "operator", + "start": 55166, + "end": 55167, + "value": "%" + }, + { + "type": "brace", + "start": 55167, + "end": 55168, + "value": ")" + }, + { + "type": "whitespace", + "start": 55168, + "end": 55171, + "value": "\n " + }, + { + "type": "operator", + "start": 55171, + "end": 55173, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55173, + "end": 55174, + "value": " " + }, + { + "type": "word", + "start": 55174, + "end": 55178, + "value": "line" + }, + { + "type": "brace", + "start": 55178, + "end": 55179, + "value": "(" + }, + { + "type": "brace", + "start": 55179, + "end": 55180, + "value": "[" + }, + { + "type": "whitespace", + "start": 55180, + "end": 55188, + "value": "\n " + }, + { + "type": "number", + "start": 55188, + "end": 55206, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 55206, + "end": 55207, + "value": "," + }, + { + "type": "whitespace", + "start": 55207, + "end": 55215, + "value": "\n " + }, + { + "type": "operator", + "start": 55215, + "end": 55216, + "value": "-" + }, + { + "type": "number", + "start": 55216, + "end": 55235, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 55235, + "end": 55241, + "value": "\n " + }, + { + "type": "brace", + "start": 55241, + "end": 55242, + "value": "]" + }, + { + "type": "comma", + "start": 55242, + "end": 55243, + "value": "," + }, + { + "type": "whitespace", + "start": 55243, + "end": 55244, + "value": " " + }, + { + "type": "operator", + "start": 55244, + "end": 55245, + "value": "%" + }, + { + "type": "brace", + "start": 55245, + "end": 55246, + "value": ")" + }, + { + "type": "whitespace", + "start": 55246, + "end": 55249, + "value": "\n " + }, + { + "type": "operator", + "start": 55249, + "end": 55251, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55251, + "end": 55252, + "value": " " + }, + { + "type": "word", + "start": 55252, + "end": 55256, + "value": "line" + }, + { + "type": "brace", + "start": 55256, + "end": 55257, + "value": "(" + }, + { + "type": "brace", + "start": 55257, + "end": 55258, + "value": "[" + }, + { + "type": "whitespace", + "start": 55258, + "end": 55266, + "value": "\n " + }, + { + "type": "operator", + "start": 55266, + "end": 55267, + "value": "-" + }, + { + "type": "number", + "start": 55267, + "end": 55286, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 55286, + "end": 55287, + "value": "," + }, + { + "type": "whitespace", + "start": 55287, + "end": 55295, + "value": "\n " + }, + { + "type": "operator", + "start": 55295, + "end": 55296, + "value": "-" + }, + { + "type": "number", + "start": 55296, + "end": 55315, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 55315, + "end": 55321, + "value": "\n " + }, + { + "type": "brace", + "start": 55321, + "end": 55322, + "value": "]" + }, + { + "type": "comma", + "start": 55322, + "end": 55323, + "value": "," + }, + { + "type": "whitespace", + "start": 55323, + "end": 55324, + "value": " " + }, + { + "type": "operator", + "start": 55324, + "end": 55325, + "value": "%" + }, + { + "type": "brace", + "start": 55325, + "end": 55326, + "value": ")" + }, + { + "type": "whitespace", + "start": 55326, + "end": 55329, + "value": "\n " + }, + { + "type": "operator", + "start": 55329, + "end": 55331, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55331, + "end": 55332, + "value": " " + }, + { + "type": "word", + "start": 55332, + "end": 55336, + "value": "line" + }, + { + "type": "brace", + "start": 55336, + "end": 55337, + "value": "(" + }, + { + "type": "brace", + "start": 55337, + "end": 55338, + "value": "[" + }, + { + "type": "whitespace", + "start": 55338, + "end": 55346, + "value": "\n " + }, + { + "type": "operator", + "start": 55346, + "end": 55347, + "value": "-" + }, + { + "type": "number", + "start": 55347, + "end": 55365, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 55365, + "end": 55366, + "value": "," + }, + { + "type": "whitespace", + "start": 55366, + "end": 55374, + "value": "\n " + }, + { + "type": "operator", + "start": 55374, + "end": 55375, + "value": "-" + }, + { + "type": "number", + "start": 55375, + "end": 55394, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 55394, + "end": 55400, + "value": "\n " + }, + { + "type": "brace", + "start": 55400, + "end": 55401, + "value": "]" + }, + { + "type": "comma", + "start": 55401, + "end": 55402, + "value": "," + }, + { + "type": "whitespace", + "start": 55402, + "end": 55403, + "value": " " + }, + { + "type": "operator", + "start": 55403, + "end": 55404, + "value": "%" + }, + { + "type": "brace", + "start": 55404, + "end": 55405, + "value": ")" + }, + { + "type": "whitespace", + "start": 55405, + "end": 55408, + "value": "\n " + }, + { + "type": "operator", + "start": 55408, + "end": 55410, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55410, + "end": 55411, + "value": " " + }, + { + "type": "word", + "start": 55411, + "end": 55415, + "value": "line" + }, + { + "type": "brace", + "start": 55415, + "end": 55416, + "value": "(" + }, + { + "type": "brace", + "start": 55416, + "end": 55417, + "value": "[" + }, + { + "type": "whitespace", + "start": 55417, + "end": 55425, + "value": "\n " + }, + { + "type": "operator", + "start": 55425, + "end": 55426, + "value": "-" + }, + { + "type": "number", + "start": 55426, + "end": 55444, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 55444, + "end": 55445, + "value": "," + }, + { + "type": "whitespace", + "start": 55445, + "end": 55453, + "value": "\n " + }, + { + "type": "number", + "start": 55453, + "end": 55472, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 55472, + "end": 55478, + "value": "\n " + }, + { + "type": "brace", + "start": 55478, + "end": 55479, + "value": "]" + }, + { + "type": "comma", + "start": 55479, + "end": 55480, + "value": "," + }, + { + "type": "whitespace", + "start": 55480, + "end": 55481, + "value": " " + }, + { + "type": "operator", + "start": 55481, + "end": 55482, + "value": "%" + }, + { + "type": "brace", + "start": 55482, + "end": 55483, + "value": ")" + }, + { + "type": "whitespace", + "start": 55483, + "end": 55486, + "value": "\n " + }, + { + "type": "operator", + "start": 55486, + "end": 55488, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55488, + "end": 55489, + "value": " " + }, + { + "type": "word", + "start": 55489, + "end": 55493, + "value": "line" + }, + { + "type": "brace", + "start": 55493, + "end": 55494, + "value": "(" + }, + { + "type": "brace", + "start": 55494, + "end": 55495, + "value": "[" + }, + { + "type": "whitespace", + "start": 55495, + "end": 55503, + "value": "\n " + }, + { + "type": "operator", + "start": 55503, + "end": 55504, + "value": "-" + }, + { + "type": "number", + "start": 55504, + "end": 55522, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 55522, + "end": 55523, + "value": "," + }, + { + "type": "whitespace", + "start": 55523, + "end": 55531, + "value": "\n " + }, + { + "type": "operator", + "start": 55531, + "end": 55532, + "value": "-" + }, + { + "type": "number", + "start": 55532, + "end": 55551, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 55551, + "end": 55557, + "value": "\n " + }, + { + "type": "brace", + "start": 55557, + "end": 55558, + "value": "]" + }, + { + "type": "comma", + "start": 55558, + "end": 55559, + "value": "," + }, + { + "type": "whitespace", + "start": 55559, + "end": 55560, + "value": " " + }, + { + "type": "operator", + "start": 55560, + "end": 55561, + "value": "%" + }, + { + "type": "brace", + "start": 55561, + "end": 55562, + "value": ")" + }, + { + "type": "whitespace", + "start": 55562, + "end": 55565, + "value": "\n " + }, + { + "type": "operator", + "start": 55565, + "end": 55567, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55567, + "end": 55568, + "value": " " + }, + { + "type": "word", + "start": 55568, + "end": 55572, + "value": "line" + }, + { + "type": "brace", + "start": 55572, + "end": 55573, + "value": "(" + }, + { + "type": "brace", + "start": 55573, + "end": 55574, + "value": "[" + }, + { + "type": "whitespace", + "start": 55574, + "end": 55582, + "value": "\n " + }, + { + "type": "number", + "start": 55582, + "end": 55600, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 55600, + "end": 55601, + "value": "," + }, + { + "type": "whitespace", + "start": 55601, + "end": 55609, + "value": "\n " + }, + { + "type": "operator", + "start": 55609, + "end": 55610, + "value": "-" + }, + { + "type": "number", + "start": 55610, + "end": 55628, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 55628, + "end": 55634, + "value": "\n " + }, + { + "type": "brace", + "start": 55634, + "end": 55635, + "value": "]" + }, + { + "type": "comma", + "start": 55635, + "end": 55636, + "value": "," + }, + { + "type": "whitespace", + "start": 55636, + "end": 55637, + "value": " " + }, + { + "type": "operator", + "start": 55637, + "end": 55638, + "value": "%" + }, + { + "type": "brace", + "start": 55638, + "end": 55639, + "value": ")" + }, + { + "type": "whitespace", + "start": 55639, + "end": 55642, + "value": "\n " + }, + { + "type": "operator", + "start": 55642, + "end": 55644, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55644, + "end": 55645, + "value": " " + }, + { + "type": "word", + "start": 55645, + "end": 55649, + "value": "line" + }, + { + "type": "brace", + "start": 55649, + "end": 55650, + "value": "(" + }, + { + "type": "brace", + "start": 55650, + "end": 55651, + "value": "[" + }, + { + "type": "whitespace", + "start": 55651, + "end": 55659, + "value": "\n " + }, + { + "type": "operator", + "start": 55659, + "end": 55660, + "value": "-" + }, + { + "type": "number", + "start": 55660, + "end": 55678, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 55678, + "end": 55679, + "value": "," + }, + { + "type": "whitespace", + "start": 55679, + "end": 55687, + "value": "\n " + }, + { + "type": "number", + "start": 55687, + "end": 55705, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 55705, + "end": 55711, + "value": "\n " + }, + { + "type": "brace", + "start": 55711, + "end": 55712, + "value": "]" + }, + { + "type": "comma", + "start": 55712, + "end": 55713, + "value": "," + }, + { + "type": "whitespace", + "start": 55713, + "end": 55714, + "value": " " + }, + { + "type": "operator", + "start": 55714, + "end": 55715, + "value": "%" + }, + { + "type": "brace", + "start": 55715, + "end": 55716, + "value": ")" + }, + { + "type": "whitespace", + "start": 55716, + "end": 55719, + "value": "\n " + }, + { + "type": "operator", + "start": 55719, + "end": 55721, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55721, + "end": 55722, + "value": " " + }, + { + "type": "word", + "start": 55722, + "end": 55726, + "value": "line" + }, + { + "type": "brace", + "start": 55726, + "end": 55727, + "value": "(" + }, + { + "type": "brace", + "start": 55727, + "end": 55728, + "value": "[" + }, + { + "type": "whitespace", + "start": 55728, + "end": 55736, + "value": "\n " + }, + { + "type": "operator", + "start": 55736, + "end": 55737, + "value": "-" + }, + { + "type": "number", + "start": 55737, + "end": 55755, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 55755, + "end": 55756, + "value": "," + }, + { + "type": "whitespace", + "start": 55756, + "end": 55764, + "value": "\n " + }, + { + "type": "number", + "start": 55764, + "end": 55782, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 55782, + "end": 55788, + "value": "\n " + }, + { + "type": "brace", + "start": 55788, + "end": 55789, + "value": "]" + }, + { + "type": "comma", + "start": 55789, + "end": 55790, + "value": "," + }, + { + "type": "whitespace", + "start": 55790, + "end": 55791, + "value": " " + }, + { + "type": "operator", + "start": 55791, + "end": 55792, + "value": "%" + }, + { + "type": "brace", + "start": 55792, + "end": 55793, + "value": ")" + }, + { + "type": "whitespace", + "start": 55793, + "end": 55796, + "value": "\n " + }, + { + "type": "operator", + "start": 55796, + "end": 55798, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55798, + "end": 55799, + "value": " " + }, + { + "type": "word", + "start": 55799, + "end": 55803, + "value": "line" + }, + { + "type": "brace", + "start": 55803, + "end": 55804, + "value": "(" + }, + { + "type": "brace", + "start": 55804, + "end": 55805, + "value": "[" + }, + { + "type": "whitespace", + "start": 55805, + "end": 55813, + "value": "\n " + }, + { + "type": "operator", + "start": 55813, + "end": 55814, + "value": "-" + }, + { + "type": "number", + "start": 55814, + "end": 55832, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 55832, + "end": 55833, + "value": "," + }, + { + "type": "whitespace", + "start": 55833, + "end": 55841, + "value": "\n " + }, + { + "type": "operator", + "start": 55841, + "end": 55842, + "value": "-" + }, + { + "type": "number", + "start": 55842, + "end": 55861, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 55861, + "end": 55867, + "value": "\n " + }, + { + "type": "brace", + "start": 55867, + "end": 55868, + "value": "]" + }, + { + "type": "comma", + "start": 55868, + "end": 55869, + "value": "," + }, + { + "type": "whitespace", + "start": 55869, + "end": 55870, + "value": " " + }, + { + "type": "operator", + "start": 55870, + "end": 55871, + "value": "%" + }, + { + "type": "brace", + "start": 55871, + "end": 55872, + "value": ")" + }, + { + "type": "whitespace", + "start": 55872, + "end": 55875, + "value": "\n " + }, + { + "type": "operator", + "start": 55875, + "end": 55877, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55877, + "end": 55878, + "value": " " + }, + { + "type": "word", + "start": 55878, + "end": 55882, + "value": "line" + }, + { + "type": "brace", + "start": 55882, + "end": 55883, + "value": "(" + }, + { + "type": "brace", + "start": 55883, + "end": 55884, + "value": "[" + }, + { + "type": "whitespace", + "start": 55884, + "end": 55892, + "value": "\n " + }, + { + "type": "number", + "start": 55892, + "end": 55911, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 55911, + "end": 55912, + "value": "," + }, + { + "type": "whitespace", + "start": 55912, + "end": 55920, + "value": "\n " + }, + { + "type": "number", + "start": 55920, + "end": 55939, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 55939, + "end": 55945, + "value": "\n " + }, + { + "type": "brace", + "start": 55945, + "end": 55946, + "value": "]" + }, + { + "type": "comma", + "start": 55946, + "end": 55947, + "value": "," + }, + { + "type": "whitespace", + "start": 55947, + "end": 55948, + "value": " " + }, + { + "type": "operator", + "start": 55948, + "end": 55949, + "value": "%" + }, + { + "type": "brace", + "start": 55949, + "end": 55950, + "value": ")" + }, + { + "type": "whitespace", + "start": 55950, + "end": 55953, + "value": "\n " + }, + { + "type": "operator", + "start": 55953, + "end": 55955, + "value": "|>" + }, + { + "type": "whitespace", + "start": 55955, + "end": 55956, + "value": " " + }, + { + "type": "word", + "start": 55956, + "end": 55960, + "value": "line" + }, + { + "type": "brace", + "start": 55960, + "end": 55961, + "value": "(" + }, + { + "type": "brace", + "start": 55961, + "end": 55962, + "value": "[" + }, + { + "type": "whitespace", + "start": 55962, + "end": 55970, + "value": "\n " + }, + { + "type": "number", + "start": 55970, + "end": 55989, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 55989, + "end": 55990, + "value": "," + }, + { + "type": "whitespace", + "start": 55990, + "end": 55998, + "value": "\n " + }, + { + "type": "number", + "start": 55998, + "end": 56017, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 56017, + "end": 56023, + "value": "\n " + }, + { + "type": "brace", + "start": 56023, + "end": 56024, + "value": "]" + }, + { + "type": "comma", + "start": 56024, + "end": 56025, + "value": "," + }, + { + "type": "whitespace", + "start": 56025, + "end": 56026, + "value": " " + }, + { + "type": "operator", + "start": 56026, + "end": 56027, + "value": "%" + }, + { + "type": "brace", + "start": 56027, + "end": 56028, + "value": ")" + }, + { + "type": "whitespace", + "start": 56028, + "end": 56031, + "value": "\n " + }, + { + "type": "operator", + "start": 56031, + "end": 56033, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56033, + "end": 56034, + "value": " " + }, + { + "type": "word", + "start": 56034, + "end": 56038, + "value": "line" + }, + { + "type": "brace", + "start": 56038, + "end": 56039, + "value": "(" + }, + { + "type": "brace", + "start": 56039, + "end": 56040, + "value": "[" + }, + { + "type": "whitespace", + "start": 56040, + "end": 56048, + "value": "\n " + }, + { + "type": "operator", + "start": 56048, + "end": 56049, + "value": "-" + }, + { + "type": "number", + "start": 56049, + "end": 56068, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 56068, + "end": 56069, + "value": "," + }, + { + "type": "whitespace", + "start": 56069, + "end": 56077, + "value": "\n " + }, + { + "type": "number", + "start": 56077, + "end": 56095, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 56095, + "end": 56101, + "value": "\n " + }, + { + "type": "brace", + "start": 56101, + "end": 56102, + "value": "]" + }, + { + "type": "comma", + "start": 56102, + "end": 56103, + "value": "," + }, + { + "type": "whitespace", + "start": 56103, + "end": 56104, + "value": " " + }, + { + "type": "operator", + "start": 56104, + "end": 56105, + "value": "%" + }, + { + "type": "brace", + "start": 56105, + "end": 56106, + "value": ")" + }, + { + "type": "whitespace", + "start": 56106, + "end": 56109, + "value": "\n " + }, + { + "type": "operator", + "start": 56109, + "end": 56111, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56111, + "end": 56112, + "value": " " + }, + { + "type": "word", + "start": 56112, + "end": 56116, + "value": "line" + }, + { + "type": "brace", + "start": 56116, + "end": 56117, + "value": "(" + }, + { + "type": "brace", + "start": 56117, + "end": 56118, + "value": "[" + }, + { + "type": "whitespace", + "start": 56118, + "end": 56126, + "value": "\n " + }, + { + "type": "operator", + "start": 56126, + "end": 56127, + "value": "-" + }, + { + "type": "number", + "start": 56127, + "end": 56146, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 56146, + "end": 56147, + "value": "," + }, + { + "type": "whitespace", + "start": 56147, + "end": 56155, + "value": "\n " + }, + { + "type": "operator", + "start": 56155, + "end": 56156, + "value": "-" + }, + { + "type": "number", + "start": 56156, + "end": 56175, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 56175, + "end": 56181, + "value": "\n " + }, + { + "type": "brace", + "start": 56181, + "end": 56182, + "value": "]" + }, + { + "type": "comma", + "start": 56182, + "end": 56183, + "value": "," + }, + { + "type": "whitespace", + "start": 56183, + "end": 56184, + "value": " " + }, + { + "type": "operator", + "start": 56184, + "end": 56185, + "value": "%" + }, + { + "type": "brace", + "start": 56185, + "end": 56186, + "value": ")" + }, + { + "type": "whitespace", + "start": 56186, + "end": 56189, + "value": "\n " + }, + { + "type": "operator", + "start": 56189, + "end": 56191, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56191, + "end": 56192, + "value": " " + }, + { + "type": "word", + "start": 56192, + "end": 56196, + "value": "line" + }, + { + "type": "brace", + "start": 56196, + "end": 56197, + "value": "(" + }, + { + "type": "brace", + "start": 56197, + "end": 56198, + "value": "[" + }, + { + "type": "whitespace", + "start": 56198, + "end": 56206, + "value": "\n " + }, + { + "type": "number", + "start": 56206, + "end": 56224, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 56224, + "end": 56225, + "value": "," + }, + { + "type": "whitespace", + "start": 56225, + "end": 56233, + "value": "\n " + }, + { + "type": "operator", + "start": 56233, + "end": 56234, + "value": "-" + }, + { + "type": "number", + "start": 56234, + "end": 56253, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 56253, + "end": 56259, + "value": "\n " + }, + { + "type": "brace", + "start": 56259, + "end": 56260, + "value": "]" + }, + { + "type": "comma", + "start": 56260, + "end": 56261, + "value": "," + }, + { + "type": "whitespace", + "start": 56261, + "end": 56262, + "value": " " + }, + { + "type": "operator", + "start": 56262, + "end": 56263, + "value": "%" + }, + { + "type": "brace", + "start": 56263, + "end": 56264, + "value": ")" + }, + { + "type": "whitespace", + "start": 56264, + "end": 56267, + "value": "\n " + }, + { + "type": "operator", + "start": 56267, + "end": 56269, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56269, + "end": 56270, + "value": " " + }, + { + "type": "word", + "start": 56270, + "end": 56274, + "value": "line" + }, + { + "type": "brace", + "start": 56274, + "end": 56275, + "value": "(" + }, + { + "type": "brace", + "start": 56275, + "end": 56276, + "value": "[" + }, + { + "type": "whitespace", + "start": 56276, + "end": 56284, + "value": "\n " + }, + { + "type": "number", + "start": 56284, + "end": 56305, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 56305, + "end": 56306, + "value": "," + }, + { + "type": "whitespace", + "start": 56306, + "end": 56314, + "value": "\n " + }, + { + "type": "operator", + "start": 56314, + "end": 56315, + "value": "-" + }, + { + "type": "number", + "start": 56315, + "end": 56333, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 56333, + "end": 56339, + "value": "\n " + }, + { + "type": "brace", + "start": 56339, + "end": 56340, + "value": "]" + }, + { + "type": "comma", + "start": 56340, + "end": 56341, + "value": "," + }, + { + "type": "whitespace", + "start": 56341, + "end": 56342, + "value": " " + }, + { + "type": "operator", + "start": 56342, + "end": 56343, + "value": "%" + }, + { + "type": "brace", + "start": 56343, + "end": 56344, + "value": ")" + }, + { + "type": "whitespace", + "start": 56344, + "end": 56347, + "value": "\n " + }, + { + "type": "operator", + "start": 56347, + "end": 56349, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56349, + "end": 56350, + "value": " " + }, + { + "type": "word", + "start": 56350, + "end": 56354, + "value": "line" + }, + { + "type": "brace", + "start": 56354, + "end": 56355, + "value": "(" + }, + { + "type": "brace", + "start": 56355, + "end": 56356, + "value": "[" + }, + { + "type": "whitespace", + "start": 56356, + "end": 56364, + "value": "\n " + }, + { + "type": "number", + "start": 56364, + "end": 56382, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 56382, + "end": 56383, + "value": "," + }, + { + "type": "whitespace", + "start": 56383, + "end": 56391, + "value": "\n " + }, + { + "type": "operator", + "start": 56391, + "end": 56392, + "value": "-" + }, + { + "type": "number", + "start": 56392, + "end": 56410, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 56410, + "end": 56416, + "value": "\n " + }, + { + "type": "brace", + "start": 56416, + "end": 56417, + "value": "]" + }, + { + "type": "comma", + "start": 56417, + "end": 56418, + "value": "," + }, + { + "type": "whitespace", + "start": 56418, + "end": 56419, + "value": " " + }, + { + "type": "operator", + "start": 56419, + "end": 56420, + "value": "%" + }, + { + "type": "brace", + "start": 56420, + "end": 56421, + "value": ")" + }, + { + "type": "whitespace", + "start": 56421, + "end": 56424, + "value": "\n " + }, + { + "type": "operator", + "start": 56424, + "end": 56426, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56426, + "end": 56427, + "value": " " + }, + { + "type": "word", + "start": 56427, + "end": 56431, + "value": "line" + }, + { + "type": "brace", + "start": 56431, + "end": 56432, + "value": "(" + }, + { + "type": "brace", + "start": 56432, + "end": 56433, + "value": "[" + }, + { + "type": "whitespace", + "start": 56433, + "end": 56441, + "value": "\n " + }, + { + "type": "operator", + "start": 56441, + "end": 56442, + "value": "-" + }, + { + "type": "number", + "start": 56442, + "end": 56460, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 56460, + "end": 56461, + "value": "," + }, + { + "type": "whitespace", + "start": 56461, + "end": 56469, + "value": "\n " + }, + { + "type": "number", + "start": 56469, + "end": 56487, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 56487, + "end": 56493, + "value": "\n " + }, + { + "type": "brace", + "start": 56493, + "end": 56494, + "value": "]" + }, + { + "type": "comma", + "start": 56494, + "end": 56495, + "value": "," + }, + { + "type": "whitespace", + "start": 56495, + "end": 56496, + "value": " " + }, + { + "type": "operator", + "start": 56496, + "end": 56497, + "value": "%" + }, + { + "type": "brace", + "start": 56497, + "end": 56498, + "value": ")" + }, + { + "type": "whitespace", + "start": 56498, + "end": 56501, + "value": "\n " + }, + { + "type": "operator", + "start": 56501, + "end": 56503, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56503, + "end": 56504, + "value": " " + }, + { + "type": "word", + "start": 56504, + "end": 56508, + "value": "line" + }, + { + "type": "brace", + "start": 56508, + "end": 56509, + "value": "(" + }, + { + "type": "brace", + "start": 56509, + "end": 56510, + "value": "[" + }, + { + "type": "number", + "start": 56510, + "end": 56528, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 56528, + "end": 56529, + "value": "," + }, + { + "type": "whitespace", + "start": 56529, + "end": 56530, + "value": " " + }, + { + "type": "number", + "start": 56530, + "end": 56548, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 56548, + "end": 56549, + "value": "]" + }, + { + "type": "comma", + "start": 56549, + "end": 56550, + "value": "," + }, + { + "type": "whitespace", + "start": 56550, + "end": 56551, + "value": " " + }, + { + "type": "operator", + "start": 56551, + "end": 56552, + "value": "%" + }, + { + "type": "brace", + "start": 56552, + "end": 56553, + "value": ")" + }, + { + "type": "whitespace", + "start": 56553, + "end": 56556, + "value": "\n " + }, + { + "type": "operator", + "start": 56556, + "end": 56558, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56558, + "end": 56559, + "value": " " + }, + { + "type": "word", + "start": 56559, + "end": 56563, + "value": "line" + }, + { + "type": "brace", + "start": 56563, + "end": 56564, + "value": "(" + }, + { + "type": "brace", + "start": 56564, + "end": 56565, + "value": "[" + }, + { + "type": "whitespace", + "start": 56565, + "end": 56573, + "value": "\n " + }, + { + "type": "operator", + "start": 56573, + "end": 56574, + "value": "-" + }, + { + "type": "number", + "start": 56574, + "end": 56593, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 56593, + "end": 56594, + "value": "," + }, + { + "type": "whitespace", + "start": 56594, + "end": 56602, + "value": "\n " + }, + { + "type": "number", + "start": 56602, + "end": 56622, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 56622, + "end": 56628, + "value": "\n " + }, + { + "type": "brace", + "start": 56628, + "end": 56629, + "value": "]" + }, + { + "type": "comma", + "start": 56629, + "end": 56630, + "value": "," + }, + { + "type": "whitespace", + "start": 56630, + "end": 56631, + "value": " " + }, + { + "type": "operator", + "start": 56631, + "end": 56632, + "value": "%" + }, + { + "type": "brace", + "start": 56632, + "end": 56633, + "value": ")" + }, + { + "type": "whitespace", + "start": 56633, + "end": 56636, + "value": "\n " + }, + { + "type": "operator", + "start": 56636, + "end": 56638, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56638, + "end": 56639, + "value": " " + }, + { + "type": "word", + "start": 56639, + "end": 56643, + "value": "line" + }, + { + "type": "brace", + "start": 56643, + "end": 56644, + "value": "(" + }, + { + "type": "brace", + "start": 56644, + "end": 56645, + "value": "[" + }, + { + "type": "whitespace", + "start": 56645, + "end": 56653, + "value": "\n " + }, + { + "type": "operator", + "start": 56653, + "end": 56654, + "value": "-" + }, + { + "type": "number", + "start": 56654, + "end": 56672, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 56672, + "end": 56673, + "value": "," + }, + { + "type": "whitespace", + "start": 56673, + "end": 56681, + "value": "\n " + }, + { + "type": "operator", + "start": 56681, + "end": 56682, + "value": "-" + }, + { + "type": "number", + "start": 56682, + "end": 56701, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 56701, + "end": 56707, + "value": "\n " + }, + { + "type": "brace", + "start": 56707, + "end": 56708, + "value": "]" + }, + { + "type": "comma", + "start": 56708, + "end": 56709, + "value": "," + }, + { + "type": "whitespace", + "start": 56709, + "end": 56710, + "value": " " + }, + { + "type": "operator", + "start": 56710, + "end": 56711, + "value": "%" + }, + { + "type": "brace", + "start": 56711, + "end": 56712, + "value": ")" + }, + { + "type": "whitespace", + "start": 56712, + "end": 56715, + "value": "\n " + }, + { + "type": "operator", + "start": 56715, + "end": 56717, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56717, + "end": 56718, + "value": " " + }, + { + "type": "word", + "start": 56718, + "end": 56722, + "value": "line" + }, + { + "type": "brace", + "start": 56722, + "end": 56723, + "value": "(" + }, + { + "type": "brace", + "start": 56723, + "end": 56724, + "value": "[" + }, + { + "type": "whitespace", + "start": 56724, + "end": 56732, + "value": "\n " + }, + { + "type": "operator", + "start": 56732, + "end": 56733, + "value": "-" + }, + { + "type": "number", + "start": 56733, + "end": 56751, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 56751, + "end": 56752, + "value": "," + }, + { + "type": "whitespace", + "start": 56752, + "end": 56760, + "value": "\n " + }, + { + "type": "operator", + "start": 56760, + "end": 56761, + "value": "-" + }, + { + "type": "number", + "start": 56761, + "end": 56780, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 56780, + "end": 56786, + "value": "\n " + }, + { + "type": "brace", + "start": 56786, + "end": 56787, + "value": "]" + }, + { + "type": "comma", + "start": 56787, + "end": 56788, + "value": "," + }, + { + "type": "whitespace", + "start": 56788, + "end": 56789, + "value": " " + }, + { + "type": "operator", + "start": 56789, + "end": 56790, + "value": "%" + }, + { + "type": "brace", + "start": 56790, + "end": 56791, + "value": ")" + }, + { + "type": "whitespace", + "start": 56791, + "end": 56794, + "value": "\n " + }, + { + "type": "operator", + "start": 56794, + "end": 56796, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56796, + "end": 56797, + "value": " " + }, + { + "type": "word", + "start": 56797, + "end": 56801, + "value": "line" + }, + { + "type": "brace", + "start": 56801, + "end": 56802, + "value": "(" + }, + { + "type": "brace", + "start": 56802, + "end": 56803, + "value": "[" + }, + { + "type": "number", + "start": 56803, + "end": 56820, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 56820, + "end": 56821, + "value": "," + }, + { + "type": "whitespace", + "start": 56821, + "end": 56822, + "value": " " + }, + { + "type": "number", + "start": 56822, + "end": 56840, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 56840, + "end": 56841, + "value": "]" + }, + { + "type": "comma", + "start": 56841, + "end": 56842, + "value": "," + }, + { + "type": "whitespace", + "start": 56842, + "end": 56843, + "value": " " + }, + { + "type": "operator", + "start": 56843, + "end": 56844, + "value": "%" + }, + { + "type": "brace", + "start": 56844, + "end": 56845, + "value": ")" + }, + { + "type": "whitespace", + "start": 56845, + "end": 56848, + "value": "\n " + }, + { + "type": "operator", + "start": 56848, + "end": 56850, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56850, + "end": 56851, + "value": " " + }, + { + "type": "word", + "start": 56851, + "end": 56855, + "value": "line" + }, + { + "type": "brace", + "start": 56855, + "end": 56856, + "value": "(" + }, + { + "type": "brace", + "start": 56856, + "end": 56857, + "value": "[" + }, + { + "type": "whitespace", + "start": 56857, + "end": 56865, + "value": "\n " + }, + { + "type": "number", + "start": 56865, + "end": 56884, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 56884, + "end": 56885, + "value": "," + }, + { + "type": "whitespace", + "start": 56885, + "end": 56893, + "value": "\n " + }, + { + "type": "operator", + "start": 56893, + "end": 56894, + "value": "-" + }, + { + "type": "number", + "start": 56894, + "end": 56913, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 56913, + "end": 56919, + "value": "\n " + }, + { + "type": "brace", + "start": 56919, + "end": 56920, + "value": "]" + }, + { + "type": "comma", + "start": 56920, + "end": 56921, + "value": "," + }, + { + "type": "whitespace", + "start": 56921, + "end": 56922, + "value": " " + }, + { + "type": "operator", + "start": 56922, + "end": 56923, + "value": "%" + }, + { + "type": "brace", + "start": 56923, + "end": 56924, + "value": ")" + }, + { + "type": "whitespace", + "start": 56924, + "end": 56927, + "value": "\n " + }, + { + "type": "operator", + "start": 56927, + "end": 56929, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56929, + "end": 56930, + "value": " " + }, + { + "type": "word", + "start": 56930, + "end": 56934, + "value": "line" + }, + { + "type": "brace", + "start": 56934, + "end": 56935, + "value": "(" + }, + { + "type": "brace", + "start": 56935, + "end": 56936, + "value": "[" + }, + { + "type": "number", + "start": 56936, + "end": 56954, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 56954, + "end": 56955, + "value": "," + }, + { + "type": "whitespace", + "start": 56955, + "end": 56956, + "value": " " + }, + { + "type": "number", + "start": 56956, + "end": 56973, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 56973, + "end": 56974, + "value": "]" + }, + { + "type": "comma", + "start": 56974, + "end": 56975, + "value": "," + }, + { + "type": "whitespace", + "start": 56975, + "end": 56976, + "value": " " + }, + { + "type": "operator", + "start": 56976, + "end": 56977, + "value": "%" + }, + { + "type": "brace", + "start": 56977, + "end": 56978, + "value": ")" + }, + { + "type": "whitespace", + "start": 56978, + "end": 56981, + "value": "\n " + }, + { + "type": "operator", + "start": 56981, + "end": 56983, + "value": "|>" + }, + { + "type": "whitespace", + "start": 56983, + "end": 56984, + "value": " " + }, + { + "type": "word", + "start": 56984, + "end": 56988, + "value": "line" + }, + { + "type": "brace", + "start": 56988, + "end": 56989, + "value": "(" + }, + { + "type": "brace", + "start": 56989, + "end": 56990, + "value": "[" + }, + { + "type": "whitespace", + "start": 56990, + "end": 56998, + "value": "\n " + }, + { + "type": "number", + "start": 56998, + "end": 57017, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 57017, + "end": 57018, + "value": "," + }, + { + "type": "whitespace", + "start": 57018, + "end": 57026, + "value": "\n " + }, + { + "type": "operator", + "start": 57026, + "end": 57027, + "value": "-" + }, + { + "type": "number", + "start": 57027, + "end": 57045, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 57045, + "end": 57051, + "value": "\n " + }, + { + "type": "brace", + "start": 57051, + "end": 57052, + "value": "]" + }, + { + "type": "comma", + "start": 57052, + "end": 57053, + "value": "," + }, + { + "type": "whitespace", + "start": 57053, + "end": 57054, + "value": " " + }, + { + "type": "operator", + "start": 57054, + "end": 57055, + "value": "%" + }, + { + "type": "brace", + "start": 57055, + "end": 57056, + "value": ")" + }, + { + "type": "whitespace", + "start": 57056, + "end": 57059, + "value": "\n " + }, + { + "type": "operator", + "start": 57059, + "end": 57061, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57061, + "end": 57062, + "value": " " + }, + { + "type": "word", + "start": 57062, + "end": 57066, + "value": "line" + }, + { + "type": "brace", + "start": 57066, + "end": 57067, + "value": "(" + }, + { + "type": "brace", + "start": 57067, + "end": 57068, + "value": "[" + }, + { + "type": "number", + "start": 57068, + "end": 57086, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 57086, + "end": 57087, + "value": "," + }, + { + "type": "whitespace", + "start": 57087, + "end": 57088, + "value": " " + }, + { + "type": "number", + "start": 57088, + "end": 57106, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 57106, + "end": 57107, + "value": "]" + }, + { + "type": "comma", + "start": 57107, + "end": 57108, + "value": "," + }, + { + "type": "whitespace", + "start": 57108, + "end": 57109, + "value": " " + }, + { + "type": "operator", + "start": 57109, + "end": 57110, + "value": "%" + }, + { + "type": "brace", + "start": 57110, + "end": 57111, + "value": ")" + }, + { + "type": "whitespace", + "start": 57111, + "end": 57114, + "value": "\n " + }, + { + "type": "operator", + "start": 57114, + "end": 57116, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57116, + "end": 57117, + "value": " " + }, + { + "type": "word", + "start": 57117, + "end": 57121, + "value": "line" + }, + { + "type": "brace", + "start": 57121, + "end": 57122, + "value": "(" + }, + { + "type": "brace", + "start": 57122, + "end": 57123, + "value": "[" + }, + { + "type": "whitespace", + "start": 57123, + "end": 57131, + "value": "\n " + }, + { + "type": "number", + "start": 57131, + "end": 57149, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 57149, + "end": 57150, + "value": "," + }, + { + "type": "whitespace", + "start": 57150, + "end": 57158, + "value": "\n " + }, + { + "type": "number", + "start": 57158, + "end": 57177, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 57177, + "end": 57183, + "value": "\n " + }, + { + "type": "brace", + "start": 57183, + "end": 57184, + "value": "]" + }, + { + "type": "comma", + "start": 57184, + "end": 57185, + "value": "," + }, + { + "type": "whitespace", + "start": 57185, + "end": 57186, + "value": " " + }, + { + "type": "operator", + "start": 57186, + "end": 57187, + "value": "%" + }, + { + "type": "brace", + "start": 57187, + "end": 57188, + "value": ")" + }, + { + "type": "whitespace", + "start": 57188, + "end": 57191, + "value": "\n " + }, + { + "type": "operator", + "start": 57191, + "end": 57193, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57193, + "end": 57194, + "value": " " + }, + { + "type": "word", + "start": 57194, + "end": 57198, + "value": "line" + }, + { + "type": "brace", + "start": 57198, + "end": 57199, + "value": "(" + }, + { + "type": "brace", + "start": 57199, + "end": 57200, + "value": "[" + }, + { + "type": "number", + "start": 57200, + "end": 57218, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 57218, + "end": 57219, + "value": "," + }, + { + "type": "whitespace", + "start": 57219, + "end": 57220, + "value": " " + }, + { + "type": "number", + "start": 57220, + "end": 57238, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 57238, + "end": 57239, + "value": "]" + }, + { + "type": "comma", + "start": 57239, + "end": 57240, + "value": "," + }, + { + "type": "whitespace", + "start": 57240, + "end": 57241, + "value": " " + }, + { + "type": "operator", + "start": 57241, + "end": 57242, + "value": "%" + }, + { + "type": "brace", + "start": 57242, + "end": 57243, + "value": ")" + }, + { + "type": "whitespace", + "start": 57243, + "end": 57246, + "value": "\n " + }, + { + "type": "operator", + "start": 57246, + "end": 57248, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57248, + "end": 57249, + "value": " " + }, + { + "type": "word", + "start": 57249, + "end": 57253, + "value": "line" + }, + { + "type": "brace", + "start": 57253, + "end": 57254, + "value": "(" + }, + { + "type": "brace", + "start": 57254, + "end": 57255, + "value": "[" + }, + { + "type": "whitespace", + "start": 57255, + "end": 57263, + "value": "\n " + }, + { + "type": "operator", + "start": 57263, + "end": 57264, + "value": "-" + }, + { + "type": "number", + "start": 57264, + "end": 57283, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 57283, + "end": 57284, + "value": "," + }, + { + "type": "whitespace", + "start": 57284, + "end": 57292, + "value": "\n " + }, + { + "type": "operator", + "start": 57292, + "end": 57293, + "value": "-" + }, + { + "type": "number", + "start": 57293, + "end": 57311, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 57311, + "end": 57317, + "value": "\n " + }, + { + "type": "brace", + "start": 57317, + "end": 57318, + "value": "]" + }, + { + "type": "comma", + "start": 57318, + "end": 57319, + "value": "," + }, + { + "type": "whitespace", + "start": 57319, + "end": 57320, + "value": " " + }, + { + "type": "operator", + "start": 57320, + "end": 57321, + "value": "%" + }, + { + "type": "brace", + "start": 57321, + "end": 57322, + "value": ")" + }, + { + "type": "whitespace", + "start": 57322, + "end": 57325, + "value": "\n " + }, + { + "type": "operator", + "start": 57325, + "end": 57327, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57327, + "end": 57328, + "value": " " + }, + { + "type": "word", + "start": 57328, + "end": 57332, + "value": "line" + }, + { + "type": "brace", + "start": 57332, + "end": 57333, + "value": "(" + }, + { + "type": "brace", + "start": 57333, + "end": 57334, + "value": "[" + }, + { + "type": "whitespace", + "start": 57334, + "end": 57342, + "value": "\n " + }, + { + "type": "number", + "start": 57342, + "end": 57360, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 57360, + "end": 57361, + "value": "," + }, + { + "type": "whitespace", + "start": 57361, + "end": 57369, + "value": "\n " + }, + { + "type": "operator", + "start": 57369, + "end": 57370, + "value": "-" + }, + { + "type": "number", + "start": 57370, + "end": 57388, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 57388, + "end": 57394, + "value": "\n " + }, + { + "type": "brace", + "start": 57394, + "end": 57395, + "value": "]" + }, + { + "type": "comma", + "start": 57395, + "end": 57396, + "value": "," + }, + { + "type": "whitespace", + "start": 57396, + "end": 57397, + "value": " " + }, + { + "type": "operator", + "start": 57397, + "end": 57398, + "value": "%" + }, + { + "type": "brace", + "start": 57398, + "end": 57399, + "value": ")" + }, + { + "type": "whitespace", + "start": 57399, + "end": 57402, + "value": "\n " + }, + { + "type": "operator", + "start": 57402, + "end": 57404, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57404, + "end": 57405, + "value": " " + }, + { + "type": "word", + "start": 57405, + "end": 57409, + "value": "line" + }, + { + "type": "brace", + "start": 57409, + "end": 57410, + "value": "(" + }, + { + "type": "brace", + "start": 57410, + "end": 57411, + "value": "[" + }, + { + "type": "whitespace", + "start": 57411, + "end": 57419, + "value": "\n " + }, + { + "type": "number", + "start": 57419, + "end": 57437, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 57437, + "end": 57438, + "value": "," + }, + { + "type": "whitespace", + "start": 57438, + "end": 57446, + "value": "\n " + }, + { + "type": "operator", + "start": 57446, + "end": 57447, + "value": "-" + }, + { + "type": "number", + "start": 57447, + "end": 57465, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 57465, + "end": 57471, + "value": "\n " + }, + { + "type": "brace", + "start": 57471, + "end": 57472, + "value": "]" + }, + { + "type": "comma", + "start": 57472, + "end": 57473, + "value": "," + }, + { + "type": "whitespace", + "start": 57473, + "end": 57474, + "value": " " + }, + { + "type": "operator", + "start": 57474, + "end": 57475, + "value": "%" + }, + { + "type": "brace", + "start": 57475, + "end": 57476, + "value": ")" + }, + { + "type": "whitespace", + "start": 57476, + "end": 57479, + "value": "\n " + }, + { + "type": "operator", + "start": 57479, + "end": 57481, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57481, + "end": 57482, + "value": " " + }, + { + "type": "word", + "start": 57482, + "end": 57486, + "value": "line" + }, + { + "type": "brace", + "start": 57486, + "end": 57487, + "value": "(" + }, + { + "type": "brace", + "start": 57487, + "end": 57488, + "value": "[" + }, + { + "type": "whitespace", + "start": 57488, + "end": 57496, + "value": "\n " + }, + { + "type": "operator", + "start": 57496, + "end": 57497, + "value": "-" + }, + { + "type": "number", + "start": 57497, + "end": 57515, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 57515, + "end": 57516, + "value": "," + }, + { + "type": "whitespace", + "start": 57516, + "end": 57524, + "value": "\n " + }, + { + "type": "number", + "start": 57524, + "end": 57542, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 57542, + "end": 57548, + "value": "\n " + }, + { + "type": "brace", + "start": 57548, + "end": 57549, + "value": "]" + }, + { + "type": "comma", + "start": 57549, + "end": 57550, + "value": "," + }, + { + "type": "whitespace", + "start": 57550, + "end": 57551, + "value": " " + }, + { + "type": "operator", + "start": 57551, + "end": 57552, + "value": "%" + }, + { + "type": "brace", + "start": 57552, + "end": 57553, + "value": ")" + }, + { + "type": "whitespace", + "start": 57553, + "end": 57556, + "value": "\n " + }, + { + "type": "operator", + "start": 57556, + "end": 57558, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57558, + "end": 57559, + "value": " " + }, + { + "type": "word", + "start": 57559, + "end": 57563, + "value": "line" + }, + { + "type": "brace", + "start": 57563, + "end": 57564, + "value": "(" + }, + { + "type": "brace", + "start": 57564, + "end": 57565, + "value": "[" + }, + { + "type": "whitespace", + "start": 57565, + "end": 57573, + "value": "\n " + }, + { + "type": "number", + "start": 57573, + "end": 57591, + "value": "0.9464450621708211" + }, + { + "type": "comma", + "start": 57591, + "end": 57592, + "value": "," + }, + { + "type": "whitespace", + "start": 57592, + "end": 57600, + "value": "\n " + }, + { + "type": "operator", + "start": 57600, + "end": 57601, + "value": "-" + }, + { + "type": "number", + "start": 57601, + "end": 57619, + "value": "0.2684908127803667" + }, + { + "type": "whitespace", + "start": 57619, + "end": 57625, + "value": "\n " + }, + { + "type": "brace", + "start": 57625, + "end": 57626, + "value": "]" + }, + { + "type": "comma", + "start": 57626, + "end": 57627, + "value": "," + }, + { + "type": "whitespace", + "start": 57627, + "end": 57628, + "value": " " + }, + { + "type": "operator", + "start": 57628, + "end": 57629, + "value": "%" + }, + { + "type": "brace", + "start": 57629, + "end": 57630, + "value": ")" + }, + { + "type": "whitespace", + "start": 57630, + "end": 57633, + "value": "\n " + }, + { + "type": "operator", + "start": 57633, + "end": 57635, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57635, + "end": 57636, + "value": " " + }, + { + "type": "word", + "start": 57636, + "end": 57640, + "value": "line" + }, + { + "type": "brace", + "start": 57640, + "end": 57641, + "value": "(" + }, + { + "type": "brace", + "start": 57641, + "end": 57642, + "value": "[" + }, + { + "type": "number", + "start": 57642, + "end": 57660, + "value": "0.5241732366617591" + }, + { + "type": "comma", + "start": 57660, + "end": 57661, + "value": "," + }, + { + "type": "whitespace", + "start": 57661, + "end": 57662, + "value": " " + }, + { + "type": "number", + "start": 57662, + "end": 57680, + "value": "0.9011437416408563" + }, + { + "type": "brace", + "start": 57680, + "end": 57681, + "value": "]" + }, + { + "type": "comma", + "start": 57681, + "end": 57682, + "value": "," + }, + { + "type": "whitespace", + "start": 57682, + "end": 57683, + "value": " " + }, + { + "type": "operator", + "start": 57683, + "end": 57684, + "value": "%" + }, + { + "type": "brace", + "start": 57684, + "end": 57685, + "value": ")" + }, + { + "type": "whitespace", + "start": 57685, + "end": 57688, + "value": "\n " + }, + { + "type": "operator", + "start": 57688, + "end": 57690, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57690, + "end": 57691, + "value": " " + }, + { + "type": "word", + "start": 57691, + "end": 57695, + "value": "line" + }, + { + "type": "brace", + "start": 57695, + "end": 57696, + "value": "(" + }, + { + "type": "brace", + "start": 57696, + "end": 57697, + "value": "[" + }, + { + "type": "whitespace", + "start": 57697, + "end": 57705, + "value": "\n " + }, + { + "type": "operator", + "start": 57705, + "end": 57706, + "value": "-" + }, + { + "type": "number", + "start": 57706, + "end": 57725, + "value": "0.14255393713960607" + }, + { + "type": "comma", + "start": 57725, + "end": 57726, + "value": "," + }, + { + "type": "whitespace", + "start": 57726, + "end": 57734, + "value": "\n " + }, + { + "type": "operator", + "start": 57734, + "end": 57735, + "value": "-" + }, + { + "type": "number", + "start": 57735, + "end": 57753, + "value": "0.5194262624564814" + }, + { + "type": "whitespace", + "start": 57753, + "end": 57759, + "value": "\n " + }, + { + "type": "brace", + "start": 57759, + "end": 57760, + "value": "]" + }, + { + "type": "comma", + "start": 57760, + "end": 57761, + "value": "," + }, + { + "type": "whitespace", + "start": 57761, + "end": 57762, + "value": " " + }, + { + "type": "operator", + "start": 57762, + "end": 57763, + "value": "%" + }, + { + "type": "brace", + "start": 57763, + "end": 57764, + "value": ")" + }, + { + "type": "whitespace", + "start": 57764, + "end": 57767, + "value": "\n " + }, + { + "type": "operator", + "start": 57767, + "end": 57769, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57769, + "end": 57770, + "value": " " + }, + { + "type": "word", + "start": 57770, + "end": 57774, + "value": "line" + }, + { + "type": "brace", + "start": 57774, + "end": 57775, + "value": "(" + }, + { + "type": "brace", + "start": 57775, + "end": 57776, + "value": "[" + }, + { + "type": "whitespace", + "start": 57776, + "end": 57784, + "value": "\n " + }, + { + "type": "operator", + "start": 57784, + "end": 57785, + "value": "-" + }, + { + "type": "number", + "start": 57785, + "end": 57803, + "value": "0.4287123231350338" + }, + { + "type": "comma", + "start": 57803, + "end": 57804, + "value": "," + }, + { + "type": "whitespace", + "start": 57804, + "end": 57812, + "value": "\n " + }, + { + "type": "operator", + "start": 57812, + "end": 57813, + "value": "-" + }, + { + "type": "number", + "start": 57813, + "end": 57831, + "value": "0.4223564528725028" + }, + { + "type": "whitespace", + "start": 57831, + "end": 57837, + "value": "\n " + }, + { + "type": "brace", + "start": 57837, + "end": 57838, + "value": "]" + }, + { + "type": "comma", + "start": 57838, + "end": 57839, + "value": "," + }, + { + "type": "whitespace", + "start": 57839, + "end": 57840, + "value": " " + }, + { + "type": "operator", + "start": 57840, + "end": 57841, + "value": "%" + }, + { + "type": "brace", + "start": 57841, + "end": 57842, + "value": ")" + }, + { + "type": "whitespace", + "start": 57842, + "end": 57845, + "value": "\n " + }, + { + "type": "operator", + "start": 57845, + "end": 57847, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57847, + "end": 57848, + "value": " " + }, + { + "type": "word", + "start": 57848, + "end": 57852, + "value": "line" + }, + { + "type": "brace", + "start": 57852, + "end": 57853, + "value": "(" + }, + { + "type": "brace", + "start": 57853, + "end": 57854, + "value": "[" + }, + { + "type": "whitespace", + "start": 57854, + "end": 57862, + "value": "\n " + }, + { + "type": "operator", + "start": 57862, + "end": 57863, + "value": "-" + }, + { + "type": "number", + "start": 57863, + "end": 57882, + "value": "0.09316367294024519" + }, + { + "type": "comma", + "start": 57882, + "end": 57883, + "value": "," + }, + { + "type": "whitespace", + "start": 57883, + "end": 57891, + "value": "\n " + }, + { + "type": "operator", + "start": 57891, + "end": 57892, + "value": "-" + }, + { + "type": "number", + "start": 57892, + "end": 57910, + "value": "0.9063127021008246" + }, + { + "type": "whitespace", + "start": 57910, + "end": 57916, + "value": "\n " + }, + { + "type": "brace", + "start": 57916, + "end": 57917, + "value": "]" + }, + { + "type": "comma", + "start": 57917, + "end": 57918, + "value": "," + }, + { + "type": "whitespace", + "start": 57918, + "end": 57919, + "value": " " + }, + { + "type": "operator", + "start": 57919, + "end": 57920, + "value": "%" + }, + { + "type": "brace", + "start": 57920, + "end": 57921, + "value": ")" + }, + { + "type": "whitespace", + "start": 57921, + "end": 57924, + "value": "\n " + }, + { + "type": "operator", + "start": 57924, + "end": 57926, + "value": "|>" + }, + { + "type": "whitespace", + "start": 57926, + "end": 57927, + "value": " " + }, + { + "type": "word", + "start": 57927, + "end": 57931, + "value": "line" + }, + { + "type": "brace", + "start": 57931, + "end": 57932, + "value": "(" + }, + { + "type": "brace", + "start": 57932, + "end": 57933, + "value": "[" + }, + { + "type": "whitespace", + "start": 57933, + "end": 57941, + "value": "\n " + }, + { + "type": "operator", + "start": 57941, + "end": 57942, + "value": "-" + }, + { + "type": "number", + "start": 57942, + "end": 57960, + "value": "0.2767766535558669" + }, + { + "type": "comma", + "start": 57960, + "end": 57961, + "value": "," + }, + { + "type": "whitespace", + "start": 57961, + "end": 57969, + "value": "\n " + }, + { + "type": "number", + "start": 57969, + "end": 57987, + "value": "0.6816248114129131" + }, + { + "type": "whitespace", + "start": 57987, + "end": 57993, + "value": "\n " + }, + { + "type": "brace", + "start": 57993, + "end": 57994, + "value": "]" + }, + { + "type": "comma", + "start": 57994, + "end": 57995, + "value": "," + }, + { + "type": "whitespace", + "start": 57995, + "end": 57996, + "value": " " + }, + { + "type": "operator", + "start": 57996, + "end": 57997, + "value": "%" + }, + { + "type": "brace", + "start": 57997, + "end": 57998, + "value": ")" + }, + { + "type": "whitespace", + "start": 57998, + "end": 58001, + "value": "\n " + }, + { + "type": "operator", + "start": 58001, + "end": 58003, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58003, + "end": 58004, + "value": " " + }, + { + "type": "word", + "start": 58004, + "end": 58008, + "value": "line" + }, + { + "type": "brace", + "start": 58008, + "end": 58009, + "value": "(" + }, + { + "type": "brace", + "start": 58009, + "end": 58010, + "value": "[" + }, + { + "type": "whitespace", + "start": 58010, + "end": 58018, + "value": "\n " + }, + { + "type": "number", + "start": 58018, + "end": 58036, + "value": "0.9796762495562534" + }, + { + "type": "comma", + "start": 58036, + "end": 58037, + "value": "," + }, + { + "type": "whitespace", + "start": 58037, + "end": 58045, + "value": "\n " + }, + { + "type": "operator", + "start": 58045, + "end": 58046, + "value": "-" + }, + { + "type": "number", + "start": 58046, + "end": 58064, + "value": "0.0822145668330625" + }, + { + "type": "whitespace", + "start": 58064, + "end": 58070, + "value": "\n " + }, + { + "type": "brace", + "start": 58070, + "end": 58071, + "value": "]" + }, + { + "type": "comma", + "start": 58071, + "end": 58072, + "value": "," + }, + { + "type": "whitespace", + "start": 58072, + "end": 58073, + "value": " " + }, + { + "type": "operator", + "start": 58073, + "end": 58074, + "value": "%" + }, + { + "type": "brace", + "start": 58074, + "end": 58075, + "value": ")" + }, + { + "type": "whitespace", + "start": 58075, + "end": 58078, + "value": "\n " + }, + { + "type": "operator", + "start": 58078, + "end": 58080, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58080, + "end": 58081, + "value": " " + }, + { + "type": "word", + "start": 58081, + "end": 58085, + "value": "line" + }, + { + "type": "brace", + "start": 58085, + "end": 58086, + "value": "(" + }, + { + "type": "brace", + "start": 58086, + "end": 58087, + "value": "[" + }, + { + "type": "whitespace", + "start": 58087, + "end": 58095, + "value": "\n " + }, + { + "type": "operator", + "start": 58095, + "end": 58096, + "value": "-" + }, + { + "type": "number", + "start": 58096, + "end": 58114, + "value": "0.8666513070867441" + }, + { + "type": "comma", + "start": 58114, + "end": 58115, + "value": "," + }, + { + "type": "whitespace", + "start": 58115, + "end": 58123, + "value": "\n " + }, + { + "type": "operator", + "start": 58123, + "end": 58124, + "value": "-" + }, + { + "type": "number", + "start": 58124, + "end": 58141, + "value": "0.301053160242023" + }, + { + "type": "whitespace", + "start": 58141, + "end": 58147, + "value": "\n " + }, + { + "type": "brace", + "start": 58147, + "end": 58148, + "value": "]" + }, + { + "type": "comma", + "start": 58148, + "end": 58149, + "value": "," + }, + { + "type": "whitespace", + "start": 58149, + "end": 58150, + "value": " " + }, + { + "type": "operator", + "start": 58150, + "end": 58151, + "value": "%" + }, + { + "type": "brace", + "start": 58151, + "end": 58152, + "value": ")" + }, + { + "type": "whitespace", + "start": 58152, + "end": 58155, + "value": "\n " + }, + { + "type": "operator", + "start": 58155, + "end": 58157, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58157, + "end": 58158, + "value": " " + }, + { + "type": "word", + "start": 58158, + "end": 58162, + "value": "line" + }, + { + "type": "brace", + "start": 58162, + "end": 58163, + "value": "(" + }, + { + "type": "brace", + "start": 58163, + "end": 58164, + "value": "[" + }, + { + "type": "whitespace", + "start": 58164, + "end": 58172, + "value": "\n " + }, + { + "type": "number", + "start": 58172, + "end": 58189, + "value": "0.537415656028112" + }, + { + "type": "comma", + "start": 58189, + "end": 58190, + "value": "," + }, + { + "type": "whitespace", + "start": 58190, + "end": 58198, + "value": "\n " + }, + { + "type": "number", + "start": 58198, + "end": 58218, + "value": "0.020272692875002774" + }, + { + "type": "whitespace", + "start": 58218, + "end": 58224, + "value": "\n " + }, + { + "type": "brace", + "start": 58224, + "end": 58225, + "value": "]" + }, + { + "type": "comma", + "start": 58225, + "end": 58226, + "value": "," + }, + { + "type": "whitespace", + "start": 58226, + "end": 58227, + "value": " " + }, + { + "type": "operator", + "start": 58227, + "end": 58228, + "value": "%" + }, + { + "type": "brace", + "start": 58228, + "end": 58229, + "value": ")" + }, + { + "type": "whitespace", + "start": 58229, + "end": 58232, + "value": "\n " + }, + { + "type": "operator", + "start": 58232, + "end": 58234, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58234, + "end": 58235, + "value": " " + }, + { + "type": "word", + "start": 58235, + "end": 58239, + "value": "line" + }, + { + "type": "brace", + "start": 58239, + "end": 58240, + "value": "(" + }, + { + "type": "brace", + "start": 58240, + "end": 58241, + "value": "[" + }, + { + "type": "whitespace", + "start": 58241, + "end": 58249, + "value": "\n " + }, + { + "type": "number", + "start": 58249, + "end": 58267, + "value": "0.9332396256457531" + }, + { + "type": "comma", + "start": 58267, + "end": 58268, + "value": "," + }, + { + "type": "whitespace", + "start": 58268, + "end": 58276, + "value": "\n " + }, + { + "type": "operator", + "start": 58276, + "end": 58277, + "value": "-" + }, + { + "type": "number", + "start": 58277, + "end": 58295, + "value": "0.6228175690649898" + }, + { + "type": "whitespace", + "start": 58295, + "end": 58301, + "value": "\n " + }, + { + "type": "brace", + "start": 58301, + "end": 58302, + "value": "]" + }, + { + "type": "comma", + "start": 58302, + "end": 58303, + "value": "," + }, + { + "type": "whitespace", + "start": 58303, + "end": 58304, + "value": " " + }, + { + "type": "operator", + "start": 58304, + "end": 58305, + "value": "%" + }, + { + "type": "brace", + "start": 58305, + "end": 58306, + "value": ")" + }, + { + "type": "whitespace", + "start": 58306, + "end": 58309, + "value": "\n " + }, + { + "type": "operator", + "start": 58309, + "end": 58311, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58311, + "end": 58312, + "value": " " + }, + { + "type": "word", + "start": 58312, + "end": 58316, + "value": "line" + }, + { + "type": "brace", + "start": 58316, + "end": 58317, + "value": "(" + }, + { + "type": "brace", + "start": 58317, + "end": 58318, + "value": "[" + }, + { + "type": "whitespace", + "start": 58318, + "end": 58326, + "value": "\n " + }, + { + "type": "number", + "start": 58326, + "end": 58345, + "value": "0.18052415837320734" + }, + { + "type": "comma", + "start": 58345, + "end": 58346, + "value": "," + }, + { + "type": "whitespace", + "start": 58346, + "end": 58354, + "value": "\n " + }, + { + "type": "operator", + "start": 58354, + "end": 58355, + "value": "-" + }, + { + "type": "number", + "start": 58355, + "end": 58374, + "value": "0.36894384647296197" + }, + { + "type": "whitespace", + "start": 58374, + "end": 58380, + "value": "\n " + }, + { + "type": "brace", + "start": 58380, + "end": 58381, + "value": "]" + }, + { + "type": "comma", + "start": 58381, + "end": 58382, + "value": "," + }, + { + "type": "whitespace", + "start": 58382, + "end": 58383, + "value": " " + }, + { + "type": "operator", + "start": 58383, + "end": 58384, + "value": "%" + }, + { + "type": "brace", + "start": 58384, + "end": 58385, + "value": ")" + }, + { + "type": "whitespace", + "start": 58385, + "end": 58388, + "value": "\n " + }, + { + "type": "operator", + "start": 58388, + "end": 58390, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58390, + "end": 58391, + "value": " " + }, + { + "type": "word", + "start": 58391, + "end": 58395, + "value": "line" + }, + { + "type": "brace", + "start": 58395, + "end": 58396, + "value": "(" + }, + { + "type": "brace", + "start": 58396, + "end": 58397, + "value": "[" + }, + { + "type": "number", + "start": 58397, + "end": 58415, + "value": "0.5384372634075449" + }, + { + "type": "comma", + "start": 58415, + "end": 58416, + "value": "," + }, + { + "type": "whitespace", + "start": 58416, + "end": 58417, + "value": " " + }, + { + "type": "number", + "start": 58417, + "end": 58435, + "value": "0.2377565050887107" + }, + { + "type": "brace", + "start": 58435, + "end": 58436, + "value": "]" + }, + { + "type": "comma", + "start": 58436, + "end": 58437, + "value": "," + }, + { + "type": "whitespace", + "start": 58437, + "end": 58438, + "value": " " + }, + { + "type": "operator", + "start": 58438, + "end": 58439, + "value": "%" + }, + { + "type": "brace", + "start": 58439, + "end": 58440, + "value": ")" + }, + { + "type": "whitespace", + "start": 58440, + "end": 58443, + "value": "\n " + }, + { + "type": "operator", + "start": 58443, + "end": 58445, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58445, + "end": 58446, + "value": " " + }, + { + "type": "word", + "start": 58446, + "end": 58450, + "value": "line" + }, + { + "type": "brace", + "start": 58450, + "end": 58451, + "value": "(" + }, + { + "type": "brace", + "start": 58451, + "end": 58452, + "value": "[" + }, + { + "type": "whitespace", + "start": 58452, + "end": 58460, + "value": "\n " + }, + { + "type": "number", + "start": 58460, + "end": 58479, + "value": "0.39043436929278874" + }, + { + "type": "comma", + "start": 58479, + "end": 58480, + "value": "," + }, + { + "type": "whitespace", + "start": 58480, + "end": 58488, + "value": "\n " + }, + { + "type": "number", + "start": 58488, + "end": 58507, + "value": "0.14273182483160451" + }, + { + "type": "whitespace", + "start": 58507, + "end": 58513, + "value": "\n " + }, + { + "type": "brace", + "start": 58513, + "end": 58514, + "value": "]" + }, + { + "type": "comma", + "start": 58514, + "end": 58515, + "value": "," + }, + { + "type": "whitespace", + "start": 58515, + "end": 58516, + "value": " " + }, + { + "type": "operator", + "start": 58516, + "end": 58517, + "value": "%" + }, + { + "type": "brace", + "start": 58517, + "end": 58518, + "value": ")" + }, + { + "type": "whitespace", + "start": 58518, + "end": 58521, + "value": "\n " + }, + { + "type": "operator", + "start": 58521, + "end": 58523, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58523, + "end": 58524, + "value": " " + }, + { + "type": "word", + "start": 58524, + "end": 58528, + "value": "line" + }, + { + "type": "brace", + "start": 58528, + "end": 58529, + "value": "(" + }, + { + "type": "brace", + "start": 58529, + "end": 58530, + "value": "[" + }, + { + "type": "whitespace", + "start": 58530, + "end": 58538, + "value": "\n " + }, + { + "type": "number", + "start": 58538, + "end": 58557, + "value": "0.09782890412897283" + }, + { + "type": "comma", + "start": 58557, + "end": 58558, + "value": "," + }, + { + "type": "whitespace", + "start": 58558, + "end": 58566, + "value": "\n " + }, + { + "type": "number", + "start": 58566, + "end": 58584, + "value": "0.9907667536909659" + }, + { + "type": "whitespace", + "start": 58584, + "end": 58590, + "value": "\n " + }, + { + "type": "brace", + "start": 58590, + "end": 58591, + "value": "]" + }, + { + "type": "comma", + "start": 58591, + "end": 58592, + "value": "," + }, + { + "type": "whitespace", + "start": 58592, + "end": 58593, + "value": " " + }, + { + "type": "operator", + "start": 58593, + "end": 58594, + "value": "%" + }, + { + "type": "brace", + "start": 58594, + "end": 58595, + "value": ")" + }, + { + "type": "whitespace", + "start": 58595, + "end": 58598, + "value": "\n " + }, + { + "type": "operator", + "start": 58598, + "end": 58600, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58600, + "end": 58601, + "value": " " + }, + { + "type": "word", + "start": 58601, + "end": 58605, + "value": "line" + }, + { + "type": "brace", + "start": 58605, + "end": 58606, + "value": "(" + }, + { + "type": "brace", + "start": 58606, + "end": 58607, + "value": "[" + }, + { + "type": "whitespace", + "start": 58607, + "end": 58615, + "value": "\n " + }, + { + "type": "number", + "start": 58615, + "end": 58633, + "value": "0.5286610085921146" + }, + { + "type": "comma", + "start": 58633, + "end": 58634, + "value": "," + }, + { + "type": "whitespace", + "start": 58634, + "end": 58642, + "value": "\n " + }, + { + "type": "operator", + "start": 58642, + "end": 58643, + "value": "-" + }, + { + "type": "number", + "start": 58643, + "end": 58661, + "value": "0.7924508308419256" + }, + { + "type": "whitespace", + "start": 58661, + "end": 58667, + "value": "\n " + }, + { + "type": "brace", + "start": 58667, + "end": 58668, + "value": "]" + }, + { + "type": "comma", + "start": 58668, + "end": 58669, + "value": "," + }, + { + "type": "whitespace", + "start": 58669, + "end": 58670, + "value": " " + }, + { + "type": "operator", + "start": 58670, + "end": 58671, + "value": "%" + }, + { + "type": "brace", + "start": 58671, + "end": 58672, + "value": ")" + }, + { + "type": "whitespace", + "start": 58672, + "end": 58675, + "value": "\n " + }, + { + "type": "operator", + "start": 58675, + "end": 58677, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58677, + "end": 58678, + "value": " " + }, + { + "type": "word", + "start": 58678, + "end": 58682, + "value": "line" + }, + { + "type": "brace", + "start": 58682, + "end": 58683, + "value": "(" + }, + { + "type": "brace", + "start": 58683, + "end": 58684, + "value": "[" + }, + { + "type": "whitespace", + "start": 58684, + "end": 58692, + "value": "\n " + }, + { + "type": "number", + "start": 58692, + "end": 58710, + "value": "0.3789978184503342" + }, + { + "type": "comma", + "start": 58710, + "end": 58711, + "value": "," + }, + { + "type": "whitespace", + "start": 58711, + "end": 58719, + "value": "\n " + }, + { + "type": "number", + "start": 58719, + "end": 58738, + "value": "0.12396120576838676" + }, + { + "type": "whitespace", + "start": 58738, + "end": 58744, + "value": "\n " + }, + { + "type": "brace", + "start": 58744, + "end": 58745, + "value": "]" + }, + { + "type": "comma", + "start": 58745, + "end": 58746, + "value": "," + }, + { + "type": "whitespace", + "start": 58746, + "end": 58747, + "value": " " + }, + { + "type": "operator", + "start": 58747, + "end": 58748, + "value": "%" + }, + { + "type": "brace", + "start": 58748, + "end": 58749, + "value": ")" + }, + { + "type": "whitespace", + "start": 58749, + "end": 58752, + "value": "\n " + }, + { + "type": "operator", + "start": 58752, + "end": 58754, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58754, + "end": 58755, + "value": " " + }, + { + "type": "word", + "start": 58755, + "end": 58759, + "value": "line" + }, + { + "type": "brace", + "start": 58759, + "end": 58760, + "value": "(" + }, + { + "type": "brace", + "start": 58760, + "end": 58761, + "value": "[" + }, + { + "type": "whitespace", + "start": 58761, + "end": 58769, + "value": "\n " + }, + { + "type": "operator", + "start": 58769, + "end": 58770, + "value": "-" + }, + { + "type": "number", + "start": 58770, + "end": 58788, + "value": "0.9484912744890612" + }, + { + "type": "comma", + "start": 58788, + "end": 58789, + "value": "," + }, + { + "type": "whitespace", + "start": 58789, + "end": 58797, + "value": "\n " + }, + { + "type": "number", + "start": 58797, + "end": 58815, + "value": "0.6729649846476855" + }, + { + "type": "whitespace", + "start": 58815, + "end": 58821, + "value": "\n " + }, + { + "type": "brace", + "start": 58821, + "end": 58822, + "value": "]" + }, + { + "type": "comma", + "start": 58822, + "end": 58823, + "value": "," + }, + { + "type": "whitespace", + "start": 58823, + "end": 58824, + "value": " " + }, + { + "type": "operator", + "start": 58824, + "end": 58825, + "value": "%" + }, + { + "type": "brace", + "start": 58825, + "end": 58826, + "value": ")" + }, + { + "type": "whitespace", + "start": 58826, + "end": 58829, + "value": "\n " + }, + { + "type": "operator", + "start": 58829, + "end": 58831, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58831, + "end": 58832, + "value": " " + }, + { + "type": "word", + "start": 58832, + "end": 58836, + "value": "line" + }, + { + "type": "brace", + "start": 58836, + "end": 58837, + "value": "(" + }, + { + "type": "brace", + "start": 58837, + "end": 58838, + "value": "[" + }, + { + "type": "whitespace", + "start": 58838, + "end": 58846, + "value": "\n " + }, + { + "type": "number", + "start": 58846, + "end": 58864, + "value": "0.7451758753425153" + }, + { + "type": "comma", + "start": 58864, + "end": 58865, + "value": "," + }, + { + "type": "whitespace", + "start": 58865, + "end": 58873, + "value": "\n " + }, + { + "type": "operator", + "start": 58873, + "end": 58874, + "value": "-" + }, + { + "type": "number", + "start": 58874, + "end": 58893, + "value": "0.21318737562458967" + }, + { + "type": "whitespace", + "start": 58893, + "end": 58899, + "value": "\n " + }, + { + "type": "brace", + "start": 58899, + "end": 58900, + "value": "]" + }, + { + "type": "comma", + "start": 58900, + "end": 58901, + "value": "," + }, + { + "type": "whitespace", + "start": 58901, + "end": 58902, + "value": " " + }, + { + "type": "operator", + "start": 58902, + "end": 58903, + "value": "%" + }, + { + "type": "brace", + "start": 58903, + "end": 58904, + "value": ")" + }, + { + "type": "whitespace", + "start": 58904, + "end": 58907, + "value": "\n " + }, + { + "type": "operator", + "start": 58907, + "end": 58909, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58909, + "end": 58910, + "value": " " + }, + { + "type": "word", + "start": 58910, + "end": 58914, + "value": "line" + }, + { + "type": "brace", + "start": 58914, + "end": 58915, + "value": "(" + }, + { + "type": "brace", + "start": 58915, + "end": 58916, + "value": "[" + }, + { + "type": "whitespace", + "start": 58916, + "end": 58924, + "value": "\n " + }, + { + "type": "number", + "start": 58924, + "end": 58942, + "value": "0.1873200727251887" + }, + { + "type": "comma", + "start": 58942, + "end": 58943, + "value": "," + }, + { + "type": "whitespace", + "start": 58943, + "end": 58951, + "value": "\n " + }, + { + "type": "operator", + "start": 58951, + "end": 58952, + "value": "-" + }, + { + "type": "number", + "start": 58952, + "end": 58971, + "value": "0.15961374297992448" + }, + { + "type": "whitespace", + "start": 58971, + "end": 58977, + "value": "\n " + }, + { + "type": "brace", + "start": 58977, + "end": 58978, + "value": "]" + }, + { + "type": "comma", + "start": 58978, + "end": 58979, + "value": "," + }, + { + "type": "whitespace", + "start": 58979, + "end": 58980, + "value": " " + }, + { + "type": "operator", + "start": 58980, + "end": 58981, + "value": "%" + }, + { + "type": "brace", + "start": 58981, + "end": 58982, + "value": ")" + }, + { + "type": "whitespace", + "start": 58982, + "end": 58985, + "value": "\n " + }, + { + "type": "operator", + "start": 58985, + "end": 58987, + "value": "|>" + }, + { + "type": "whitespace", + "start": 58987, + "end": 58988, + "value": " " + }, + { + "type": "word", + "start": 58988, + "end": 58992, + "value": "line" + }, + { + "type": "brace", + "start": 58992, + "end": 58993, + "value": "(" + }, + { + "type": "brace", + "start": 58993, + "end": 58994, + "value": "[" + }, + { + "type": "whitespace", + "start": 58994, + "end": 59002, + "value": "\n " + }, + { + "type": "operator", + "start": 59002, + "end": 59003, + "value": "-" + }, + { + "type": "number", + "start": 59003, + "end": 59022, + "value": "0.05729464924537564" + }, + { + "type": "comma", + "start": 59022, + "end": 59023, + "value": "," + }, + { + "type": "whitespace", + "start": 59023, + "end": 59031, + "value": "\n " + }, + { + "type": "operator", + "start": 59031, + "end": 59032, + "value": "-" + }, + { + "type": "number", + "start": 59032, + "end": 59050, + "value": "0.5436345558508746" + }, + { + "type": "whitespace", + "start": 59050, + "end": 59056, + "value": "\n " + }, + { + "type": "brace", + "start": 59056, + "end": 59057, + "value": "]" + }, + { + "type": "comma", + "start": 59057, + "end": 59058, + "value": "," + }, + { + "type": "whitespace", + "start": 59058, + "end": 59059, + "value": " " + }, + { + "type": "operator", + "start": 59059, + "end": 59060, + "value": "%" + }, + { + "type": "brace", + "start": 59060, + "end": 59061, + "value": ")" + }, + { + "type": "whitespace", + "start": 59061, + "end": 59064, + "value": "\n " + }, + { + "type": "operator", + "start": 59064, + "end": 59066, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59066, + "end": 59067, + "value": " " + }, + { + "type": "word", + "start": 59067, + "end": 59071, + "value": "line" + }, + { + "type": "brace", + "start": 59071, + "end": 59072, + "value": "(" + }, + { + "type": "brace", + "start": 59072, + "end": 59073, + "value": "[" + }, + { + "type": "whitespace", + "start": 59073, + "end": 59081, + "value": "\n " + }, + { + "type": "operator", + "start": 59081, + "end": 59082, + "value": "-" + }, + { + "type": "number", + "start": 59082, + "end": 59101, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 59101, + "end": 59102, + "value": "," + }, + { + "type": "whitespace", + "start": 59102, + "end": 59110, + "value": "\n " + }, + { + "type": "operator", + "start": 59110, + "end": 59111, + "value": "-" + }, + { + "type": "number", + "start": 59111, + "end": 59129, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 59129, + "end": 59135, + "value": "\n " + }, + { + "type": "brace", + "start": 59135, + "end": 59136, + "value": "]" + }, + { + "type": "comma", + "start": 59136, + "end": 59137, + "value": "," + }, + { + "type": "whitespace", + "start": 59137, + "end": 59138, + "value": " " + }, + { + "type": "operator", + "start": 59138, + "end": 59139, + "value": "%" + }, + { + "type": "brace", + "start": 59139, + "end": 59140, + "value": ")" + }, + { + "type": "whitespace", + "start": 59140, + "end": 59143, + "value": "\n " + }, + { + "type": "operator", + "start": 59143, + "end": 59145, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59145, + "end": 59146, + "value": " " + }, + { + "type": "word", + "start": 59146, + "end": 59150, + "value": "line" + }, + { + "type": "brace", + "start": 59150, + "end": 59151, + "value": "(" + }, + { + "type": "brace", + "start": 59151, + "end": 59152, + "value": "[" + }, + { + "type": "whitespace", + "start": 59152, + "end": 59160, + "value": "\n " + }, + { + "type": "operator", + "start": 59160, + "end": 59161, + "value": "-" + }, + { + "type": "number", + "start": 59161, + "end": 59180, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 59180, + "end": 59181, + "value": "," + }, + { + "type": "whitespace", + "start": 59181, + "end": 59189, + "value": "\n " + }, + { + "type": "operator", + "start": 59189, + "end": 59190, + "value": "-" + }, + { + "type": "number", + "start": 59190, + "end": 59208, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 59208, + "end": 59214, + "value": "\n " + }, + { + "type": "brace", + "start": 59214, + "end": 59215, + "value": "]" + }, + { + "type": "comma", + "start": 59215, + "end": 59216, + "value": "," + }, + { + "type": "whitespace", + "start": 59216, + "end": 59217, + "value": " " + }, + { + "type": "operator", + "start": 59217, + "end": 59218, + "value": "%" + }, + { + "type": "brace", + "start": 59218, + "end": 59219, + "value": ")" + }, + { + "type": "whitespace", + "start": 59219, + "end": 59222, + "value": "\n " + }, + { + "type": "operator", + "start": 59222, + "end": 59224, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59224, + "end": 59225, + "value": " " + }, + { + "type": "word", + "start": 59225, + "end": 59229, + "value": "line" + }, + { + "type": "brace", + "start": 59229, + "end": 59230, + "value": "(" + }, + { + "type": "brace", + "start": 59230, + "end": 59231, + "value": "[" + }, + { + "type": "number", + "start": 59231, + "end": 59249, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 59249, + "end": 59250, + "value": "," + }, + { + "type": "whitespace", + "start": 59250, + "end": 59251, + "value": " " + }, + { + "type": "number", + "start": 59251, + "end": 59269, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 59269, + "end": 59270, + "value": "]" + }, + { + "type": "comma", + "start": 59270, + "end": 59271, + "value": "," + }, + { + "type": "whitespace", + "start": 59271, + "end": 59272, + "value": " " + }, + { + "type": "operator", + "start": 59272, + "end": 59273, + "value": "%" + }, + { + "type": "brace", + "start": 59273, + "end": 59274, + "value": ")" + }, + { + "type": "whitespace", + "start": 59274, + "end": 59277, + "value": "\n " + }, + { + "type": "operator", + "start": 59277, + "end": 59279, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59279, + "end": 59280, + "value": " " + }, + { + "type": "word", + "start": 59280, + "end": 59284, + "value": "line" + }, + { + "type": "brace", + "start": 59284, + "end": 59285, + "value": "(" + }, + { + "type": "brace", + "start": 59285, + "end": 59286, + "value": "[" + }, + { + "type": "whitespace", + "start": 59286, + "end": 59294, + "value": "\n " + }, + { + "type": "operator", + "start": 59294, + "end": 59295, + "value": "-" + }, + { + "type": "number", + "start": 59295, + "end": 59313, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 59313, + "end": 59314, + "value": "," + }, + { + "type": "whitespace", + "start": 59314, + "end": 59322, + "value": "\n " + }, + { + "type": "number", + "start": 59322, + "end": 59341, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 59341, + "end": 59347, + "value": "\n " + }, + { + "type": "brace", + "start": 59347, + "end": 59348, + "value": "]" + }, + { + "type": "comma", + "start": 59348, + "end": 59349, + "value": "," + }, + { + "type": "whitespace", + "start": 59349, + "end": 59350, + "value": " " + }, + { + "type": "operator", + "start": 59350, + "end": 59351, + "value": "%" + }, + { + "type": "brace", + "start": 59351, + "end": 59352, + "value": ")" + }, + { + "type": "whitespace", + "start": 59352, + "end": 59355, + "value": "\n " + }, + { + "type": "operator", + "start": 59355, + "end": 59357, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59357, + "end": 59358, + "value": " " + }, + { + "type": "word", + "start": 59358, + "end": 59362, + "value": "line" + }, + { + "type": "brace", + "start": 59362, + "end": 59363, + "value": "(" + }, + { + "type": "brace", + "start": 59363, + "end": 59364, + "value": "[" + }, + { + "type": "whitespace", + "start": 59364, + "end": 59372, + "value": "\n " + }, + { + "type": "operator", + "start": 59372, + "end": 59373, + "value": "-" + }, + { + "type": "number", + "start": 59373, + "end": 59391, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 59391, + "end": 59392, + "value": "," + }, + { + "type": "whitespace", + "start": 59392, + "end": 59400, + "value": "\n " + }, + { + "type": "number", + "start": 59400, + "end": 59418, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 59418, + "end": 59424, + "value": "\n " + }, + { + "type": "brace", + "start": 59424, + "end": 59425, + "value": "]" + }, + { + "type": "comma", + "start": 59425, + "end": 59426, + "value": "," + }, + { + "type": "whitespace", + "start": 59426, + "end": 59427, + "value": " " + }, + { + "type": "operator", + "start": 59427, + "end": 59428, + "value": "%" + }, + { + "type": "brace", + "start": 59428, + "end": 59429, + "value": ")" + }, + { + "type": "whitespace", + "start": 59429, + "end": 59432, + "value": "\n " + }, + { + "type": "operator", + "start": 59432, + "end": 59434, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59434, + "end": 59435, + "value": " " + }, + { + "type": "word", + "start": 59435, + "end": 59439, + "value": "line" + }, + { + "type": "brace", + "start": 59439, + "end": 59440, + "value": "(" + }, + { + "type": "brace", + "start": 59440, + "end": 59441, + "value": "[" + }, + { + "type": "whitespace", + "start": 59441, + "end": 59449, + "value": "\n " + }, + { + "type": "operator", + "start": 59449, + "end": 59450, + "value": "-" + }, + { + "type": "number", + "start": 59450, + "end": 59468, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 59468, + "end": 59469, + "value": "," + }, + { + "type": "whitespace", + "start": 59469, + "end": 59477, + "value": "\n " + }, + { + "type": "number", + "start": 59477, + "end": 59495, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 59495, + "end": 59501, + "value": "\n " + }, + { + "type": "brace", + "start": 59501, + "end": 59502, + "value": "]" + }, + { + "type": "comma", + "start": 59502, + "end": 59503, + "value": "," + }, + { + "type": "whitespace", + "start": 59503, + "end": 59504, + "value": " " + }, + { + "type": "operator", + "start": 59504, + "end": 59505, + "value": "%" + }, + { + "type": "brace", + "start": 59505, + "end": 59506, + "value": ")" + }, + { + "type": "whitespace", + "start": 59506, + "end": 59509, + "value": "\n " + }, + { + "type": "operator", + "start": 59509, + "end": 59511, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59511, + "end": 59512, + "value": " " + }, + { + "type": "word", + "start": 59512, + "end": 59516, + "value": "line" + }, + { + "type": "brace", + "start": 59516, + "end": 59517, + "value": "(" + }, + { + "type": "brace", + "start": 59517, + "end": 59518, + "value": "[" + }, + { + "type": "whitespace", + "start": 59518, + "end": 59526, + "value": "\n " + }, + { + "type": "operator", + "start": 59526, + "end": 59527, + "value": "-" + }, + { + "type": "number", + "start": 59527, + "end": 59545, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 59545, + "end": 59546, + "value": "," + }, + { + "type": "whitespace", + "start": 59546, + "end": 59554, + "value": "\n " + }, + { + "type": "operator", + "start": 59554, + "end": 59555, + "value": "-" + }, + { + "type": "number", + "start": 59555, + "end": 59574, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 59574, + "end": 59580, + "value": "\n " + }, + { + "type": "brace", + "start": 59580, + "end": 59581, + "value": "]" + }, + { + "type": "comma", + "start": 59581, + "end": 59582, + "value": "," + }, + { + "type": "whitespace", + "start": 59582, + "end": 59583, + "value": " " + }, + { + "type": "operator", + "start": 59583, + "end": 59584, + "value": "%" + }, + { + "type": "brace", + "start": 59584, + "end": 59585, + "value": ")" + }, + { + "type": "whitespace", + "start": 59585, + "end": 59588, + "value": "\n " + }, + { + "type": "operator", + "start": 59588, + "end": 59590, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59590, + "end": 59591, + "value": " " + }, + { + "type": "word", + "start": 59591, + "end": 59595, + "value": "line" + }, + { + "type": "brace", + "start": 59595, + "end": 59596, + "value": "(" + }, + { + "type": "brace", + "start": 59596, + "end": 59597, + "value": "[" + }, + { + "type": "whitespace", + "start": 59597, + "end": 59605, + "value": "\n " + }, + { + "type": "number", + "start": 59605, + "end": 59624, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 59624, + "end": 59625, + "value": "," + }, + { + "type": "whitespace", + "start": 59625, + "end": 59633, + "value": "\n " + }, + { + "type": "number", + "start": 59633, + "end": 59652, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 59652, + "end": 59658, + "value": "\n " + }, + { + "type": "brace", + "start": 59658, + "end": 59659, + "value": "]" + }, + { + "type": "comma", + "start": 59659, + "end": 59660, + "value": "," + }, + { + "type": "whitespace", + "start": 59660, + "end": 59661, + "value": " " + }, + { + "type": "operator", + "start": 59661, + "end": 59662, + "value": "%" + }, + { + "type": "brace", + "start": 59662, + "end": 59663, + "value": ")" + }, + { + "type": "whitespace", + "start": 59663, + "end": 59666, + "value": "\n " + }, + { + "type": "operator", + "start": 59666, + "end": 59668, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59668, + "end": 59669, + "value": " " + }, + { + "type": "word", + "start": 59669, + "end": 59673, + "value": "line" + }, + { + "type": "brace", + "start": 59673, + "end": 59674, + "value": "(" + }, + { + "type": "brace", + "start": 59674, + "end": 59675, + "value": "[" + }, + { + "type": "whitespace", + "start": 59675, + "end": 59683, + "value": "\n " + }, + { + "type": "number", + "start": 59683, + "end": 59702, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 59702, + "end": 59703, + "value": "," + }, + { + "type": "whitespace", + "start": 59703, + "end": 59711, + "value": "\n " + }, + { + "type": "number", + "start": 59711, + "end": 59730, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 59730, + "end": 59736, + "value": "\n " + }, + { + "type": "brace", + "start": 59736, + "end": 59737, + "value": "]" + }, + { + "type": "comma", + "start": 59737, + "end": 59738, + "value": "," + }, + { + "type": "whitespace", + "start": 59738, + "end": 59739, + "value": " " + }, + { + "type": "operator", + "start": 59739, + "end": 59740, + "value": "%" + }, + { + "type": "brace", + "start": 59740, + "end": 59741, + "value": ")" + }, + { + "type": "whitespace", + "start": 59741, + "end": 59744, + "value": "\n " + }, + { + "type": "operator", + "start": 59744, + "end": 59746, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59746, + "end": 59747, + "value": " " + }, + { + "type": "word", + "start": 59747, + "end": 59751, + "value": "line" + }, + { + "type": "brace", + "start": 59751, + "end": 59752, + "value": "(" + }, + { + "type": "brace", + "start": 59752, + "end": 59753, + "value": "[" + }, + { + "type": "whitespace", + "start": 59753, + "end": 59761, + "value": "\n " + }, + { + "type": "operator", + "start": 59761, + "end": 59762, + "value": "-" + }, + { + "type": "number", + "start": 59762, + "end": 59781, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 59781, + "end": 59782, + "value": "," + }, + { + "type": "whitespace", + "start": 59782, + "end": 59790, + "value": "\n " + }, + { + "type": "number", + "start": 59790, + "end": 59808, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 59808, + "end": 59814, + "value": "\n " + }, + { + "type": "brace", + "start": 59814, + "end": 59815, + "value": "]" + }, + { + "type": "comma", + "start": 59815, + "end": 59816, + "value": "," + }, + { + "type": "whitespace", + "start": 59816, + "end": 59817, + "value": " " + }, + { + "type": "operator", + "start": 59817, + "end": 59818, + "value": "%" + }, + { + "type": "brace", + "start": 59818, + "end": 59819, + "value": ")" + }, + { + "type": "whitespace", + "start": 59819, + "end": 59822, + "value": "\n " + }, + { + "type": "operator", + "start": 59822, + "end": 59824, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59824, + "end": 59825, + "value": " " + }, + { + "type": "word", + "start": 59825, + "end": 59829, + "value": "line" + }, + { + "type": "brace", + "start": 59829, + "end": 59830, + "value": "(" + }, + { + "type": "brace", + "start": 59830, + "end": 59831, + "value": "[" + }, + { + "type": "whitespace", + "start": 59831, + "end": 59839, + "value": "\n " + }, + { + "type": "operator", + "start": 59839, + "end": 59840, + "value": "-" + }, + { + "type": "number", + "start": 59840, + "end": 59859, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 59859, + "end": 59860, + "value": "," + }, + { + "type": "whitespace", + "start": 59860, + "end": 59868, + "value": "\n " + }, + { + "type": "operator", + "start": 59868, + "end": 59869, + "value": "-" + }, + { + "type": "number", + "start": 59869, + "end": 59888, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 59888, + "end": 59894, + "value": "\n " + }, + { + "type": "brace", + "start": 59894, + "end": 59895, + "value": "]" + }, + { + "type": "comma", + "start": 59895, + "end": 59896, + "value": "," + }, + { + "type": "whitespace", + "start": 59896, + "end": 59897, + "value": " " + }, + { + "type": "operator", + "start": 59897, + "end": 59898, + "value": "%" + }, + { + "type": "brace", + "start": 59898, + "end": 59899, + "value": ")" + }, + { + "type": "whitespace", + "start": 59899, + "end": 59902, + "value": "\n " + }, + { + "type": "operator", + "start": 59902, + "end": 59904, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59904, + "end": 59905, + "value": " " + }, + { + "type": "word", + "start": 59905, + "end": 59909, + "value": "line" + }, + { + "type": "brace", + "start": 59909, + "end": 59910, + "value": "(" + }, + { + "type": "brace", + "start": 59910, + "end": 59911, + "value": "[" + }, + { + "type": "whitespace", + "start": 59911, + "end": 59919, + "value": "\n " + }, + { + "type": "number", + "start": 59919, + "end": 59937, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 59937, + "end": 59938, + "value": "," + }, + { + "type": "whitespace", + "start": 59938, + "end": 59946, + "value": "\n " + }, + { + "type": "operator", + "start": 59946, + "end": 59947, + "value": "-" + }, + { + "type": "number", + "start": 59947, + "end": 59966, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 59966, + "end": 59972, + "value": "\n " + }, + { + "type": "brace", + "start": 59972, + "end": 59973, + "value": "]" + }, + { + "type": "comma", + "start": 59973, + "end": 59974, + "value": "," + }, + { + "type": "whitespace", + "start": 59974, + "end": 59975, + "value": " " + }, + { + "type": "operator", + "start": 59975, + "end": 59976, + "value": "%" + }, + { + "type": "brace", + "start": 59976, + "end": 59977, + "value": ")" + }, + { + "type": "whitespace", + "start": 59977, + "end": 59980, + "value": "\n " + }, + { + "type": "operator", + "start": 59980, + "end": 59982, + "value": "|>" + }, + { + "type": "whitespace", + "start": 59982, + "end": 59983, + "value": " " + }, + { + "type": "word", + "start": 59983, + "end": 59987, + "value": "line" + }, + { + "type": "brace", + "start": 59987, + "end": 59988, + "value": "(" + }, + { + "type": "brace", + "start": 59988, + "end": 59989, + "value": "[" + }, + { + "type": "whitespace", + "start": 59989, + "end": 59997, + "value": "\n " + }, + { + "type": "number", + "start": 59997, + "end": 60018, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 60018, + "end": 60019, + "value": "," + }, + { + "type": "whitespace", + "start": 60019, + "end": 60027, + "value": "\n " + }, + { + "type": "operator", + "start": 60027, + "end": 60028, + "value": "-" + }, + { + "type": "number", + "start": 60028, + "end": 60046, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 60046, + "end": 60052, + "value": "\n " + }, + { + "type": "brace", + "start": 60052, + "end": 60053, + "value": "]" + }, + { + "type": "comma", + "start": 60053, + "end": 60054, + "value": "," + }, + { + "type": "whitespace", + "start": 60054, + "end": 60055, + "value": " " + }, + { + "type": "operator", + "start": 60055, + "end": 60056, + "value": "%" + }, + { + "type": "brace", + "start": 60056, + "end": 60057, + "value": ")" + }, + { + "type": "whitespace", + "start": 60057, + "end": 60060, + "value": "\n " + }, + { + "type": "operator", + "start": 60060, + "end": 60062, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60062, + "end": 60063, + "value": " " + }, + { + "type": "word", + "start": 60063, + "end": 60067, + "value": "line" + }, + { + "type": "brace", + "start": 60067, + "end": 60068, + "value": "(" + }, + { + "type": "brace", + "start": 60068, + "end": 60069, + "value": "[" + }, + { + "type": "whitespace", + "start": 60069, + "end": 60077, + "value": "\n " + }, + { + "type": "number", + "start": 60077, + "end": 60095, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 60095, + "end": 60096, + "value": "," + }, + { + "type": "whitespace", + "start": 60096, + "end": 60104, + "value": "\n " + }, + { + "type": "operator", + "start": 60104, + "end": 60105, + "value": "-" + }, + { + "type": "number", + "start": 60105, + "end": 60123, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 60123, + "end": 60129, + "value": "\n " + }, + { + "type": "brace", + "start": 60129, + "end": 60130, + "value": "]" + }, + { + "type": "comma", + "start": 60130, + "end": 60131, + "value": "," + }, + { + "type": "whitespace", + "start": 60131, + "end": 60132, + "value": " " + }, + { + "type": "operator", + "start": 60132, + "end": 60133, + "value": "%" + }, + { + "type": "brace", + "start": 60133, + "end": 60134, + "value": ")" + }, + { + "type": "whitespace", + "start": 60134, + "end": 60137, + "value": "\n " + }, + { + "type": "operator", + "start": 60137, + "end": 60139, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60139, + "end": 60140, + "value": " " + }, + { + "type": "word", + "start": 60140, + "end": 60144, + "value": "line" + }, + { + "type": "brace", + "start": 60144, + "end": 60145, + "value": "(" + }, + { + "type": "brace", + "start": 60145, + "end": 60146, + "value": "[" + }, + { + "type": "whitespace", + "start": 60146, + "end": 60154, + "value": "\n " + }, + { + "type": "operator", + "start": 60154, + "end": 60155, + "value": "-" + }, + { + "type": "number", + "start": 60155, + "end": 60173, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 60173, + "end": 60174, + "value": "," + }, + { + "type": "whitespace", + "start": 60174, + "end": 60182, + "value": "\n " + }, + { + "type": "number", + "start": 60182, + "end": 60200, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 60200, + "end": 60206, + "value": "\n " + }, + { + "type": "brace", + "start": 60206, + "end": 60207, + "value": "]" + }, + { + "type": "comma", + "start": 60207, + "end": 60208, + "value": "," + }, + { + "type": "whitespace", + "start": 60208, + "end": 60209, + "value": " " + }, + { + "type": "operator", + "start": 60209, + "end": 60210, + "value": "%" + }, + { + "type": "brace", + "start": 60210, + "end": 60211, + "value": ")" + }, + { + "type": "whitespace", + "start": 60211, + "end": 60214, + "value": "\n " + }, + { + "type": "operator", + "start": 60214, + "end": 60216, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60216, + "end": 60217, + "value": " " + }, + { + "type": "word", + "start": 60217, + "end": 60221, + "value": "line" + }, + { + "type": "brace", + "start": 60221, + "end": 60222, + "value": "(" + }, + { + "type": "brace", + "start": 60222, + "end": 60223, + "value": "[" + }, + { + "type": "number", + "start": 60223, + "end": 60241, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 60241, + "end": 60242, + "value": "," + }, + { + "type": "whitespace", + "start": 60242, + "end": 60243, + "value": " " + }, + { + "type": "number", + "start": 60243, + "end": 60261, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 60261, + "end": 60262, + "value": "]" + }, + { + "type": "comma", + "start": 60262, + "end": 60263, + "value": "," + }, + { + "type": "whitespace", + "start": 60263, + "end": 60264, + "value": " " + }, + { + "type": "operator", + "start": 60264, + "end": 60265, + "value": "%" + }, + { + "type": "brace", + "start": 60265, + "end": 60266, + "value": ")" + }, + { + "type": "whitespace", + "start": 60266, + "end": 60269, + "value": "\n " + }, + { + "type": "operator", + "start": 60269, + "end": 60271, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60271, + "end": 60272, + "value": " " + }, + { + "type": "word", + "start": 60272, + "end": 60276, + "value": "line" + }, + { + "type": "brace", + "start": 60276, + "end": 60277, + "value": "(" + }, + { + "type": "brace", + "start": 60277, + "end": 60278, + "value": "[" + }, + { + "type": "whitespace", + "start": 60278, + "end": 60286, + "value": "\n " + }, + { + "type": "operator", + "start": 60286, + "end": 60287, + "value": "-" + }, + { + "type": "number", + "start": 60287, + "end": 60306, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 60306, + "end": 60307, + "value": "," + }, + { + "type": "whitespace", + "start": 60307, + "end": 60315, + "value": "\n " + }, + { + "type": "number", + "start": 60315, + "end": 60335, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 60335, + "end": 60341, + "value": "\n " + }, + { + "type": "brace", + "start": 60341, + "end": 60342, + "value": "]" + }, + { + "type": "comma", + "start": 60342, + "end": 60343, + "value": "," + }, + { + "type": "whitespace", + "start": 60343, + "end": 60344, + "value": " " + }, + { + "type": "operator", + "start": 60344, + "end": 60345, + "value": "%" + }, + { + "type": "brace", + "start": 60345, + "end": 60346, + "value": ")" + }, + { + "type": "whitespace", + "start": 60346, + "end": 60349, + "value": "\n " + }, + { + "type": "operator", + "start": 60349, + "end": 60351, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60351, + "end": 60352, + "value": " " + }, + { + "type": "word", + "start": 60352, + "end": 60356, + "value": "line" + }, + { + "type": "brace", + "start": 60356, + "end": 60357, + "value": "(" + }, + { + "type": "brace", + "start": 60357, + "end": 60358, + "value": "[" + }, + { + "type": "whitespace", + "start": 60358, + "end": 60366, + "value": "\n " + }, + { + "type": "operator", + "start": 60366, + "end": 60367, + "value": "-" + }, + { + "type": "number", + "start": 60367, + "end": 60385, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 60385, + "end": 60386, + "value": "," + }, + { + "type": "whitespace", + "start": 60386, + "end": 60394, + "value": "\n " + }, + { + "type": "operator", + "start": 60394, + "end": 60395, + "value": "-" + }, + { + "type": "number", + "start": 60395, + "end": 60414, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 60414, + "end": 60420, + "value": "\n " + }, + { + "type": "brace", + "start": 60420, + "end": 60421, + "value": "]" + }, + { + "type": "comma", + "start": 60421, + "end": 60422, + "value": "," + }, + { + "type": "whitespace", + "start": 60422, + "end": 60423, + "value": " " + }, + { + "type": "operator", + "start": 60423, + "end": 60424, + "value": "%" + }, + { + "type": "brace", + "start": 60424, + "end": 60425, + "value": ")" + }, + { + "type": "whitespace", + "start": 60425, + "end": 60428, + "value": "\n " + }, + { + "type": "operator", + "start": 60428, + "end": 60430, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60430, + "end": 60431, + "value": " " + }, + { + "type": "word", + "start": 60431, + "end": 60435, + "value": "line" + }, + { + "type": "brace", + "start": 60435, + "end": 60436, + "value": "(" + }, + { + "type": "brace", + "start": 60436, + "end": 60437, + "value": "[" + }, + { + "type": "whitespace", + "start": 60437, + "end": 60445, + "value": "\n " + }, + { + "type": "operator", + "start": 60445, + "end": 60446, + "value": "-" + }, + { + "type": "number", + "start": 60446, + "end": 60464, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 60464, + "end": 60465, + "value": "," + }, + { + "type": "whitespace", + "start": 60465, + "end": 60473, + "value": "\n " + }, + { + "type": "operator", + "start": 60473, + "end": 60474, + "value": "-" + }, + { + "type": "number", + "start": 60474, + "end": 60493, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 60493, + "end": 60499, + "value": "\n " + }, + { + "type": "brace", + "start": 60499, + "end": 60500, + "value": "]" + }, + { + "type": "comma", + "start": 60500, + "end": 60501, + "value": "," + }, + { + "type": "whitespace", + "start": 60501, + "end": 60502, + "value": " " + }, + { + "type": "operator", + "start": 60502, + "end": 60503, + "value": "%" + }, + { + "type": "brace", + "start": 60503, + "end": 60504, + "value": ")" + }, + { + "type": "whitespace", + "start": 60504, + "end": 60507, + "value": "\n " + }, + { + "type": "operator", + "start": 60507, + "end": 60509, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60509, + "end": 60510, + "value": " " + }, + { + "type": "word", + "start": 60510, + "end": 60514, + "value": "line" + }, + { + "type": "brace", + "start": 60514, + "end": 60515, + "value": "(" + }, + { + "type": "brace", + "start": 60515, + "end": 60516, + "value": "[" + }, + { + "type": "number", + "start": 60516, + "end": 60533, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 60533, + "end": 60534, + "value": "," + }, + { + "type": "whitespace", + "start": 60534, + "end": 60535, + "value": " " + }, + { + "type": "number", + "start": 60535, + "end": 60553, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 60553, + "end": 60554, + "value": "]" + }, + { + "type": "comma", + "start": 60554, + "end": 60555, + "value": "," + }, + { + "type": "whitespace", + "start": 60555, + "end": 60556, + "value": " " + }, + { + "type": "operator", + "start": 60556, + "end": 60557, + "value": "%" + }, + { + "type": "brace", + "start": 60557, + "end": 60558, + "value": ")" + }, + { + "type": "whitespace", + "start": 60558, + "end": 60561, + "value": "\n " + }, + { + "type": "operator", + "start": 60561, + "end": 60563, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60563, + "end": 60564, + "value": " " + }, + { + "type": "word", + "start": 60564, + "end": 60568, + "value": "line" + }, + { + "type": "brace", + "start": 60568, + "end": 60569, + "value": "(" + }, + { + "type": "brace", + "start": 60569, + "end": 60570, + "value": "[" + }, + { + "type": "whitespace", + "start": 60570, + "end": 60578, + "value": "\n " + }, + { + "type": "number", + "start": 60578, + "end": 60597, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 60597, + "end": 60598, + "value": "," + }, + { + "type": "whitespace", + "start": 60598, + "end": 60606, + "value": "\n " + }, + { + "type": "operator", + "start": 60606, + "end": 60607, + "value": "-" + }, + { + "type": "number", + "start": 60607, + "end": 60626, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 60626, + "end": 60632, + "value": "\n " + }, + { + "type": "brace", + "start": 60632, + "end": 60633, + "value": "]" + }, + { + "type": "comma", + "start": 60633, + "end": 60634, + "value": "," + }, + { + "type": "whitespace", + "start": 60634, + "end": 60635, + "value": " " + }, + { + "type": "operator", + "start": 60635, + "end": 60636, + "value": "%" + }, + { + "type": "brace", + "start": 60636, + "end": 60637, + "value": ")" + }, + { + "type": "whitespace", + "start": 60637, + "end": 60640, + "value": "\n " + }, + { + "type": "operator", + "start": 60640, + "end": 60642, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60642, + "end": 60643, + "value": " " + }, + { + "type": "word", + "start": 60643, + "end": 60647, + "value": "line" + }, + { + "type": "brace", + "start": 60647, + "end": 60648, + "value": "(" + }, + { + "type": "brace", + "start": 60648, + "end": 60649, + "value": "[" + }, + { + "type": "number", + "start": 60649, + "end": 60667, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 60667, + "end": 60668, + "value": "," + }, + { + "type": "whitespace", + "start": 60668, + "end": 60669, + "value": " " + }, + { + "type": "number", + "start": 60669, + "end": 60686, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 60686, + "end": 60687, + "value": "]" + }, + { + "type": "comma", + "start": 60687, + "end": 60688, + "value": "," + }, + { + "type": "whitespace", + "start": 60688, + "end": 60689, + "value": " " + }, + { + "type": "operator", + "start": 60689, + "end": 60690, + "value": "%" + }, + { + "type": "brace", + "start": 60690, + "end": 60691, + "value": ")" + }, + { + "type": "whitespace", + "start": 60691, + "end": 60694, + "value": "\n " + }, + { + "type": "operator", + "start": 60694, + "end": 60696, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60696, + "end": 60697, + "value": " " + }, + { + "type": "word", + "start": 60697, + "end": 60701, + "value": "line" + }, + { + "type": "brace", + "start": 60701, + "end": 60702, + "value": "(" + }, + { + "type": "brace", + "start": 60702, + "end": 60703, + "value": "[" + }, + { + "type": "whitespace", + "start": 60703, + "end": 60711, + "value": "\n " + }, + { + "type": "number", + "start": 60711, + "end": 60730, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 60730, + "end": 60731, + "value": "," + }, + { + "type": "whitespace", + "start": 60731, + "end": 60739, + "value": "\n " + }, + { + "type": "operator", + "start": 60739, + "end": 60740, + "value": "-" + }, + { + "type": "number", + "start": 60740, + "end": 60758, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 60758, + "end": 60764, + "value": "\n " + }, + { + "type": "brace", + "start": 60764, + "end": 60765, + "value": "]" + }, + { + "type": "comma", + "start": 60765, + "end": 60766, + "value": "," + }, + { + "type": "whitespace", + "start": 60766, + "end": 60767, + "value": " " + }, + { + "type": "operator", + "start": 60767, + "end": 60768, + "value": "%" + }, + { + "type": "brace", + "start": 60768, + "end": 60769, + "value": ")" + }, + { + "type": "whitespace", + "start": 60769, + "end": 60772, + "value": "\n " + }, + { + "type": "operator", + "start": 60772, + "end": 60774, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60774, + "end": 60775, + "value": " " + }, + { + "type": "word", + "start": 60775, + "end": 60779, + "value": "line" + }, + { + "type": "brace", + "start": 60779, + "end": 60780, + "value": "(" + }, + { + "type": "brace", + "start": 60780, + "end": 60781, + "value": "[" + }, + { + "type": "number", + "start": 60781, + "end": 60799, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 60799, + "end": 60800, + "value": "," + }, + { + "type": "whitespace", + "start": 60800, + "end": 60801, + "value": " " + }, + { + "type": "number", + "start": 60801, + "end": 60819, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 60819, + "end": 60820, + "value": "]" + }, + { + "type": "comma", + "start": 60820, + "end": 60821, + "value": "," + }, + { + "type": "whitespace", + "start": 60821, + "end": 60822, + "value": " " + }, + { + "type": "operator", + "start": 60822, + "end": 60823, + "value": "%" + }, + { + "type": "brace", + "start": 60823, + "end": 60824, + "value": ")" + }, + { + "type": "whitespace", + "start": 60824, + "end": 60827, + "value": "\n " + }, + { + "type": "operator", + "start": 60827, + "end": 60829, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60829, + "end": 60830, + "value": " " + }, + { + "type": "word", + "start": 60830, + "end": 60834, + "value": "line" + }, + { + "type": "brace", + "start": 60834, + "end": 60835, + "value": "(" + }, + { + "type": "brace", + "start": 60835, + "end": 60836, + "value": "[" + }, + { + "type": "whitespace", + "start": 60836, + "end": 60844, + "value": "\n " + }, + { + "type": "number", + "start": 60844, + "end": 60862, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 60862, + "end": 60863, + "value": "," + }, + { + "type": "whitespace", + "start": 60863, + "end": 60871, + "value": "\n " + }, + { + "type": "number", + "start": 60871, + "end": 60890, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 60890, + "end": 60896, + "value": "\n " + }, + { + "type": "brace", + "start": 60896, + "end": 60897, + "value": "]" + }, + { + "type": "comma", + "start": 60897, + "end": 60898, + "value": "," + }, + { + "type": "whitespace", + "start": 60898, + "end": 60899, + "value": " " + }, + { + "type": "operator", + "start": 60899, + "end": 60900, + "value": "%" + }, + { + "type": "brace", + "start": 60900, + "end": 60901, + "value": ")" + }, + { + "type": "whitespace", + "start": 60901, + "end": 60904, + "value": "\n " + }, + { + "type": "operator", + "start": 60904, + "end": 60906, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60906, + "end": 60907, + "value": " " + }, + { + "type": "word", + "start": 60907, + "end": 60911, + "value": "line" + }, + { + "type": "brace", + "start": 60911, + "end": 60912, + "value": "(" + }, + { + "type": "brace", + "start": 60912, + "end": 60913, + "value": "[" + }, + { + "type": "number", + "start": 60913, + "end": 60931, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 60931, + "end": 60932, + "value": "," + }, + { + "type": "whitespace", + "start": 60932, + "end": 60933, + "value": " " + }, + { + "type": "number", + "start": 60933, + "end": 60951, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 60951, + "end": 60952, + "value": "]" + }, + { + "type": "comma", + "start": 60952, + "end": 60953, + "value": "," + }, + { + "type": "whitespace", + "start": 60953, + "end": 60954, + "value": " " + }, + { + "type": "operator", + "start": 60954, + "end": 60955, + "value": "%" + }, + { + "type": "brace", + "start": 60955, + "end": 60956, + "value": ")" + }, + { + "type": "whitespace", + "start": 60956, + "end": 60959, + "value": "\n " + }, + { + "type": "operator", + "start": 60959, + "end": 60961, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60961, + "end": 60962, + "value": " " + }, + { + "type": "word", + "start": 60962, + "end": 60966, + "value": "line" + }, + { + "type": "brace", + "start": 60966, + "end": 60967, + "value": "(" + }, + { + "type": "brace", + "start": 60967, + "end": 60968, + "value": "[" + }, + { + "type": "whitespace", + "start": 60968, + "end": 60976, + "value": "\n " + }, + { + "type": "operator", + "start": 60976, + "end": 60977, + "value": "-" + }, + { + "type": "number", + "start": 60977, + "end": 60996, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 60996, + "end": 60997, + "value": "," + }, + { + "type": "whitespace", + "start": 60997, + "end": 61005, + "value": "\n " + }, + { + "type": "operator", + "start": 61005, + "end": 61006, + "value": "-" + }, + { + "type": "number", + "start": 61006, + "end": 61024, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 61024, + "end": 61030, + "value": "\n " + }, + { + "type": "brace", + "start": 61030, + "end": 61031, + "value": "]" + }, + { + "type": "comma", + "start": 61031, + "end": 61032, + "value": "," + }, + { + "type": "whitespace", + "start": 61032, + "end": 61033, + "value": " " + }, + { + "type": "operator", + "start": 61033, + "end": 61034, + "value": "%" + }, + { + "type": "brace", + "start": 61034, + "end": 61035, + "value": ")" + }, + { + "type": "whitespace", + "start": 61035, + "end": 61038, + "value": "\n " + }, + { + "type": "operator", + "start": 61038, + "end": 61040, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61040, + "end": 61041, + "value": " " + }, + { + "type": "word", + "start": 61041, + "end": 61045, + "value": "line" + }, + { + "type": "brace", + "start": 61045, + "end": 61046, + "value": "(" + }, + { + "type": "brace", + "start": 61046, + "end": 61047, + "value": "[" + }, + { + "type": "whitespace", + "start": 61047, + "end": 61055, + "value": "\n " + }, + { + "type": "number", + "start": 61055, + "end": 61073, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 61073, + "end": 61074, + "value": "," + }, + { + "type": "whitespace", + "start": 61074, + "end": 61082, + "value": "\n " + }, + { + "type": "operator", + "start": 61082, + "end": 61083, + "value": "-" + }, + { + "type": "number", + "start": 61083, + "end": 61101, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 61101, + "end": 61107, + "value": "\n " + }, + { + "type": "brace", + "start": 61107, + "end": 61108, + "value": "]" + }, + { + "type": "comma", + "start": 61108, + "end": 61109, + "value": "," + }, + { + "type": "whitespace", + "start": 61109, + "end": 61110, + "value": " " + }, + { + "type": "operator", + "start": 61110, + "end": 61111, + "value": "%" + }, + { + "type": "brace", + "start": 61111, + "end": 61112, + "value": ")" + }, + { + "type": "whitespace", + "start": 61112, + "end": 61115, + "value": "\n " + }, + { + "type": "operator", + "start": 61115, + "end": 61117, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61117, + "end": 61118, + "value": " " + }, + { + "type": "word", + "start": 61118, + "end": 61122, + "value": "line" + }, + { + "type": "brace", + "start": 61122, + "end": 61123, + "value": "(" + }, + { + "type": "brace", + "start": 61123, + "end": 61124, + "value": "[" + }, + { + "type": "whitespace", + "start": 61124, + "end": 61132, + "value": "\n " + }, + { + "type": "operator", + "start": 61132, + "end": 61133, + "value": "-" + }, + { + "type": "number", + "start": 61133, + "end": 61151, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 61151, + "end": 61152, + "value": "," + }, + { + "type": "whitespace", + "start": 61152, + "end": 61160, + "value": "\n " + }, + { + "type": "operator", + "start": 61160, + "end": 61161, + "value": "-" + }, + { + "type": "number", + "start": 61161, + "end": 61179, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 61179, + "end": 61185, + "value": "\n " + }, + { + "type": "brace", + "start": 61185, + "end": 61186, + "value": "]" + }, + { + "type": "comma", + "start": 61186, + "end": 61187, + "value": "," + }, + { + "type": "whitespace", + "start": 61187, + "end": 61188, + "value": " " + }, + { + "type": "operator", + "start": 61188, + "end": 61189, + "value": "%" + }, + { + "type": "brace", + "start": 61189, + "end": 61190, + "value": ")" + }, + { + "type": "whitespace", + "start": 61190, + "end": 61193, + "value": "\n " + }, + { + "type": "operator", + "start": 61193, + "end": 61195, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61195, + "end": 61196, + "value": " " + }, + { + "type": "word", + "start": 61196, + "end": 61200, + "value": "line" + }, + { + "type": "brace", + "start": 61200, + "end": 61201, + "value": "(" + }, + { + "type": "brace", + "start": 61201, + "end": 61202, + "value": "[" + }, + { + "type": "whitespace", + "start": 61202, + "end": 61210, + "value": "\n " + }, + { + "type": "number", + "start": 61210, + "end": 61230, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 61230, + "end": 61231, + "value": "," + }, + { + "type": "whitespace", + "start": 61231, + "end": 61239, + "value": "\n " + }, + { + "type": "operator", + "start": 61239, + "end": 61240, + "value": "-" + }, + { + "type": "number", + "start": 61240, + "end": 61259, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 61259, + "end": 61265, + "value": "\n " + }, + { + "type": "brace", + "start": 61265, + "end": 61266, + "value": "]" + }, + { + "type": "comma", + "start": 61266, + "end": 61267, + "value": "," + }, + { + "type": "whitespace", + "start": 61267, + "end": 61268, + "value": " " + }, + { + "type": "operator", + "start": 61268, + "end": 61269, + "value": "%" + }, + { + "type": "brace", + "start": 61269, + "end": 61270, + "value": ")" + }, + { + "type": "whitespace", + "start": 61270, + "end": 61273, + "value": "\n " + }, + { + "type": "operator", + "start": 61273, + "end": 61275, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61275, + "end": 61276, + "value": " " + }, + { + "type": "word", + "start": 61276, + "end": 61280, + "value": "line" + }, + { + "type": "brace", + "start": 61280, + "end": 61281, + "value": "(" + }, + { + "type": "brace", + "start": 61281, + "end": 61282, + "value": "[" + }, + { + "type": "whitespace", + "start": 61282, + "end": 61290, + "value": "\n " + }, + { + "type": "number", + "start": 61290, + "end": 61309, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 61309, + "end": 61310, + "value": "," + }, + { + "type": "whitespace", + "start": 61310, + "end": 61318, + "value": "\n " + }, + { + "type": "operator", + "start": 61318, + "end": 61319, + "value": "-" + }, + { + "type": "number", + "start": 61319, + "end": 61338, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 61338, + "end": 61344, + "value": "\n " + }, + { + "type": "brace", + "start": 61344, + "end": 61345, + "value": "]" + }, + { + "type": "comma", + "start": 61345, + "end": 61346, + "value": "," + }, + { + "type": "whitespace", + "start": 61346, + "end": 61347, + "value": " " + }, + { + "type": "operator", + "start": 61347, + "end": 61348, + "value": "%" + }, + { + "type": "brace", + "start": 61348, + "end": 61349, + "value": ")" + }, + { + "type": "whitespace", + "start": 61349, + "end": 61352, + "value": "\n " + }, + { + "type": "operator", + "start": 61352, + "end": 61354, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61354, + "end": 61355, + "value": " " + }, + { + "type": "word", + "start": 61355, + "end": 61359, + "value": "line" + }, + { + "type": "brace", + "start": 61359, + "end": 61360, + "value": "(" + }, + { + "type": "brace", + "start": 61360, + "end": 61361, + "value": "[" + }, + { + "type": "whitespace", + "start": 61361, + "end": 61369, + "value": "\n " + }, + { + "type": "number", + "start": 61369, + "end": 61387, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 61387, + "end": 61388, + "value": "," + }, + { + "type": "whitespace", + "start": 61388, + "end": 61396, + "value": "\n " + }, + { + "type": "operator", + "start": 61396, + "end": 61397, + "value": "-" + }, + { + "type": "number", + "start": 61397, + "end": 61416, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 61416, + "end": 61422, + "value": "\n " + }, + { + "type": "brace", + "start": 61422, + "end": 61423, + "value": "]" + }, + { + "type": "comma", + "start": 61423, + "end": 61424, + "value": "," + }, + { + "type": "whitespace", + "start": 61424, + "end": 61425, + "value": " " + }, + { + "type": "operator", + "start": 61425, + "end": 61426, + "value": "%" + }, + { + "type": "brace", + "start": 61426, + "end": 61427, + "value": ")" + }, + { + "type": "whitespace", + "start": 61427, + "end": 61430, + "value": "\n " + }, + { + "type": "operator", + "start": 61430, + "end": 61432, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61432, + "end": 61433, + "value": " " + }, + { + "type": "word", + "start": 61433, + "end": 61437, + "value": "line" + }, + { + "type": "brace", + "start": 61437, + "end": 61438, + "value": "(" + }, + { + "type": "brace", + "start": 61438, + "end": 61439, + "value": "[" + }, + { + "type": "whitespace", + "start": 61439, + "end": 61447, + "value": "\n " + }, + { + "type": "operator", + "start": 61447, + "end": 61448, + "value": "-" + }, + { + "type": "number", + "start": 61448, + "end": 61466, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 61466, + "end": 61467, + "value": "," + }, + { + "type": "whitespace", + "start": 61467, + "end": 61475, + "value": "\n " + }, + { + "type": "operator", + "start": 61475, + "end": 61476, + "value": "-" + }, + { + "type": "number", + "start": 61476, + "end": 61494, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 61494, + "end": 61500, + "value": "\n " + }, + { + "type": "brace", + "start": 61500, + "end": 61501, + "value": "]" + }, + { + "type": "comma", + "start": 61501, + "end": 61502, + "value": "," + }, + { + "type": "whitespace", + "start": 61502, + "end": 61503, + "value": " " + }, + { + "type": "operator", + "start": 61503, + "end": 61504, + "value": "%" + }, + { + "type": "brace", + "start": 61504, + "end": 61505, + "value": ")" + }, + { + "type": "whitespace", + "start": 61505, + "end": 61508, + "value": "\n " + }, + { + "type": "operator", + "start": 61508, + "end": 61510, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61510, + "end": 61511, + "value": " " + }, + { + "type": "word", + "start": 61511, + "end": 61515, + "value": "line" + }, + { + "type": "brace", + "start": 61515, + "end": 61516, + "value": "(" + }, + { + "type": "brace", + "start": 61516, + "end": 61517, + "value": "[" + }, + { + "type": "number", + "start": 61517, + "end": 61535, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 61535, + "end": 61536, + "value": "," + }, + { + "type": "whitespace", + "start": 61536, + "end": 61537, + "value": " " + }, + { + "type": "number", + "start": 61537, + "end": 61555, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 61555, + "end": 61556, + "value": "]" + }, + { + "type": "comma", + "start": 61556, + "end": 61557, + "value": "," + }, + { + "type": "whitespace", + "start": 61557, + "end": 61558, + "value": " " + }, + { + "type": "operator", + "start": 61558, + "end": 61559, + "value": "%" + }, + { + "type": "brace", + "start": 61559, + "end": 61560, + "value": ")" + }, + { + "type": "whitespace", + "start": 61560, + "end": 61563, + "value": "\n " + }, + { + "type": "operator", + "start": 61563, + "end": 61565, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61565, + "end": 61566, + "value": " " + }, + { + "type": "word", + "start": 61566, + "end": 61570, + "value": "line" + }, + { + "type": "brace", + "start": 61570, + "end": 61571, + "value": "(" + }, + { + "type": "brace", + "start": 61571, + "end": 61572, + "value": "[" + }, + { + "type": "whitespace", + "start": 61572, + "end": 61580, + "value": "\n " + }, + { + "type": "number", + "start": 61580, + "end": 61598, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 61598, + "end": 61599, + "value": "," + }, + { + "type": "whitespace", + "start": 61599, + "end": 61607, + "value": "\n " + }, + { + "type": "number", + "start": 61607, + "end": 61626, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 61626, + "end": 61632, + "value": "\n " + }, + { + "type": "brace", + "start": 61632, + "end": 61633, + "value": "]" + }, + { + "type": "comma", + "start": 61633, + "end": 61634, + "value": "," + }, + { + "type": "whitespace", + "start": 61634, + "end": 61635, + "value": " " + }, + { + "type": "operator", + "start": 61635, + "end": 61636, + "value": "%" + }, + { + "type": "brace", + "start": 61636, + "end": 61637, + "value": ")" + }, + { + "type": "whitespace", + "start": 61637, + "end": 61640, + "value": "\n " + }, + { + "type": "operator", + "start": 61640, + "end": 61642, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61642, + "end": 61643, + "value": " " + }, + { + "type": "word", + "start": 61643, + "end": 61647, + "value": "line" + }, + { + "type": "brace", + "start": 61647, + "end": 61648, + "value": "(" + }, + { + "type": "brace", + "start": 61648, + "end": 61649, + "value": "[" + }, + { + "type": "whitespace", + "start": 61649, + "end": 61657, + "value": "\n " + }, + { + "type": "operator", + "start": 61657, + "end": 61658, + "value": "-" + }, + { + "type": "number", + "start": 61658, + "end": 61677, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 61677, + "end": 61678, + "value": "," + }, + { + "type": "whitespace", + "start": 61678, + "end": 61686, + "value": "\n " + }, + { + "type": "number", + "start": 61686, + "end": 61704, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 61704, + "end": 61710, + "value": "\n " + }, + { + "type": "brace", + "start": 61710, + "end": 61711, + "value": "]" + }, + { + "type": "comma", + "start": 61711, + "end": 61712, + "value": "," + }, + { + "type": "whitespace", + "start": 61712, + "end": 61713, + "value": " " + }, + { + "type": "operator", + "start": 61713, + "end": 61714, + "value": "%" + }, + { + "type": "brace", + "start": 61714, + "end": 61715, + "value": ")" + }, + { + "type": "whitespace", + "start": 61715, + "end": 61718, + "value": "\n " + }, + { + "type": "operator", + "start": 61718, + "end": 61720, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61720, + "end": 61721, + "value": " " + }, + { + "type": "word", + "start": 61721, + "end": 61725, + "value": "line" + }, + { + "type": "brace", + "start": 61725, + "end": 61726, + "value": "(" + }, + { + "type": "brace", + "start": 61726, + "end": 61727, + "value": "[" + }, + { + "type": "whitespace", + "start": 61727, + "end": 61735, + "value": "\n " + }, + { + "type": "operator", + "start": 61735, + "end": 61736, + "value": "-" + }, + { + "type": "number", + "start": 61736, + "end": 61755, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 61755, + "end": 61756, + "value": "," + }, + { + "type": "whitespace", + "start": 61756, + "end": 61764, + "value": "\n " + }, + { + "type": "operator", + "start": 61764, + "end": 61765, + "value": "-" + }, + { + "type": "number", + "start": 61765, + "end": 61784, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 61784, + "end": 61790, + "value": "\n " + }, + { + "type": "brace", + "start": 61790, + "end": 61791, + "value": "]" + }, + { + "type": "comma", + "start": 61791, + "end": 61792, + "value": "," + }, + { + "type": "whitespace", + "start": 61792, + "end": 61793, + "value": " " + }, + { + "type": "operator", + "start": 61793, + "end": 61794, + "value": "%" + }, + { + "type": "brace", + "start": 61794, + "end": 61795, + "value": ")" + }, + { + "type": "whitespace", + "start": 61795, + "end": 61798, + "value": "\n " + }, + { + "type": "operator", + "start": 61798, + "end": 61800, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61800, + "end": 61801, + "value": " " + }, + { + "type": "word", + "start": 61801, + "end": 61805, + "value": "line" + }, + { + "type": "brace", + "start": 61805, + "end": 61806, + "value": "(" + }, + { + "type": "brace", + "start": 61806, + "end": 61807, + "value": "[" + }, + { + "type": "whitespace", + "start": 61807, + "end": 61815, + "value": "\n " + }, + { + "type": "number", + "start": 61815, + "end": 61834, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 61834, + "end": 61835, + "value": "," + }, + { + "type": "whitespace", + "start": 61835, + "end": 61843, + "value": "\n " + }, + { + "type": "operator", + "start": 61843, + "end": 61844, + "value": "-" + }, + { + "type": "number", + "start": 61844, + "end": 61862, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 61862, + "end": 61868, + "value": "\n " + }, + { + "type": "brace", + "start": 61868, + "end": 61869, + "value": "]" + }, + { + "type": "comma", + "start": 61869, + "end": 61870, + "value": "," + }, + { + "type": "whitespace", + "start": 61870, + "end": 61871, + "value": " " + }, + { + "type": "operator", + "start": 61871, + "end": 61872, + "value": "%" + }, + { + "type": "brace", + "start": 61872, + "end": 61873, + "value": ")" + }, + { + "type": "whitespace", + "start": 61873, + "end": 61876, + "value": "\n " + }, + { + "type": "operator", + "start": 61876, + "end": 61878, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61878, + "end": 61879, + "value": " " + }, + { + "type": "word", + "start": 61879, + "end": 61883, + "value": "line" + }, + { + "type": "brace", + "start": 61883, + "end": 61884, + "value": "(" + }, + { + "type": "brace", + "start": 61884, + "end": 61885, + "value": "[" + }, + { + "type": "whitespace", + "start": 61885, + "end": 61893, + "value": "\n " + }, + { + "type": "operator", + "start": 61893, + "end": 61894, + "value": "-" + }, + { + "type": "number", + "start": 61894, + "end": 61912, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 61912, + "end": 61913, + "value": "," + }, + { + "type": "whitespace", + "start": 61913, + "end": 61921, + "value": "\n " + }, + { + "type": "number", + "start": 61921, + "end": 61940, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 61940, + "end": 61946, + "value": "\n " + }, + { + "type": "brace", + "start": 61946, + "end": 61947, + "value": "]" + }, + { + "type": "comma", + "start": 61947, + "end": 61948, + "value": "," + }, + { + "type": "whitespace", + "start": 61948, + "end": 61949, + "value": " " + }, + { + "type": "operator", + "start": 61949, + "end": 61950, + "value": "%" + }, + { + "type": "brace", + "start": 61950, + "end": 61951, + "value": ")" + }, + { + "type": "whitespace", + "start": 61951, + "end": 61954, + "value": "\n " + }, + { + "type": "operator", + "start": 61954, + "end": 61956, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61956, + "end": 61957, + "value": " " + }, + { + "type": "word", + "start": 61957, + "end": 61961, + "value": "line" + }, + { + "type": "brace", + "start": 61961, + "end": 61962, + "value": "(" + }, + { + "type": "brace", + "start": 61962, + "end": 61963, + "value": "[" + }, + { + "type": "number", + "start": 61963, + "end": 61981, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 61981, + "end": 61982, + "value": "," + }, + { + "type": "whitespace", + "start": 61982, + "end": 61983, + "value": " " + }, + { + "type": "number", + "start": 61983, + "end": 62001, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 62001, + "end": 62002, + "value": "]" + }, + { + "type": "comma", + "start": 62002, + "end": 62003, + "value": "," + }, + { + "type": "whitespace", + "start": 62003, + "end": 62004, + "value": " " + }, + { + "type": "operator", + "start": 62004, + "end": 62005, + "value": "%" + }, + { + "type": "brace", + "start": 62005, + "end": 62006, + "value": ")" + }, + { + "type": "whitespace", + "start": 62006, + "end": 62009, + "value": "\n " + }, + { + "type": "operator", + "start": 62009, + "end": 62011, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62011, + "end": 62012, + "value": " " + }, + { + "type": "word", + "start": 62012, + "end": 62016, + "value": "line" + }, + { + "type": "brace", + "start": 62016, + "end": 62017, + "value": "(" + }, + { + "type": "brace", + "start": 62017, + "end": 62018, + "value": "[" + }, + { + "type": "whitespace", + "start": 62018, + "end": 62026, + "value": "\n " + }, + { + "type": "operator", + "start": 62026, + "end": 62027, + "value": "-" + }, + { + "type": "number", + "start": 62027, + "end": 62045, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 62045, + "end": 62046, + "value": "," + }, + { + "type": "whitespace", + "start": 62046, + "end": 62054, + "value": "\n " + }, + { + "type": "operator", + "start": 62054, + "end": 62055, + "value": "-" + }, + { + "type": "number", + "start": 62055, + "end": 62074, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 62074, + "end": 62080, + "value": "\n " + }, + { + "type": "brace", + "start": 62080, + "end": 62081, + "value": "]" + }, + { + "type": "comma", + "start": 62081, + "end": 62082, + "value": "," + }, + { + "type": "whitespace", + "start": 62082, + "end": 62083, + "value": " " + }, + { + "type": "operator", + "start": 62083, + "end": 62084, + "value": "%" + }, + { + "type": "brace", + "start": 62084, + "end": 62085, + "value": ")" + }, + { + "type": "whitespace", + "start": 62085, + "end": 62088, + "value": "\n " + }, + { + "type": "operator", + "start": 62088, + "end": 62090, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62090, + "end": 62091, + "value": " " + }, + { + "type": "word", + "start": 62091, + "end": 62095, + "value": "line" + }, + { + "type": "brace", + "start": 62095, + "end": 62096, + "value": "(" + }, + { + "type": "brace", + "start": 62096, + "end": 62097, + "value": "[" + }, + { + "type": "whitespace", + "start": 62097, + "end": 62105, + "value": "\n " + }, + { + "type": "number", + "start": 62105, + "end": 62123, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 62123, + "end": 62124, + "value": "," + }, + { + "type": "whitespace", + "start": 62124, + "end": 62132, + "value": "\n " + }, + { + "type": "operator", + "start": 62132, + "end": 62133, + "value": "-" + }, + { + "type": "number", + "start": 62133, + "end": 62151, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 62151, + "end": 62157, + "value": "\n " + }, + { + "type": "brace", + "start": 62157, + "end": 62158, + "value": "]" + }, + { + "type": "comma", + "start": 62158, + "end": 62159, + "value": "," + }, + { + "type": "whitespace", + "start": 62159, + "end": 62160, + "value": " " + }, + { + "type": "operator", + "start": 62160, + "end": 62161, + "value": "%" + }, + { + "type": "brace", + "start": 62161, + "end": 62162, + "value": ")" + }, + { + "type": "whitespace", + "start": 62162, + "end": 62165, + "value": "\n " + }, + { + "type": "operator", + "start": 62165, + "end": 62167, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62167, + "end": 62168, + "value": " " + }, + { + "type": "word", + "start": 62168, + "end": 62172, + "value": "line" + }, + { + "type": "brace", + "start": 62172, + "end": 62173, + "value": "(" + }, + { + "type": "brace", + "start": 62173, + "end": 62174, + "value": "[" + }, + { + "type": "whitespace", + "start": 62174, + "end": 62182, + "value": "\n " + }, + { + "type": "number", + "start": 62182, + "end": 62200, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 62200, + "end": 62201, + "value": "," + }, + { + "type": "whitespace", + "start": 62201, + "end": 62209, + "value": "\n " + }, + { + "type": "operator", + "start": 62209, + "end": 62210, + "value": "-" + }, + { + "type": "number", + "start": 62210, + "end": 62228, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 62228, + "end": 62234, + "value": "\n " + }, + { + "type": "brace", + "start": 62234, + "end": 62235, + "value": "]" + }, + { + "type": "comma", + "start": 62235, + "end": 62236, + "value": "," + }, + { + "type": "whitespace", + "start": 62236, + "end": 62237, + "value": " " + }, + { + "type": "operator", + "start": 62237, + "end": 62238, + "value": "%" + }, + { + "type": "brace", + "start": 62238, + "end": 62239, + "value": ")" + }, + { + "type": "whitespace", + "start": 62239, + "end": 62242, + "value": "\n " + }, + { + "type": "operator", + "start": 62242, + "end": 62244, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62244, + "end": 62245, + "value": " " + }, + { + "type": "word", + "start": 62245, + "end": 62249, + "value": "line" + }, + { + "type": "brace", + "start": 62249, + "end": 62250, + "value": "(" + }, + { + "type": "brace", + "start": 62250, + "end": 62251, + "value": "[" + }, + { + "type": "number", + "start": 62251, + "end": 62269, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 62269, + "end": 62270, + "value": "," + }, + { + "type": "whitespace", + "start": 62270, + "end": 62271, + "value": " " + }, + { + "type": "number", + "start": 62271, + "end": 62289, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 62289, + "end": 62290, + "value": "]" + }, + { + "type": "comma", + "start": 62290, + "end": 62291, + "value": "," + }, + { + "type": "whitespace", + "start": 62291, + "end": 62292, + "value": " " + }, + { + "type": "operator", + "start": 62292, + "end": 62293, + "value": "%" + }, + { + "type": "brace", + "start": 62293, + "end": 62294, + "value": ")" + }, + { + "type": "whitespace", + "start": 62294, + "end": 62297, + "value": "\n " + }, + { + "type": "operator", + "start": 62297, + "end": 62299, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62299, + "end": 62300, + "value": " " + }, + { + "type": "word", + "start": 62300, + "end": 62304, + "value": "line" + }, + { + "type": "brace", + "start": 62304, + "end": 62305, + "value": "(" + }, + { + "type": "brace", + "start": 62305, + "end": 62306, + "value": "[" + }, + { + "type": "whitespace", + "start": 62306, + "end": 62314, + "value": "\n " + }, + { + "type": "operator", + "start": 62314, + "end": 62315, + "value": "-" + }, + { + "type": "number", + "start": 62315, + "end": 62333, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 62333, + "end": 62334, + "value": "," + }, + { + "type": "whitespace", + "start": 62334, + "end": 62342, + "value": "\n " + }, + { + "type": "number", + "start": 62342, + "end": 62360, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 62360, + "end": 62366, + "value": "\n " + }, + { + "type": "brace", + "start": 62366, + "end": 62367, + "value": "]" + }, + { + "type": "comma", + "start": 62367, + "end": 62368, + "value": "," + }, + { + "type": "whitespace", + "start": 62368, + "end": 62369, + "value": " " + }, + { + "type": "operator", + "start": 62369, + "end": 62370, + "value": "%" + }, + { + "type": "brace", + "start": 62370, + "end": 62371, + "value": ")" + }, + { + "type": "whitespace", + "start": 62371, + "end": 62374, + "value": "\n " + }, + { + "type": "operator", + "start": 62374, + "end": 62376, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62376, + "end": 62377, + "value": " " + }, + { + "type": "word", + "start": 62377, + "end": 62381, + "value": "line" + }, + { + "type": "brace", + "start": 62381, + "end": 62382, + "value": "(" + }, + { + "type": "brace", + "start": 62382, + "end": 62383, + "value": "[" + }, + { + "type": "number", + "start": 62383, + "end": 62401, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 62401, + "end": 62402, + "value": "," + }, + { + "type": "whitespace", + "start": 62402, + "end": 62403, + "value": " " + }, + { + "type": "number", + "start": 62403, + "end": 62421, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 62421, + "end": 62422, + "value": "]" + }, + { + "type": "comma", + "start": 62422, + "end": 62423, + "value": "," + }, + { + "type": "whitespace", + "start": 62423, + "end": 62424, + "value": " " + }, + { + "type": "operator", + "start": 62424, + "end": 62425, + "value": "%" + }, + { + "type": "brace", + "start": 62425, + "end": 62426, + "value": ")" + }, + { + "type": "whitespace", + "start": 62426, + "end": 62429, + "value": "\n " + }, + { + "type": "operator", + "start": 62429, + "end": 62431, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62431, + "end": 62432, + "value": " " + }, + { + "type": "word", + "start": 62432, + "end": 62436, + "value": "line" + }, + { + "type": "brace", + "start": 62436, + "end": 62437, + "value": "(" + }, + { + "type": "brace", + "start": 62437, + "end": 62438, + "value": "[" + }, + { + "type": "whitespace", + "start": 62438, + "end": 62446, + "value": "\n " + }, + { + "type": "number", + "start": 62446, + "end": 62464, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 62464, + "end": 62465, + "value": "," + }, + { + "type": "whitespace", + "start": 62465, + "end": 62473, + "value": "\n " + }, + { + "type": "number", + "start": 62473, + "end": 62492, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 62492, + "end": 62498, + "value": "\n " + }, + { + "type": "brace", + "start": 62498, + "end": 62499, + "value": "]" + }, + { + "type": "comma", + "start": 62499, + "end": 62500, + "value": "," + }, + { + "type": "whitespace", + "start": 62500, + "end": 62501, + "value": " " + }, + { + "type": "operator", + "start": 62501, + "end": 62502, + "value": "%" + }, + { + "type": "brace", + "start": 62502, + "end": 62503, + "value": ")" + }, + { + "type": "whitespace", + "start": 62503, + "end": 62506, + "value": "\n " + }, + { + "type": "operator", + "start": 62506, + "end": 62508, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62508, + "end": 62509, + "value": " " + }, + { + "type": "word", + "start": 62509, + "end": 62513, + "value": "line" + }, + { + "type": "brace", + "start": 62513, + "end": 62514, + "value": "(" + }, + { + "type": "brace", + "start": 62514, + "end": 62515, + "value": "[" + }, + { + "type": "whitespace", + "start": 62515, + "end": 62523, + "value": "\n " + }, + { + "type": "operator", + "start": 62523, + "end": 62524, + "value": "-" + }, + { + "type": "number", + "start": 62524, + "end": 62542, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 62542, + "end": 62543, + "value": "," + }, + { + "type": "whitespace", + "start": 62543, + "end": 62551, + "value": "\n " + }, + { + "type": "operator", + "start": 62551, + "end": 62552, + "value": "-" + }, + { + "type": "number", + "start": 62552, + "end": 62569, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 62569, + "end": 62575, + "value": "\n " + }, + { + "type": "brace", + "start": 62575, + "end": 62576, + "value": "]" + }, + { + "type": "comma", + "start": 62576, + "end": 62577, + "value": "," + }, + { + "type": "whitespace", + "start": 62577, + "end": 62578, + "value": " " + }, + { + "type": "operator", + "start": 62578, + "end": 62579, + "value": "%" + }, + { + "type": "brace", + "start": 62579, + "end": 62580, + "value": ")" + }, + { + "type": "whitespace", + "start": 62580, + "end": 62583, + "value": "\n " + }, + { + "type": "operator", + "start": 62583, + "end": 62585, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62585, + "end": 62586, + "value": " " + }, + { + "type": "word", + "start": 62586, + "end": 62590, + "value": "line" + }, + { + "type": "brace", + "start": 62590, + "end": 62591, + "value": "(" + }, + { + "type": "brace", + "start": 62591, + "end": 62592, + "value": "[" + }, + { + "type": "whitespace", + "start": 62592, + "end": 62600, + "value": "\n " + }, + { + "type": "number", + "start": 62600, + "end": 62618, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 62618, + "end": 62619, + "value": "," + }, + { + "type": "whitespace", + "start": 62619, + "end": 62627, + "value": "\n " + }, + { + "type": "operator", + "start": 62627, + "end": 62628, + "value": "-" + }, + { + "type": "number", + "start": 62628, + "end": 62647, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 62647, + "end": 62653, + "value": "\n " + }, + { + "type": "brace", + "start": 62653, + "end": 62654, + "value": "]" + }, + { + "type": "comma", + "start": 62654, + "end": 62655, + "value": "," + }, + { + "type": "whitespace", + "start": 62655, + "end": 62656, + "value": " " + }, + { + "type": "operator", + "start": 62656, + "end": 62657, + "value": "%" + }, + { + "type": "brace", + "start": 62657, + "end": 62658, + "value": ")" + }, + { + "type": "whitespace", + "start": 62658, + "end": 62661, + "value": "\n " + }, + { + "type": "operator", + "start": 62661, + "end": 62663, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62663, + "end": 62664, + "value": " " + }, + { + "type": "word", + "start": 62664, + "end": 62668, + "value": "line" + }, + { + "type": "brace", + "start": 62668, + "end": 62669, + "value": "(" + }, + { + "type": "brace", + "start": 62669, + "end": 62670, + "value": "[" + }, + { + "type": "whitespace", + "start": 62670, + "end": 62678, + "value": "\n " + }, + { + "type": "operator", + "start": 62678, + "end": 62679, + "value": "-" + }, + { + "type": "number", + "start": 62679, + "end": 62698, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 62698, + "end": 62699, + "value": "," + }, + { + "type": "whitespace", + "start": 62699, + "end": 62707, + "value": "\n " + }, + { + "type": "operator", + "start": 62707, + "end": 62708, + "value": "-" + }, + { + "type": "number", + "start": 62708, + "end": 62727, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 62727, + "end": 62733, + "value": "\n " + }, + { + "type": "brace", + "start": 62733, + "end": 62734, + "value": "]" + }, + { + "type": "comma", + "start": 62734, + "end": 62735, + "value": "," + }, + { + "type": "whitespace", + "start": 62735, + "end": 62736, + "value": " " + }, + { + "type": "operator", + "start": 62736, + "end": 62737, + "value": "%" + }, + { + "type": "brace", + "start": 62737, + "end": 62738, + "value": ")" + }, + { + "type": "whitespace", + "start": 62738, + "end": 62741, + "value": "\n " + }, + { + "type": "operator", + "start": 62741, + "end": 62743, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62743, + "end": 62744, + "value": " " + }, + { + "type": "word", + "start": 62744, + "end": 62748, + "value": "line" + }, + { + "type": "brace", + "start": 62748, + "end": 62749, + "value": "(" + }, + { + "type": "brace", + "start": 62749, + "end": 62750, + "value": "[" + }, + { + "type": "whitespace", + "start": 62750, + "end": 62758, + "value": "\n " + }, + { + "type": "operator", + "start": 62758, + "end": 62759, + "value": "-" + }, + { + "type": "number", + "start": 62759, + "end": 62777, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 62777, + "end": 62778, + "value": "," + }, + { + "type": "whitespace", + "start": 62778, + "end": 62786, + "value": "\n " + }, + { + "type": "operator", + "start": 62786, + "end": 62787, + "value": "-" + }, + { + "type": "number", + "start": 62787, + "end": 62806, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 62806, + "end": 62812, + "value": "\n " + }, + { + "type": "brace", + "start": 62812, + "end": 62813, + "value": "]" + }, + { + "type": "comma", + "start": 62813, + "end": 62814, + "value": "," + }, + { + "type": "whitespace", + "start": 62814, + "end": 62815, + "value": " " + }, + { + "type": "operator", + "start": 62815, + "end": 62816, + "value": "%" + }, + { + "type": "brace", + "start": 62816, + "end": 62817, + "value": ")" + }, + { + "type": "whitespace", + "start": 62817, + "end": 62820, + "value": "\n " + }, + { + "type": "operator", + "start": 62820, + "end": 62822, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62822, + "end": 62823, + "value": " " + }, + { + "type": "word", + "start": 62823, + "end": 62827, + "value": "line" + }, + { + "type": "brace", + "start": 62827, + "end": 62828, + "value": "(" + }, + { + "type": "brace", + "start": 62828, + "end": 62829, + "value": "[" + }, + { + "type": "whitespace", + "start": 62829, + "end": 62837, + "value": "\n " + }, + { + "type": "operator", + "start": 62837, + "end": 62838, + "value": "-" + }, + { + "type": "number", + "start": 62838, + "end": 62856, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 62856, + "end": 62857, + "value": "," + }, + { + "type": "whitespace", + "start": 62857, + "end": 62865, + "value": "\n " + }, + { + "type": "number", + "start": 62865, + "end": 62884, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 62884, + "end": 62890, + "value": "\n " + }, + { + "type": "brace", + "start": 62890, + "end": 62891, + "value": "]" + }, + { + "type": "comma", + "start": 62891, + "end": 62892, + "value": "," + }, + { + "type": "whitespace", + "start": 62892, + "end": 62893, + "value": " " + }, + { + "type": "operator", + "start": 62893, + "end": 62894, + "value": "%" + }, + { + "type": "brace", + "start": 62894, + "end": 62895, + "value": ")" + }, + { + "type": "whitespace", + "start": 62895, + "end": 62898, + "value": "\n " + }, + { + "type": "operator", + "start": 62898, + "end": 62900, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62900, + "end": 62901, + "value": " " + }, + { + "type": "word", + "start": 62901, + "end": 62905, + "value": "line" + }, + { + "type": "brace", + "start": 62905, + "end": 62906, + "value": "(" + }, + { + "type": "brace", + "start": 62906, + "end": 62907, + "value": "[" + }, + { + "type": "whitespace", + "start": 62907, + "end": 62915, + "value": "\n " + }, + { + "type": "operator", + "start": 62915, + "end": 62916, + "value": "-" + }, + { + "type": "number", + "start": 62916, + "end": 62934, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 62934, + "end": 62935, + "value": "," + }, + { + "type": "whitespace", + "start": 62935, + "end": 62943, + "value": "\n " + }, + { + "type": "operator", + "start": 62943, + "end": 62944, + "value": "-" + }, + { + "type": "number", + "start": 62944, + "end": 62963, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 62963, + "end": 62969, + "value": "\n " + }, + { + "type": "brace", + "start": 62969, + "end": 62970, + "value": "]" + }, + { + "type": "comma", + "start": 62970, + "end": 62971, + "value": "," + }, + { + "type": "whitespace", + "start": 62971, + "end": 62972, + "value": " " + }, + { + "type": "operator", + "start": 62972, + "end": 62973, + "value": "%" + }, + { + "type": "brace", + "start": 62973, + "end": 62974, + "value": ")" + }, + { + "type": "whitespace", + "start": 62974, + "end": 62977, + "value": "\n " + }, + { + "type": "operator", + "start": 62977, + "end": 62979, + "value": "|>" + }, + { + "type": "whitespace", + "start": 62979, + "end": 62980, + "value": " " + }, + { + "type": "word", + "start": 62980, + "end": 62984, + "value": "line" + }, + { + "type": "brace", + "start": 62984, + "end": 62985, + "value": "(" + }, + { + "type": "brace", + "start": 62985, + "end": 62986, + "value": "[" + }, + { + "type": "whitespace", + "start": 62986, + "end": 62994, + "value": "\n " + }, + { + "type": "number", + "start": 62994, + "end": 63012, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 63012, + "end": 63013, + "value": "," + }, + { + "type": "whitespace", + "start": 63013, + "end": 63021, + "value": "\n " + }, + { + "type": "operator", + "start": 63021, + "end": 63022, + "value": "-" + }, + { + "type": "number", + "start": 63022, + "end": 63040, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 63040, + "end": 63046, + "value": "\n " + }, + { + "type": "brace", + "start": 63046, + "end": 63047, + "value": "]" + }, + { + "type": "comma", + "start": 63047, + "end": 63048, + "value": "," + }, + { + "type": "whitespace", + "start": 63048, + "end": 63049, + "value": " " + }, + { + "type": "operator", + "start": 63049, + "end": 63050, + "value": "%" + }, + { + "type": "brace", + "start": 63050, + "end": 63051, + "value": ")" + }, + { + "type": "whitespace", + "start": 63051, + "end": 63054, + "value": "\n " + }, + { + "type": "operator", + "start": 63054, + "end": 63056, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63056, + "end": 63057, + "value": " " + }, + { + "type": "word", + "start": 63057, + "end": 63061, + "value": "line" + }, + { + "type": "brace", + "start": 63061, + "end": 63062, + "value": "(" + }, + { + "type": "brace", + "start": 63062, + "end": 63063, + "value": "[" + }, + { + "type": "whitespace", + "start": 63063, + "end": 63071, + "value": "\n " + }, + { + "type": "operator", + "start": 63071, + "end": 63072, + "value": "-" + }, + { + "type": "number", + "start": 63072, + "end": 63090, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 63090, + "end": 63091, + "value": "," + }, + { + "type": "whitespace", + "start": 63091, + "end": 63099, + "value": "\n " + }, + { + "type": "number", + "start": 63099, + "end": 63117, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 63117, + "end": 63123, + "value": "\n " + }, + { + "type": "brace", + "start": 63123, + "end": 63124, + "value": "]" + }, + { + "type": "comma", + "start": 63124, + "end": 63125, + "value": "," + }, + { + "type": "whitespace", + "start": 63125, + "end": 63126, + "value": " " + }, + { + "type": "operator", + "start": 63126, + "end": 63127, + "value": "%" + }, + { + "type": "brace", + "start": 63127, + "end": 63128, + "value": ")" + }, + { + "type": "whitespace", + "start": 63128, + "end": 63131, + "value": "\n " + }, + { + "type": "operator", + "start": 63131, + "end": 63133, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63133, + "end": 63134, + "value": " " + }, + { + "type": "word", + "start": 63134, + "end": 63138, + "value": "line" + }, + { + "type": "brace", + "start": 63138, + "end": 63139, + "value": "(" + }, + { + "type": "brace", + "start": 63139, + "end": 63140, + "value": "[" + }, + { + "type": "whitespace", + "start": 63140, + "end": 63148, + "value": "\n " + }, + { + "type": "operator", + "start": 63148, + "end": 63149, + "value": "-" + }, + { + "type": "number", + "start": 63149, + "end": 63167, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 63167, + "end": 63168, + "value": "," + }, + { + "type": "whitespace", + "start": 63168, + "end": 63176, + "value": "\n " + }, + { + "type": "number", + "start": 63176, + "end": 63194, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 63194, + "end": 63200, + "value": "\n " + }, + { + "type": "brace", + "start": 63200, + "end": 63201, + "value": "]" + }, + { + "type": "comma", + "start": 63201, + "end": 63202, + "value": "," + }, + { + "type": "whitespace", + "start": 63202, + "end": 63203, + "value": " " + }, + { + "type": "operator", + "start": 63203, + "end": 63204, + "value": "%" + }, + { + "type": "brace", + "start": 63204, + "end": 63205, + "value": ")" + }, + { + "type": "whitespace", + "start": 63205, + "end": 63208, + "value": "\n " + }, + { + "type": "operator", + "start": 63208, + "end": 63210, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63210, + "end": 63211, + "value": " " + }, + { + "type": "word", + "start": 63211, + "end": 63215, + "value": "line" + }, + { + "type": "brace", + "start": 63215, + "end": 63216, + "value": "(" + }, + { + "type": "brace", + "start": 63216, + "end": 63217, + "value": "[" + }, + { + "type": "whitespace", + "start": 63217, + "end": 63225, + "value": "\n " + }, + { + "type": "operator", + "start": 63225, + "end": 63226, + "value": "-" + }, + { + "type": "number", + "start": 63226, + "end": 63244, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 63244, + "end": 63245, + "value": "," + }, + { + "type": "whitespace", + "start": 63245, + "end": 63253, + "value": "\n " + }, + { + "type": "operator", + "start": 63253, + "end": 63254, + "value": "-" + }, + { + "type": "number", + "start": 63254, + "end": 63273, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 63273, + "end": 63279, + "value": "\n " + }, + { + "type": "brace", + "start": 63279, + "end": 63280, + "value": "]" + }, + { + "type": "comma", + "start": 63280, + "end": 63281, + "value": "," + }, + { + "type": "whitespace", + "start": 63281, + "end": 63282, + "value": " " + }, + { + "type": "operator", + "start": 63282, + "end": 63283, + "value": "%" + }, + { + "type": "brace", + "start": 63283, + "end": 63284, + "value": ")" + }, + { + "type": "whitespace", + "start": 63284, + "end": 63287, + "value": "\n " + }, + { + "type": "operator", + "start": 63287, + "end": 63289, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63289, + "end": 63290, + "value": " " + }, + { + "type": "word", + "start": 63290, + "end": 63294, + "value": "line" + }, + { + "type": "brace", + "start": 63294, + "end": 63295, + "value": "(" + }, + { + "type": "brace", + "start": 63295, + "end": 63296, + "value": "[" + }, + { + "type": "whitespace", + "start": 63296, + "end": 63304, + "value": "\n " + }, + { + "type": "number", + "start": 63304, + "end": 63323, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 63323, + "end": 63324, + "value": "," + }, + { + "type": "whitespace", + "start": 63324, + "end": 63332, + "value": "\n " + }, + { + "type": "number", + "start": 63332, + "end": 63351, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 63351, + "end": 63357, + "value": "\n " + }, + { + "type": "brace", + "start": 63357, + "end": 63358, + "value": "]" + }, + { + "type": "comma", + "start": 63358, + "end": 63359, + "value": "," + }, + { + "type": "whitespace", + "start": 63359, + "end": 63360, + "value": " " + }, + { + "type": "operator", + "start": 63360, + "end": 63361, + "value": "%" + }, + { + "type": "brace", + "start": 63361, + "end": 63362, + "value": ")" + }, + { + "type": "whitespace", + "start": 63362, + "end": 63365, + "value": "\n " + }, + { + "type": "operator", + "start": 63365, + "end": 63367, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63367, + "end": 63368, + "value": " " + }, + { + "type": "word", + "start": 63368, + "end": 63372, + "value": "line" + }, + { + "type": "brace", + "start": 63372, + "end": 63373, + "value": "(" + }, + { + "type": "brace", + "start": 63373, + "end": 63374, + "value": "[" + }, + { + "type": "whitespace", + "start": 63374, + "end": 63382, + "value": "\n " + }, + { + "type": "number", + "start": 63382, + "end": 63401, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 63401, + "end": 63402, + "value": "," + }, + { + "type": "whitespace", + "start": 63402, + "end": 63410, + "value": "\n " + }, + { + "type": "number", + "start": 63410, + "end": 63429, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 63429, + "end": 63435, + "value": "\n " + }, + { + "type": "brace", + "start": 63435, + "end": 63436, + "value": "]" + }, + { + "type": "comma", + "start": 63436, + "end": 63437, + "value": "," + }, + { + "type": "whitespace", + "start": 63437, + "end": 63438, + "value": " " + }, + { + "type": "operator", + "start": 63438, + "end": 63439, + "value": "%" + }, + { + "type": "brace", + "start": 63439, + "end": 63440, + "value": ")" + }, + { + "type": "whitespace", + "start": 63440, + "end": 63443, + "value": "\n " + }, + { + "type": "operator", + "start": 63443, + "end": 63445, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63445, + "end": 63446, + "value": " " + }, + { + "type": "word", + "start": 63446, + "end": 63450, + "value": "line" + }, + { + "type": "brace", + "start": 63450, + "end": 63451, + "value": "(" + }, + { + "type": "brace", + "start": 63451, + "end": 63452, + "value": "[" + }, + { + "type": "whitespace", + "start": 63452, + "end": 63460, + "value": "\n " + }, + { + "type": "operator", + "start": 63460, + "end": 63461, + "value": "-" + }, + { + "type": "number", + "start": 63461, + "end": 63480, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 63480, + "end": 63481, + "value": "," + }, + { + "type": "whitespace", + "start": 63481, + "end": 63489, + "value": "\n " + }, + { + "type": "number", + "start": 63489, + "end": 63507, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 63507, + "end": 63513, + "value": "\n " + }, + { + "type": "brace", + "start": 63513, + "end": 63514, + "value": "]" + }, + { + "type": "comma", + "start": 63514, + "end": 63515, + "value": "," + }, + { + "type": "whitespace", + "start": 63515, + "end": 63516, + "value": " " + }, + { + "type": "operator", + "start": 63516, + "end": 63517, + "value": "%" + }, + { + "type": "brace", + "start": 63517, + "end": 63518, + "value": ")" + }, + { + "type": "whitespace", + "start": 63518, + "end": 63521, + "value": "\n " + }, + { + "type": "operator", + "start": 63521, + "end": 63523, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63523, + "end": 63524, + "value": " " + }, + { + "type": "word", + "start": 63524, + "end": 63528, + "value": "line" + }, + { + "type": "brace", + "start": 63528, + "end": 63529, + "value": "(" + }, + { + "type": "brace", + "start": 63529, + "end": 63530, + "value": "[" + }, + { + "type": "whitespace", + "start": 63530, + "end": 63538, + "value": "\n " + }, + { + "type": "operator", + "start": 63538, + "end": 63539, + "value": "-" + }, + { + "type": "number", + "start": 63539, + "end": 63558, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 63558, + "end": 63559, + "value": "," + }, + { + "type": "whitespace", + "start": 63559, + "end": 63567, + "value": "\n " + }, + { + "type": "operator", + "start": 63567, + "end": 63568, + "value": "-" + }, + { + "type": "number", + "start": 63568, + "end": 63587, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 63587, + "end": 63593, + "value": "\n " + }, + { + "type": "brace", + "start": 63593, + "end": 63594, + "value": "]" + }, + { + "type": "comma", + "start": 63594, + "end": 63595, + "value": "," + }, + { + "type": "whitespace", + "start": 63595, + "end": 63596, + "value": " " + }, + { + "type": "operator", + "start": 63596, + "end": 63597, + "value": "%" + }, + { + "type": "brace", + "start": 63597, + "end": 63598, + "value": ")" + }, + { + "type": "whitespace", + "start": 63598, + "end": 63601, + "value": "\n " + }, + { + "type": "operator", + "start": 63601, + "end": 63603, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63603, + "end": 63604, + "value": " " + }, + { + "type": "word", + "start": 63604, + "end": 63608, + "value": "line" + }, + { + "type": "brace", + "start": 63608, + "end": 63609, + "value": "(" + }, + { + "type": "brace", + "start": 63609, + "end": 63610, + "value": "[" + }, + { + "type": "whitespace", + "start": 63610, + "end": 63618, + "value": "\n " + }, + { + "type": "number", + "start": 63618, + "end": 63636, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 63636, + "end": 63637, + "value": "," + }, + { + "type": "whitespace", + "start": 63637, + "end": 63645, + "value": "\n " + }, + { + "type": "operator", + "start": 63645, + "end": 63646, + "value": "-" + }, + { + "type": "number", + "start": 63646, + "end": 63665, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 63665, + "end": 63671, + "value": "\n " + }, + { + "type": "brace", + "start": 63671, + "end": 63672, + "value": "]" + }, + { + "type": "comma", + "start": 63672, + "end": 63673, + "value": "," + }, + { + "type": "whitespace", + "start": 63673, + "end": 63674, + "value": " " + }, + { + "type": "operator", + "start": 63674, + "end": 63675, + "value": "%" + }, + { + "type": "brace", + "start": 63675, + "end": 63676, + "value": ")" + }, + { + "type": "whitespace", + "start": 63676, + "end": 63679, + "value": "\n " + }, + { + "type": "operator", + "start": 63679, + "end": 63681, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63681, + "end": 63682, + "value": " " + }, + { + "type": "word", + "start": 63682, + "end": 63686, + "value": "line" + }, + { + "type": "brace", + "start": 63686, + "end": 63687, + "value": "(" + }, + { + "type": "brace", + "start": 63687, + "end": 63688, + "value": "[" + }, + { + "type": "whitespace", + "start": 63688, + "end": 63696, + "value": "\n " + }, + { + "type": "number", + "start": 63696, + "end": 63717, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 63717, + "end": 63718, + "value": "," + }, + { + "type": "whitespace", + "start": 63718, + "end": 63726, + "value": "\n " + }, + { + "type": "operator", + "start": 63726, + "end": 63727, + "value": "-" + }, + { + "type": "number", + "start": 63727, + "end": 63745, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 63745, + "end": 63751, + "value": "\n " + }, + { + "type": "brace", + "start": 63751, + "end": 63752, + "value": "]" + }, + { + "type": "comma", + "start": 63752, + "end": 63753, + "value": "," + }, + { + "type": "whitespace", + "start": 63753, + "end": 63754, + "value": " " + }, + { + "type": "operator", + "start": 63754, + "end": 63755, + "value": "%" + }, + { + "type": "brace", + "start": 63755, + "end": 63756, + "value": ")" + }, + { + "type": "whitespace", + "start": 63756, + "end": 63759, + "value": "\n " + }, + { + "type": "operator", + "start": 63759, + "end": 63761, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63761, + "end": 63762, + "value": " " + }, + { + "type": "word", + "start": 63762, + "end": 63766, + "value": "line" + }, + { + "type": "brace", + "start": 63766, + "end": 63767, + "value": "(" + }, + { + "type": "brace", + "start": 63767, + "end": 63768, + "value": "[" + }, + { + "type": "whitespace", + "start": 63768, + "end": 63776, + "value": "\n " + }, + { + "type": "number", + "start": 63776, + "end": 63794, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 63794, + "end": 63795, + "value": "," + }, + { + "type": "whitespace", + "start": 63795, + "end": 63803, + "value": "\n " + }, + { + "type": "operator", + "start": 63803, + "end": 63804, + "value": "-" + }, + { + "type": "number", + "start": 63804, + "end": 63822, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 63822, + "end": 63828, + "value": "\n " + }, + { + "type": "brace", + "start": 63828, + "end": 63829, + "value": "]" + }, + { + "type": "comma", + "start": 63829, + "end": 63830, + "value": "," + }, + { + "type": "whitespace", + "start": 63830, + "end": 63831, + "value": " " + }, + { + "type": "operator", + "start": 63831, + "end": 63832, + "value": "%" + }, + { + "type": "brace", + "start": 63832, + "end": 63833, + "value": ")" + }, + { + "type": "whitespace", + "start": 63833, + "end": 63836, + "value": "\n " + }, + { + "type": "operator", + "start": 63836, + "end": 63838, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63838, + "end": 63839, + "value": " " + }, + { + "type": "word", + "start": 63839, + "end": 63843, + "value": "line" + }, + { + "type": "brace", + "start": 63843, + "end": 63844, + "value": "(" + }, + { + "type": "brace", + "start": 63844, + "end": 63845, + "value": "[" + }, + { + "type": "whitespace", + "start": 63845, + "end": 63853, + "value": "\n " + }, + { + "type": "operator", + "start": 63853, + "end": 63854, + "value": "-" + }, + { + "type": "number", + "start": 63854, + "end": 63872, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 63872, + "end": 63873, + "value": "," + }, + { + "type": "whitespace", + "start": 63873, + "end": 63881, + "value": "\n " + }, + { + "type": "number", + "start": 63881, + "end": 63899, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 63899, + "end": 63905, + "value": "\n " + }, + { + "type": "brace", + "start": 63905, + "end": 63906, + "value": "]" + }, + { + "type": "comma", + "start": 63906, + "end": 63907, + "value": "," + }, + { + "type": "whitespace", + "start": 63907, + "end": 63908, + "value": " " + }, + { + "type": "operator", + "start": 63908, + "end": 63909, + "value": "%" + }, + { + "type": "brace", + "start": 63909, + "end": 63910, + "value": ")" + }, + { + "type": "whitespace", + "start": 63910, + "end": 63913, + "value": "\n " + }, + { + "type": "operator", + "start": 63913, + "end": 63915, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63915, + "end": 63916, + "value": " " + }, + { + "type": "word", + "start": 63916, + "end": 63920, + "value": "line" + }, + { + "type": "brace", + "start": 63920, + "end": 63921, + "value": "(" + }, + { + "type": "brace", + "start": 63921, + "end": 63922, + "value": "[" + }, + { + "type": "number", + "start": 63922, + "end": 63940, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 63940, + "end": 63941, + "value": "," + }, + { + "type": "whitespace", + "start": 63941, + "end": 63942, + "value": " " + }, + { + "type": "number", + "start": 63942, + "end": 63960, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 63960, + "end": 63961, + "value": "]" + }, + { + "type": "comma", + "start": 63961, + "end": 63962, + "value": "," + }, + { + "type": "whitespace", + "start": 63962, + "end": 63963, + "value": " " + }, + { + "type": "operator", + "start": 63963, + "end": 63964, + "value": "%" + }, + { + "type": "brace", + "start": 63964, + "end": 63965, + "value": ")" + }, + { + "type": "whitespace", + "start": 63965, + "end": 63968, + "value": "\n " + }, + { + "type": "operator", + "start": 63968, + "end": 63970, + "value": "|>" + }, + { + "type": "whitespace", + "start": 63970, + "end": 63971, + "value": " " + }, + { + "type": "word", + "start": 63971, + "end": 63975, + "value": "line" + }, + { + "type": "brace", + "start": 63975, + "end": 63976, + "value": "(" + }, + { + "type": "brace", + "start": 63976, + "end": 63977, + "value": "[" + }, + { + "type": "whitespace", + "start": 63977, + "end": 63985, + "value": "\n " + }, + { + "type": "operator", + "start": 63985, + "end": 63986, + "value": "-" + }, + { + "type": "number", + "start": 63986, + "end": 64005, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 64005, + "end": 64006, + "value": "," + }, + { + "type": "whitespace", + "start": 64006, + "end": 64014, + "value": "\n " + }, + { + "type": "number", + "start": 64014, + "end": 64034, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 64034, + "end": 64040, + "value": "\n " + }, + { + "type": "brace", + "start": 64040, + "end": 64041, + "value": "]" + }, + { + "type": "comma", + "start": 64041, + "end": 64042, + "value": "," + }, + { + "type": "whitespace", + "start": 64042, + "end": 64043, + "value": " " + }, + { + "type": "operator", + "start": 64043, + "end": 64044, + "value": "%" + }, + { + "type": "brace", + "start": 64044, + "end": 64045, + "value": ")" + }, + { + "type": "whitespace", + "start": 64045, + "end": 64048, + "value": "\n " + }, + { + "type": "operator", + "start": 64048, + "end": 64050, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64050, + "end": 64051, + "value": " " + }, + { + "type": "word", + "start": 64051, + "end": 64055, + "value": "line" + }, + { + "type": "brace", + "start": 64055, + "end": 64056, + "value": "(" + }, + { + "type": "brace", + "start": 64056, + "end": 64057, + "value": "[" + }, + { + "type": "whitespace", + "start": 64057, + "end": 64065, + "value": "\n " + }, + { + "type": "operator", + "start": 64065, + "end": 64066, + "value": "-" + }, + { + "type": "number", + "start": 64066, + "end": 64084, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 64084, + "end": 64085, + "value": "," + }, + { + "type": "whitespace", + "start": 64085, + "end": 64093, + "value": "\n " + }, + { + "type": "operator", + "start": 64093, + "end": 64094, + "value": "-" + }, + { + "type": "number", + "start": 64094, + "end": 64113, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 64113, + "end": 64119, + "value": "\n " + }, + { + "type": "brace", + "start": 64119, + "end": 64120, + "value": "]" + }, + { + "type": "comma", + "start": 64120, + "end": 64121, + "value": "," + }, + { + "type": "whitespace", + "start": 64121, + "end": 64122, + "value": " " + }, + { + "type": "operator", + "start": 64122, + "end": 64123, + "value": "%" + }, + { + "type": "brace", + "start": 64123, + "end": 64124, + "value": ")" + }, + { + "type": "whitespace", + "start": 64124, + "end": 64127, + "value": "\n " + }, + { + "type": "operator", + "start": 64127, + "end": 64129, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64129, + "end": 64130, + "value": " " + }, + { + "type": "word", + "start": 64130, + "end": 64134, + "value": "line" + }, + { + "type": "brace", + "start": 64134, + "end": 64135, + "value": "(" + }, + { + "type": "brace", + "start": 64135, + "end": 64136, + "value": "[" + }, + { + "type": "whitespace", + "start": 64136, + "end": 64144, + "value": "\n " + }, + { + "type": "operator", + "start": 64144, + "end": 64145, + "value": "-" + }, + { + "type": "number", + "start": 64145, + "end": 64163, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 64163, + "end": 64164, + "value": "," + }, + { + "type": "whitespace", + "start": 64164, + "end": 64172, + "value": "\n " + }, + { + "type": "operator", + "start": 64172, + "end": 64173, + "value": "-" + }, + { + "type": "number", + "start": 64173, + "end": 64192, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 64192, + "end": 64198, + "value": "\n " + }, + { + "type": "brace", + "start": 64198, + "end": 64199, + "value": "]" + }, + { + "type": "comma", + "start": 64199, + "end": 64200, + "value": "," + }, + { + "type": "whitespace", + "start": 64200, + "end": 64201, + "value": " " + }, + { + "type": "operator", + "start": 64201, + "end": 64202, + "value": "%" + }, + { + "type": "brace", + "start": 64202, + "end": 64203, + "value": ")" + }, + { + "type": "whitespace", + "start": 64203, + "end": 64206, + "value": "\n " + }, + { + "type": "operator", + "start": 64206, + "end": 64208, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64208, + "end": 64209, + "value": " " + }, + { + "type": "word", + "start": 64209, + "end": 64213, + "value": "line" + }, + { + "type": "brace", + "start": 64213, + "end": 64214, + "value": "(" + }, + { + "type": "brace", + "start": 64214, + "end": 64215, + "value": "[" + }, + { + "type": "number", + "start": 64215, + "end": 64232, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 64232, + "end": 64233, + "value": "," + }, + { + "type": "whitespace", + "start": 64233, + "end": 64234, + "value": " " + }, + { + "type": "number", + "start": 64234, + "end": 64252, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 64252, + "end": 64253, + "value": "]" + }, + { + "type": "comma", + "start": 64253, + "end": 64254, + "value": "," + }, + { + "type": "whitespace", + "start": 64254, + "end": 64255, + "value": " " + }, + { + "type": "operator", + "start": 64255, + "end": 64256, + "value": "%" + }, + { + "type": "brace", + "start": 64256, + "end": 64257, + "value": ")" + }, + { + "type": "whitespace", + "start": 64257, + "end": 64260, + "value": "\n " + }, + { + "type": "operator", + "start": 64260, + "end": 64262, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64262, + "end": 64263, + "value": " " + }, + { + "type": "word", + "start": 64263, + "end": 64267, + "value": "line" + }, + { + "type": "brace", + "start": 64267, + "end": 64268, + "value": "(" + }, + { + "type": "brace", + "start": 64268, + "end": 64269, + "value": "[" + }, + { + "type": "whitespace", + "start": 64269, + "end": 64277, + "value": "\n " + }, + { + "type": "number", + "start": 64277, + "end": 64296, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 64296, + "end": 64297, + "value": "," + }, + { + "type": "whitespace", + "start": 64297, + "end": 64305, + "value": "\n " + }, + { + "type": "operator", + "start": 64305, + "end": 64306, + "value": "-" + }, + { + "type": "number", + "start": 64306, + "end": 64325, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 64325, + "end": 64331, + "value": "\n " + }, + { + "type": "brace", + "start": 64331, + "end": 64332, + "value": "]" + }, + { + "type": "comma", + "start": 64332, + "end": 64333, + "value": "," + }, + { + "type": "whitespace", + "start": 64333, + "end": 64334, + "value": " " + }, + { + "type": "operator", + "start": 64334, + "end": 64335, + "value": "%" + }, + { + "type": "brace", + "start": 64335, + "end": 64336, + "value": ")" + }, + { + "type": "whitespace", + "start": 64336, + "end": 64339, + "value": "\n " + }, + { + "type": "operator", + "start": 64339, + "end": 64341, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64341, + "end": 64342, + "value": " " + }, + { + "type": "word", + "start": 64342, + "end": 64346, + "value": "line" + }, + { + "type": "brace", + "start": 64346, + "end": 64347, + "value": "(" + }, + { + "type": "brace", + "start": 64347, + "end": 64348, + "value": "[" + }, + { + "type": "number", + "start": 64348, + "end": 64366, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 64366, + "end": 64367, + "value": "," + }, + { + "type": "whitespace", + "start": 64367, + "end": 64368, + "value": " " + }, + { + "type": "number", + "start": 64368, + "end": 64385, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 64385, + "end": 64386, + "value": "]" + }, + { + "type": "comma", + "start": 64386, + "end": 64387, + "value": "," + }, + { + "type": "whitespace", + "start": 64387, + "end": 64388, + "value": " " + }, + { + "type": "operator", + "start": 64388, + "end": 64389, + "value": "%" + }, + { + "type": "brace", + "start": 64389, + "end": 64390, + "value": ")" + }, + { + "type": "whitespace", + "start": 64390, + "end": 64393, + "value": "\n " + }, + { + "type": "operator", + "start": 64393, + "end": 64395, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64395, + "end": 64396, + "value": " " + }, + { + "type": "word", + "start": 64396, + "end": 64400, + "value": "line" + }, + { + "type": "brace", + "start": 64400, + "end": 64401, + "value": "(" + }, + { + "type": "brace", + "start": 64401, + "end": 64402, + "value": "[" + }, + { + "type": "whitespace", + "start": 64402, + "end": 64410, + "value": "\n " + }, + { + "type": "number", + "start": 64410, + "end": 64429, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 64429, + "end": 64430, + "value": "," + }, + { + "type": "whitespace", + "start": 64430, + "end": 64438, + "value": "\n " + }, + { + "type": "operator", + "start": 64438, + "end": 64439, + "value": "-" + }, + { + "type": "number", + "start": 64439, + "end": 64457, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 64457, + "end": 64463, + "value": "\n " + }, + { + "type": "brace", + "start": 64463, + "end": 64464, + "value": "]" + }, + { + "type": "comma", + "start": 64464, + "end": 64465, + "value": "," + }, + { + "type": "whitespace", + "start": 64465, + "end": 64466, + "value": " " + }, + { + "type": "operator", + "start": 64466, + "end": 64467, + "value": "%" + }, + { + "type": "brace", + "start": 64467, + "end": 64468, + "value": ")" + }, + { + "type": "whitespace", + "start": 64468, + "end": 64471, + "value": "\n " + }, + { + "type": "operator", + "start": 64471, + "end": 64473, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64473, + "end": 64474, + "value": " " + }, + { + "type": "word", + "start": 64474, + "end": 64478, + "value": "line" + }, + { + "type": "brace", + "start": 64478, + "end": 64479, + "value": "(" + }, + { + "type": "brace", + "start": 64479, + "end": 64480, + "value": "[" + }, + { + "type": "number", + "start": 64480, + "end": 64498, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 64498, + "end": 64499, + "value": "," + }, + { + "type": "whitespace", + "start": 64499, + "end": 64500, + "value": " " + }, + { + "type": "number", + "start": 64500, + "end": 64518, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 64518, + "end": 64519, + "value": "]" + }, + { + "type": "comma", + "start": 64519, + "end": 64520, + "value": "," + }, + { + "type": "whitespace", + "start": 64520, + "end": 64521, + "value": " " + }, + { + "type": "operator", + "start": 64521, + "end": 64522, + "value": "%" + }, + { + "type": "brace", + "start": 64522, + "end": 64523, + "value": ")" + }, + { + "type": "whitespace", + "start": 64523, + "end": 64526, + "value": "\n " + }, + { + "type": "operator", + "start": 64526, + "end": 64528, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64528, + "end": 64529, + "value": " " + }, + { + "type": "word", + "start": 64529, + "end": 64533, + "value": "line" + }, + { + "type": "brace", + "start": 64533, + "end": 64534, + "value": "(" + }, + { + "type": "brace", + "start": 64534, + "end": 64535, + "value": "[" + }, + { + "type": "whitespace", + "start": 64535, + "end": 64543, + "value": "\n " + }, + { + "type": "number", + "start": 64543, + "end": 64561, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 64561, + "end": 64562, + "value": "," + }, + { + "type": "whitespace", + "start": 64562, + "end": 64570, + "value": "\n " + }, + { + "type": "number", + "start": 64570, + "end": 64589, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 64589, + "end": 64595, + "value": "\n " + }, + { + "type": "brace", + "start": 64595, + "end": 64596, + "value": "]" + }, + { + "type": "comma", + "start": 64596, + "end": 64597, + "value": "," + }, + { + "type": "whitespace", + "start": 64597, + "end": 64598, + "value": " " + }, + { + "type": "operator", + "start": 64598, + "end": 64599, + "value": "%" + }, + { + "type": "brace", + "start": 64599, + "end": 64600, + "value": ")" + }, + { + "type": "whitespace", + "start": 64600, + "end": 64603, + "value": "\n " + }, + { + "type": "operator", + "start": 64603, + "end": 64605, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64605, + "end": 64606, + "value": " " + }, + { + "type": "word", + "start": 64606, + "end": 64610, + "value": "line" + }, + { + "type": "brace", + "start": 64610, + "end": 64611, + "value": "(" + }, + { + "type": "brace", + "start": 64611, + "end": 64612, + "value": "[" + }, + { + "type": "number", + "start": 64612, + "end": 64630, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 64630, + "end": 64631, + "value": "," + }, + { + "type": "whitespace", + "start": 64631, + "end": 64632, + "value": " " + }, + { + "type": "number", + "start": 64632, + "end": 64650, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 64650, + "end": 64651, + "value": "]" + }, + { + "type": "comma", + "start": 64651, + "end": 64652, + "value": "," + }, + { + "type": "whitespace", + "start": 64652, + "end": 64653, + "value": " " + }, + { + "type": "operator", + "start": 64653, + "end": 64654, + "value": "%" + }, + { + "type": "brace", + "start": 64654, + "end": 64655, + "value": ")" + }, + { + "type": "whitespace", + "start": 64655, + "end": 64658, + "value": "\n " + }, + { + "type": "operator", + "start": 64658, + "end": 64660, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64660, + "end": 64661, + "value": " " + }, + { + "type": "word", + "start": 64661, + "end": 64665, + "value": "line" + }, + { + "type": "brace", + "start": 64665, + "end": 64666, + "value": "(" + }, + { + "type": "brace", + "start": 64666, + "end": 64667, + "value": "[" + }, + { + "type": "whitespace", + "start": 64667, + "end": 64675, + "value": "\n " + }, + { + "type": "operator", + "start": 64675, + "end": 64676, + "value": "-" + }, + { + "type": "number", + "start": 64676, + "end": 64694, + "value": "0.3670208139314082" + }, + { + "type": "comma", + "start": 64694, + "end": 64695, + "value": "," + }, + { + "type": "whitespace", + "start": 64695, + "end": 64703, + "value": "\n " + }, + { + "type": "number", + "start": 64703, + "end": 64722, + "value": "0.21201331909674526" + }, + { + "type": "whitespace", + "start": 64722, + "end": 64728, + "value": "\n " + }, + { + "type": "brace", + "start": 64728, + "end": 64729, + "value": "]" + }, + { + "type": "comma", + "start": 64729, + "end": 64730, + "value": "," + }, + { + "type": "whitespace", + "start": 64730, + "end": 64731, + "value": " " + }, + { + "type": "operator", + "start": 64731, + "end": 64732, + "value": "%" + }, + { + "type": "brace", + "start": 64732, + "end": 64733, + "value": ")" + }, + { + "type": "whitespace", + "start": 64733, + "end": 64736, + "value": "\n " + }, + { + "type": "operator", + "start": 64736, + "end": 64738, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64738, + "end": 64739, + "value": " " + }, + { + "type": "word", + "start": 64739, + "end": 64743, + "value": "line" + }, + { + "type": "brace", + "start": 64743, + "end": 64744, + "value": "(" + }, + { + "type": "brace", + "start": 64744, + "end": 64745, + "value": "[" + }, + { + "type": "whitespace", + "start": 64745, + "end": 64753, + "value": "\n " + }, + { + "type": "operator", + "start": 64753, + "end": 64754, + "value": "-" + }, + { + "type": "number", + "start": 64754, + "end": 64772, + "value": "0.4707511307971115" + }, + { + "type": "comma", + "start": 64772, + "end": 64773, + "value": "," + }, + { + "type": "whitespace", + "start": 64773, + "end": 64781, + "value": "\n " + }, + { + "type": "number", + "start": 64781, + "end": 64799, + "value": "0.4905279615419764" + }, + { + "type": "whitespace", + "start": 64799, + "end": 64805, + "value": "\n " + }, + { + "type": "brace", + "start": 64805, + "end": 64806, + "value": "]" + }, + { + "type": "comma", + "start": 64806, + "end": 64807, + "value": "," + }, + { + "type": "whitespace", + "start": 64807, + "end": 64808, + "value": " " + }, + { + "type": "operator", + "start": 64808, + "end": 64809, + "value": "%" + }, + { + "type": "brace", + "start": 64809, + "end": 64810, + "value": ")" + }, + { + "type": "whitespace", + "start": 64810, + "end": 64813, + "value": "\n " + }, + { + "type": "operator", + "start": 64813, + "end": 64815, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64815, + "end": 64816, + "value": " " + }, + { + "type": "word", + "start": 64816, + "end": 64820, + "value": "line" + }, + { + "type": "brace", + "start": 64820, + "end": 64821, + "value": "(" + }, + { + "type": "brace", + "start": 64821, + "end": 64822, + "value": "[" + }, + { + "type": "whitespace", + "start": 64822, + "end": 64830, + "value": "\n " + }, + { + "type": "operator", + "start": 64830, + "end": 64831, + "value": "-" + }, + { + "type": "number", + "start": 64831, + "end": 64849, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 64849, + "end": 64850, + "value": "," + }, + { + "type": "whitespace", + "start": 64850, + "end": 64858, + "value": "\n " + }, + { + "type": "number", + "start": 64858, + "end": 64876, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 64876, + "end": 64882, + "value": "\n " + }, + { + "type": "brace", + "start": 64882, + "end": 64883, + "value": "]" + }, + { + "type": "comma", + "start": 64883, + "end": 64884, + "value": "," + }, + { + "type": "whitespace", + "start": 64884, + "end": 64885, + "value": " " + }, + { + "type": "operator", + "start": 64885, + "end": 64886, + "value": "%" + }, + { + "type": "brace", + "start": 64886, + "end": 64887, + "value": ")" + }, + { + "type": "whitespace", + "start": 64887, + "end": 64890, + "value": "\n " + }, + { + "type": "operator", + "start": 64890, + "end": 64892, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64892, + "end": 64893, + "value": " " + }, + { + "type": "word", + "start": 64893, + "end": 64897, + "value": "line" + }, + { + "type": "brace", + "start": 64897, + "end": 64898, + "value": "(" + }, + { + "type": "brace", + "start": 64898, + "end": 64899, + "value": "[" + }, + { + "type": "whitespace", + "start": 64899, + "end": 64907, + "value": "\n " + }, + { + "type": "operator", + "start": 64907, + "end": 64908, + "value": "-" + }, + { + "type": "number", + "start": 64908, + "end": 64926, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 64926, + "end": 64927, + "value": "," + }, + { + "type": "whitespace", + "start": 64927, + "end": 64935, + "value": "\n " + }, + { + "type": "operator", + "start": 64935, + "end": 64936, + "value": "-" + }, + { + "type": "number", + "start": 64936, + "end": 64955, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 64955, + "end": 64961, + "value": "\n " + }, + { + "type": "brace", + "start": 64961, + "end": 64962, + "value": "]" + }, + { + "type": "comma", + "start": 64962, + "end": 64963, + "value": "," + }, + { + "type": "whitespace", + "start": 64963, + "end": 64964, + "value": " " + }, + { + "type": "operator", + "start": 64964, + "end": 64965, + "value": "%" + }, + { + "type": "brace", + "start": 64965, + "end": 64966, + "value": ")" + }, + { + "type": "whitespace", + "start": 64966, + "end": 64969, + "value": "\n " + }, + { + "type": "operator", + "start": 64969, + "end": 64971, + "value": "|>" + }, + { + "type": "whitespace", + "start": 64971, + "end": 64972, + "value": " " + }, + { + "type": "word", + "start": 64972, + "end": 64976, + "value": "line" + }, + { + "type": "brace", + "start": 64976, + "end": 64977, + "value": "(" + }, + { + "type": "brace", + "start": 64977, + "end": 64978, + "value": "[" + }, + { + "type": "whitespace", + "start": 64978, + "end": 64986, + "value": "\n " + }, + { + "type": "number", + "start": 64986, + "end": 65005, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 65005, + "end": 65006, + "value": "," + }, + { + "type": "whitespace", + "start": 65006, + "end": 65014, + "value": "\n " + }, + { + "type": "number", + "start": 65014, + "end": 65033, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 65033, + "end": 65039, + "value": "\n " + }, + { + "type": "brace", + "start": 65039, + "end": 65040, + "value": "]" + }, + { + "type": "comma", + "start": 65040, + "end": 65041, + "value": "," + }, + { + "type": "whitespace", + "start": 65041, + "end": 65042, + "value": " " + }, + { + "type": "operator", + "start": 65042, + "end": 65043, + "value": "%" + }, + { + "type": "brace", + "start": 65043, + "end": 65044, + "value": ")" + }, + { + "type": "whitespace", + "start": 65044, + "end": 65047, + "value": "\n " + }, + { + "type": "operator", + "start": 65047, + "end": 65049, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65049, + "end": 65050, + "value": " " + }, + { + "type": "word", + "start": 65050, + "end": 65054, + "value": "line" + }, + { + "type": "brace", + "start": 65054, + "end": 65055, + "value": "(" + }, + { + "type": "brace", + "start": 65055, + "end": 65056, + "value": "[" + }, + { + "type": "whitespace", + "start": 65056, + "end": 65064, + "value": "\n " + }, + { + "type": "number", + "start": 65064, + "end": 65083, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 65083, + "end": 65084, + "value": "," + }, + { + "type": "whitespace", + "start": 65084, + "end": 65092, + "value": "\n " + }, + { + "type": "number", + "start": 65092, + "end": 65111, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 65111, + "end": 65117, + "value": "\n " + }, + { + "type": "brace", + "start": 65117, + "end": 65118, + "value": "]" + }, + { + "type": "comma", + "start": 65118, + "end": 65119, + "value": "," + }, + { + "type": "whitespace", + "start": 65119, + "end": 65120, + "value": " " + }, + { + "type": "operator", + "start": 65120, + "end": 65121, + "value": "%" + }, + { + "type": "brace", + "start": 65121, + "end": 65122, + "value": ")" + }, + { + "type": "whitespace", + "start": 65122, + "end": 65125, + "value": "\n " + }, + { + "type": "operator", + "start": 65125, + "end": 65127, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65127, + "end": 65128, + "value": " " + }, + { + "type": "word", + "start": 65128, + "end": 65132, + "value": "line" + }, + { + "type": "brace", + "start": 65132, + "end": 65133, + "value": "(" + }, + { + "type": "brace", + "start": 65133, + "end": 65134, + "value": "[" + }, + { + "type": "whitespace", + "start": 65134, + "end": 65142, + "value": "\n " + }, + { + "type": "operator", + "start": 65142, + "end": 65143, + "value": "-" + }, + { + "type": "number", + "start": 65143, + "end": 65162, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 65162, + "end": 65163, + "value": "," + }, + { + "type": "whitespace", + "start": 65163, + "end": 65171, + "value": "\n " + }, + { + "type": "number", + "start": 65171, + "end": 65189, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 65189, + "end": 65195, + "value": "\n " + }, + { + "type": "brace", + "start": 65195, + "end": 65196, + "value": "]" + }, + { + "type": "comma", + "start": 65196, + "end": 65197, + "value": "," + }, + { + "type": "whitespace", + "start": 65197, + "end": 65198, + "value": " " + }, + { + "type": "operator", + "start": 65198, + "end": 65199, + "value": "%" + }, + { + "type": "brace", + "start": 65199, + "end": 65200, + "value": ")" + }, + { + "type": "whitespace", + "start": 65200, + "end": 65203, + "value": "\n " + }, + { + "type": "operator", + "start": 65203, + "end": 65205, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65205, + "end": 65206, + "value": " " + }, + { + "type": "word", + "start": 65206, + "end": 65210, + "value": "line" + }, + { + "type": "brace", + "start": 65210, + "end": 65211, + "value": "(" + }, + { + "type": "brace", + "start": 65211, + "end": 65212, + "value": "[" + }, + { + "type": "whitespace", + "start": 65212, + "end": 65220, + "value": "\n " + }, + { + "type": "operator", + "start": 65220, + "end": 65221, + "value": "-" + }, + { + "type": "number", + "start": 65221, + "end": 65240, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 65240, + "end": 65241, + "value": "," + }, + { + "type": "whitespace", + "start": 65241, + "end": 65249, + "value": "\n " + }, + { + "type": "operator", + "start": 65249, + "end": 65250, + "value": "-" + }, + { + "type": "number", + "start": 65250, + "end": 65269, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 65269, + "end": 65275, + "value": "\n " + }, + { + "type": "brace", + "start": 65275, + "end": 65276, + "value": "]" + }, + { + "type": "comma", + "start": 65276, + "end": 65277, + "value": "," + }, + { + "type": "whitespace", + "start": 65277, + "end": 65278, + "value": " " + }, + { + "type": "operator", + "start": 65278, + "end": 65279, + "value": "%" + }, + { + "type": "brace", + "start": 65279, + "end": 65280, + "value": ")" + }, + { + "type": "whitespace", + "start": 65280, + "end": 65283, + "value": "\n " + }, + { + "type": "operator", + "start": 65283, + "end": 65285, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65285, + "end": 65286, + "value": " " + }, + { + "type": "word", + "start": 65286, + "end": 65290, + "value": "line" + }, + { + "type": "brace", + "start": 65290, + "end": 65291, + "value": "(" + }, + { + "type": "brace", + "start": 65291, + "end": 65292, + "value": "[" + }, + { + "type": "whitespace", + "start": 65292, + "end": 65300, + "value": "\n " + }, + { + "type": "number", + "start": 65300, + "end": 65318, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 65318, + "end": 65319, + "value": "," + }, + { + "type": "whitespace", + "start": 65319, + "end": 65327, + "value": "\n " + }, + { + "type": "operator", + "start": 65327, + "end": 65328, + "value": "-" + }, + { + "type": "number", + "start": 65328, + "end": 65347, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 65347, + "end": 65353, + "value": "\n " + }, + { + "type": "brace", + "start": 65353, + "end": 65354, + "value": "]" + }, + { + "type": "comma", + "start": 65354, + "end": 65355, + "value": "," + }, + { + "type": "whitespace", + "start": 65355, + "end": 65356, + "value": " " + }, + { + "type": "operator", + "start": 65356, + "end": 65357, + "value": "%" + }, + { + "type": "brace", + "start": 65357, + "end": 65358, + "value": ")" + }, + { + "type": "whitespace", + "start": 65358, + "end": 65361, + "value": "\n " + }, + { + "type": "operator", + "start": 65361, + "end": 65363, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65363, + "end": 65364, + "value": " " + }, + { + "type": "word", + "start": 65364, + "end": 65368, + "value": "line" + }, + { + "type": "brace", + "start": 65368, + "end": 65369, + "value": "(" + }, + { + "type": "brace", + "start": 65369, + "end": 65370, + "value": "[" + }, + { + "type": "whitespace", + "start": 65370, + "end": 65378, + "value": "\n " + }, + { + "type": "number", + "start": 65378, + "end": 65399, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 65399, + "end": 65400, + "value": "," + }, + { + "type": "whitespace", + "start": 65400, + "end": 65408, + "value": "\n " + }, + { + "type": "operator", + "start": 65408, + "end": 65409, + "value": "-" + }, + { + "type": "number", + "start": 65409, + "end": 65427, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 65427, + "end": 65433, + "value": "\n " + }, + { + "type": "brace", + "start": 65433, + "end": 65434, + "value": "]" + }, + { + "type": "comma", + "start": 65434, + "end": 65435, + "value": "," + }, + { + "type": "whitespace", + "start": 65435, + "end": 65436, + "value": " " + }, + { + "type": "operator", + "start": 65436, + "end": 65437, + "value": "%" + }, + { + "type": "brace", + "start": 65437, + "end": 65438, + "value": ")" + }, + { + "type": "whitespace", + "start": 65438, + "end": 65441, + "value": "\n " + }, + { + "type": "operator", + "start": 65441, + "end": 65443, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65443, + "end": 65444, + "value": " " + }, + { + "type": "word", + "start": 65444, + "end": 65448, + "value": "line" + }, + { + "type": "brace", + "start": 65448, + "end": 65449, + "value": "(" + }, + { + "type": "brace", + "start": 65449, + "end": 65450, + "value": "[" + }, + { + "type": "whitespace", + "start": 65450, + "end": 65458, + "value": "\n " + }, + { + "type": "number", + "start": 65458, + "end": 65476, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 65476, + "end": 65477, + "value": "," + }, + { + "type": "whitespace", + "start": 65477, + "end": 65485, + "value": "\n " + }, + { + "type": "operator", + "start": 65485, + "end": 65486, + "value": "-" + }, + { + "type": "number", + "start": 65486, + "end": 65504, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 65504, + "end": 65510, + "value": "\n " + }, + { + "type": "brace", + "start": 65510, + "end": 65511, + "value": "]" + }, + { + "type": "comma", + "start": 65511, + "end": 65512, + "value": "," + }, + { + "type": "whitespace", + "start": 65512, + "end": 65513, + "value": " " + }, + { + "type": "operator", + "start": 65513, + "end": 65514, + "value": "%" + }, + { + "type": "brace", + "start": 65514, + "end": 65515, + "value": ")" + }, + { + "type": "whitespace", + "start": 65515, + "end": 65518, + "value": "\n " + }, + { + "type": "operator", + "start": 65518, + "end": 65520, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65520, + "end": 65521, + "value": " " + }, + { + "type": "word", + "start": 65521, + "end": 65525, + "value": "line" + }, + { + "type": "brace", + "start": 65525, + "end": 65526, + "value": "(" + }, + { + "type": "brace", + "start": 65526, + "end": 65527, + "value": "[" + }, + { + "type": "whitespace", + "start": 65527, + "end": 65535, + "value": "\n " + }, + { + "type": "operator", + "start": 65535, + "end": 65536, + "value": "-" + }, + { + "type": "number", + "start": 65536, + "end": 65554, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 65554, + "end": 65555, + "value": "," + }, + { + "type": "whitespace", + "start": 65555, + "end": 65563, + "value": "\n " + }, + { + "type": "number", + "start": 65563, + "end": 65581, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 65581, + "end": 65587, + "value": "\n " + }, + { + "type": "brace", + "start": 65587, + "end": 65588, + "value": "]" + }, + { + "type": "comma", + "start": 65588, + "end": 65589, + "value": "," + }, + { + "type": "whitespace", + "start": 65589, + "end": 65590, + "value": " " + }, + { + "type": "operator", + "start": 65590, + "end": 65591, + "value": "%" + }, + { + "type": "brace", + "start": 65591, + "end": 65592, + "value": ")" + }, + { + "type": "whitespace", + "start": 65592, + "end": 65595, + "value": "\n " + }, + { + "type": "operator", + "start": 65595, + "end": 65597, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65597, + "end": 65598, + "value": " " + }, + { + "type": "word", + "start": 65598, + "end": 65602, + "value": "line" + }, + { + "type": "brace", + "start": 65602, + "end": 65603, + "value": "(" + }, + { + "type": "brace", + "start": 65603, + "end": 65604, + "value": "[" + }, + { + "type": "number", + "start": 65604, + "end": 65622, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 65622, + "end": 65623, + "value": "," + }, + { + "type": "whitespace", + "start": 65623, + "end": 65624, + "value": " " + }, + { + "type": "number", + "start": 65624, + "end": 65642, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 65642, + "end": 65643, + "value": "]" + }, + { + "type": "comma", + "start": 65643, + "end": 65644, + "value": "," + }, + { + "type": "whitespace", + "start": 65644, + "end": 65645, + "value": " " + }, + { + "type": "operator", + "start": 65645, + "end": 65646, + "value": "%" + }, + { + "type": "brace", + "start": 65646, + "end": 65647, + "value": ")" + }, + { + "type": "whitespace", + "start": 65647, + "end": 65650, + "value": "\n " + }, + { + "type": "operator", + "start": 65650, + "end": 65652, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65652, + "end": 65653, + "value": " " + }, + { + "type": "word", + "start": 65653, + "end": 65657, + "value": "line" + }, + { + "type": "brace", + "start": 65657, + "end": 65658, + "value": "(" + }, + { + "type": "brace", + "start": 65658, + "end": 65659, + "value": "[" + }, + { + "type": "whitespace", + "start": 65659, + "end": 65667, + "value": "\n " + }, + { + "type": "operator", + "start": 65667, + "end": 65668, + "value": "-" + }, + { + "type": "number", + "start": 65668, + "end": 65687, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 65687, + "end": 65688, + "value": "," + }, + { + "type": "whitespace", + "start": 65688, + "end": 65696, + "value": "\n " + }, + { + "type": "number", + "start": 65696, + "end": 65716, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 65716, + "end": 65722, + "value": "\n " + }, + { + "type": "brace", + "start": 65722, + "end": 65723, + "value": "]" + }, + { + "type": "comma", + "start": 65723, + "end": 65724, + "value": "," + }, + { + "type": "whitespace", + "start": 65724, + "end": 65725, + "value": " " + }, + { + "type": "operator", + "start": 65725, + "end": 65726, + "value": "%" + }, + { + "type": "brace", + "start": 65726, + "end": 65727, + "value": ")" + }, + { + "type": "whitespace", + "start": 65727, + "end": 65730, + "value": "\n " + }, + { + "type": "operator", + "start": 65730, + "end": 65732, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65732, + "end": 65733, + "value": " " + }, + { + "type": "word", + "start": 65733, + "end": 65737, + "value": "line" + }, + { + "type": "brace", + "start": 65737, + "end": 65738, + "value": "(" + }, + { + "type": "brace", + "start": 65738, + "end": 65739, + "value": "[" + }, + { + "type": "whitespace", + "start": 65739, + "end": 65747, + "value": "\n " + }, + { + "type": "operator", + "start": 65747, + "end": 65748, + "value": "-" + }, + { + "type": "number", + "start": 65748, + "end": 65766, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 65766, + "end": 65767, + "value": "," + }, + { + "type": "whitespace", + "start": 65767, + "end": 65775, + "value": "\n " + }, + { + "type": "operator", + "start": 65775, + "end": 65776, + "value": "-" + }, + { + "type": "number", + "start": 65776, + "end": 65795, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 65795, + "end": 65801, + "value": "\n " + }, + { + "type": "brace", + "start": 65801, + "end": 65802, + "value": "]" + }, + { + "type": "comma", + "start": 65802, + "end": 65803, + "value": "," + }, + { + "type": "whitespace", + "start": 65803, + "end": 65804, + "value": " " + }, + { + "type": "operator", + "start": 65804, + "end": 65805, + "value": "%" + }, + { + "type": "brace", + "start": 65805, + "end": 65806, + "value": ")" + }, + { + "type": "whitespace", + "start": 65806, + "end": 65809, + "value": "\n " + }, + { + "type": "operator", + "start": 65809, + "end": 65811, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65811, + "end": 65812, + "value": " " + }, + { + "type": "word", + "start": 65812, + "end": 65816, + "value": "line" + }, + { + "type": "brace", + "start": 65816, + "end": 65817, + "value": "(" + }, + { + "type": "brace", + "start": 65817, + "end": 65818, + "value": "[" + }, + { + "type": "whitespace", + "start": 65818, + "end": 65826, + "value": "\n " + }, + { + "type": "operator", + "start": 65826, + "end": 65827, + "value": "-" + }, + { + "type": "number", + "start": 65827, + "end": 65845, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 65845, + "end": 65846, + "value": "," + }, + { + "type": "whitespace", + "start": 65846, + "end": 65854, + "value": "\n " + }, + { + "type": "operator", + "start": 65854, + "end": 65855, + "value": "-" + }, + { + "type": "number", + "start": 65855, + "end": 65874, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 65874, + "end": 65880, + "value": "\n " + }, + { + "type": "brace", + "start": 65880, + "end": 65881, + "value": "]" + }, + { + "type": "comma", + "start": 65881, + "end": 65882, + "value": "," + }, + { + "type": "whitespace", + "start": 65882, + "end": 65883, + "value": " " + }, + { + "type": "operator", + "start": 65883, + "end": 65884, + "value": "%" + }, + { + "type": "brace", + "start": 65884, + "end": 65885, + "value": ")" + }, + { + "type": "whitespace", + "start": 65885, + "end": 65888, + "value": "\n " + }, + { + "type": "operator", + "start": 65888, + "end": 65890, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65890, + "end": 65891, + "value": " " + }, + { + "type": "word", + "start": 65891, + "end": 65895, + "value": "line" + }, + { + "type": "brace", + "start": 65895, + "end": 65896, + "value": "(" + }, + { + "type": "brace", + "start": 65896, + "end": 65897, + "value": "[" + }, + { + "type": "number", + "start": 65897, + "end": 65914, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 65914, + "end": 65915, + "value": "," + }, + { + "type": "whitespace", + "start": 65915, + "end": 65916, + "value": " " + }, + { + "type": "number", + "start": 65916, + "end": 65934, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 65934, + "end": 65935, + "value": "]" + }, + { + "type": "comma", + "start": 65935, + "end": 65936, + "value": "," + }, + { + "type": "whitespace", + "start": 65936, + "end": 65937, + "value": " " + }, + { + "type": "operator", + "start": 65937, + "end": 65938, + "value": "%" + }, + { + "type": "brace", + "start": 65938, + "end": 65939, + "value": ")" + }, + { + "type": "whitespace", + "start": 65939, + "end": 65942, + "value": "\n " + }, + { + "type": "operator", + "start": 65942, + "end": 65944, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65944, + "end": 65945, + "value": " " + }, + { + "type": "word", + "start": 65945, + "end": 65949, + "value": "line" + }, + { + "type": "brace", + "start": 65949, + "end": 65950, + "value": "(" + }, + { + "type": "brace", + "start": 65950, + "end": 65951, + "value": "[" + }, + { + "type": "whitespace", + "start": 65951, + "end": 65959, + "value": "\n " + }, + { + "type": "number", + "start": 65959, + "end": 65978, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 65978, + "end": 65979, + "value": "," + }, + { + "type": "whitespace", + "start": 65979, + "end": 65987, + "value": "\n " + }, + { + "type": "operator", + "start": 65987, + "end": 65988, + "value": "-" + }, + { + "type": "number", + "start": 65988, + "end": 66007, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 66007, + "end": 66013, + "value": "\n " + }, + { + "type": "brace", + "start": 66013, + "end": 66014, + "value": "]" + }, + { + "type": "comma", + "start": 66014, + "end": 66015, + "value": "," + }, + { + "type": "whitespace", + "start": 66015, + "end": 66016, + "value": " " + }, + { + "type": "operator", + "start": 66016, + "end": 66017, + "value": "%" + }, + { + "type": "brace", + "start": 66017, + "end": 66018, + "value": ")" + }, + { + "type": "whitespace", + "start": 66018, + "end": 66021, + "value": "\n " + }, + { + "type": "operator", + "start": 66021, + "end": 66023, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66023, + "end": 66024, + "value": " " + }, + { + "type": "word", + "start": 66024, + "end": 66028, + "value": "line" + }, + { + "type": "brace", + "start": 66028, + "end": 66029, + "value": "(" + }, + { + "type": "brace", + "start": 66029, + "end": 66030, + "value": "[" + }, + { + "type": "number", + "start": 66030, + "end": 66048, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 66048, + "end": 66049, + "value": "," + }, + { + "type": "whitespace", + "start": 66049, + "end": 66050, + "value": " " + }, + { + "type": "number", + "start": 66050, + "end": 66067, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 66067, + "end": 66068, + "value": "]" + }, + { + "type": "comma", + "start": 66068, + "end": 66069, + "value": "," + }, + { + "type": "whitespace", + "start": 66069, + "end": 66070, + "value": " " + }, + { + "type": "operator", + "start": 66070, + "end": 66071, + "value": "%" + }, + { + "type": "brace", + "start": 66071, + "end": 66072, + "value": ")" + }, + { + "type": "whitespace", + "start": 66072, + "end": 66075, + "value": "\n " + }, + { + "type": "operator", + "start": 66075, + "end": 66077, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66077, + "end": 66078, + "value": " " + }, + { + "type": "word", + "start": 66078, + "end": 66082, + "value": "line" + }, + { + "type": "brace", + "start": 66082, + "end": 66083, + "value": "(" + }, + { + "type": "brace", + "start": 66083, + "end": 66084, + "value": "[" + }, + { + "type": "whitespace", + "start": 66084, + "end": 66092, + "value": "\n " + }, + { + "type": "number", + "start": 66092, + "end": 66111, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 66111, + "end": 66112, + "value": "," + }, + { + "type": "whitespace", + "start": 66112, + "end": 66120, + "value": "\n " + }, + { + "type": "operator", + "start": 66120, + "end": 66121, + "value": "-" + }, + { + "type": "number", + "start": 66121, + "end": 66139, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 66139, + "end": 66145, + "value": "\n " + }, + { + "type": "brace", + "start": 66145, + "end": 66146, + "value": "]" + }, + { + "type": "comma", + "start": 66146, + "end": 66147, + "value": "," + }, + { + "type": "whitespace", + "start": 66147, + "end": 66148, + "value": " " + }, + { + "type": "operator", + "start": 66148, + "end": 66149, + "value": "%" + }, + { + "type": "brace", + "start": 66149, + "end": 66150, + "value": ")" + }, + { + "type": "whitespace", + "start": 66150, + "end": 66153, + "value": "\n " + }, + { + "type": "operator", + "start": 66153, + "end": 66155, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66155, + "end": 66156, + "value": " " + }, + { + "type": "word", + "start": 66156, + "end": 66160, + "value": "line" + }, + { + "type": "brace", + "start": 66160, + "end": 66161, + "value": "(" + }, + { + "type": "brace", + "start": 66161, + "end": 66162, + "value": "[" + }, + { + "type": "number", + "start": 66162, + "end": 66180, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 66180, + "end": 66181, + "value": "," + }, + { + "type": "whitespace", + "start": 66181, + "end": 66182, + "value": " " + }, + { + "type": "number", + "start": 66182, + "end": 66200, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 66200, + "end": 66201, + "value": "]" + }, + { + "type": "comma", + "start": 66201, + "end": 66202, + "value": "," + }, + { + "type": "whitespace", + "start": 66202, + "end": 66203, + "value": " " + }, + { + "type": "operator", + "start": 66203, + "end": 66204, + "value": "%" + }, + { + "type": "brace", + "start": 66204, + "end": 66205, + "value": ")" + }, + { + "type": "whitespace", + "start": 66205, + "end": 66208, + "value": "\n " + }, + { + "type": "operator", + "start": 66208, + "end": 66210, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66210, + "end": 66211, + "value": " " + }, + { + "type": "word", + "start": 66211, + "end": 66215, + "value": "line" + }, + { + "type": "brace", + "start": 66215, + "end": 66216, + "value": "(" + }, + { + "type": "brace", + "start": 66216, + "end": 66217, + "value": "[" + }, + { + "type": "whitespace", + "start": 66217, + "end": 66225, + "value": "\n " + }, + { + "type": "number", + "start": 66225, + "end": 66243, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 66243, + "end": 66244, + "value": "," + }, + { + "type": "whitespace", + "start": 66244, + "end": 66252, + "value": "\n " + }, + { + "type": "number", + "start": 66252, + "end": 66271, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 66271, + "end": 66277, + "value": "\n " + }, + { + "type": "brace", + "start": 66277, + "end": 66278, + "value": "]" + }, + { + "type": "comma", + "start": 66278, + "end": 66279, + "value": "," + }, + { + "type": "whitespace", + "start": 66279, + "end": 66280, + "value": " " + }, + { + "type": "operator", + "start": 66280, + "end": 66281, + "value": "%" + }, + { + "type": "brace", + "start": 66281, + "end": 66282, + "value": ")" + }, + { + "type": "whitespace", + "start": 66282, + "end": 66285, + "value": "\n " + }, + { + "type": "operator", + "start": 66285, + "end": 66287, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66287, + "end": 66288, + "value": " " + }, + { + "type": "word", + "start": 66288, + "end": 66292, + "value": "line" + }, + { + "type": "brace", + "start": 66292, + "end": 66293, + "value": "(" + }, + { + "type": "brace", + "start": 66293, + "end": 66294, + "value": "[" + }, + { + "type": "number", + "start": 66294, + "end": 66312, + "value": "0.8830488380766681" + }, + { + "type": "comma", + "start": 66312, + "end": 66313, + "value": "," + }, + { + "type": "whitespace", + "start": 66313, + "end": 66314, + "value": " " + }, + { + "type": "number", + "start": 66314, + "end": 66332, + "value": "0.6996724408425232" + }, + { + "type": "brace", + "start": 66332, + "end": 66333, + "value": "]" + }, + { + "type": "comma", + "start": 66333, + "end": 66334, + "value": "," + }, + { + "type": "whitespace", + "start": 66334, + "end": 66335, + "value": " " + }, + { + "type": "operator", + "start": 66335, + "end": 66336, + "value": "%" + }, + { + "type": "brace", + "start": 66336, + "end": 66337, + "value": ")" + }, + { + "type": "whitespace", + "start": 66337, + "end": 66340, + "value": "\n " + }, + { + "type": "operator", + "start": 66340, + "end": 66342, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66342, + "end": 66343, + "value": " " + }, + { + "type": "word", + "start": 66343, + "end": 66347, + "value": "line" + }, + { + "type": "brace", + "start": 66347, + "end": 66348, + "value": "(" + }, + { + "type": "brace", + "start": 66348, + "end": 66349, + "value": "[" + }, + { + "type": "whitespace", + "start": 66349, + "end": 66357, + "value": "\n " + }, + { + "type": "operator", + "start": 66357, + "end": 66358, + "value": "-" + }, + { + "type": "number", + "start": 66358, + "end": 66377, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 66377, + "end": 66378, + "value": "," + }, + { + "type": "whitespace", + "start": 66378, + "end": 66386, + "value": "\n " + }, + { + "type": "operator", + "start": 66386, + "end": 66387, + "value": "-" + }, + { + "type": "number", + "start": 66387, + "end": 66405, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 66405, + "end": 66411, + "value": "\n " + }, + { + "type": "brace", + "start": 66411, + "end": 66412, + "value": "]" + }, + { + "type": "comma", + "start": 66412, + "end": 66413, + "value": "," + }, + { + "type": "whitespace", + "start": 66413, + "end": 66414, + "value": " " + }, + { + "type": "operator", + "start": 66414, + "end": 66415, + "value": "%" + }, + { + "type": "brace", + "start": 66415, + "end": 66416, + "value": ")" + }, + { + "type": "whitespace", + "start": 66416, + "end": 66419, + "value": "\n " + }, + { + "type": "operator", + "start": 66419, + "end": 66421, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66421, + "end": 66422, + "value": " " + }, + { + "type": "word", + "start": 66422, + "end": 66426, + "value": "line" + }, + { + "type": "brace", + "start": 66426, + "end": 66427, + "value": "(" + }, + { + "type": "brace", + "start": 66427, + "end": 66428, + "value": "[" + }, + { + "type": "whitespace", + "start": 66428, + "end": 66436, + "value": "\n " + }, + { + "type": "number", + "start": 66436, + "end": 66454, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 66454, + "end": 66455, + "value": "," + }, + { + "type": "whitespace", + "start": 66455, + "end": 66463, + "value": "\n " + }, + { + "type": "operator", + "start": 66463, + "end": 66464, + "value": "-" + }, + { + "type": "number", + "start": 66464, + "end": 66482, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 66482, + "end": 66488, + "value": "\n " + }, + { + "type": "brace", + "start": 66488, + "end": 66489, + "value": "]" + }, + { + "type": "comma", + "start": 66489, + "end": 66490, + "value": "," + }, + { + "type": "whitespace", + "start": 66490, + "end": 66491, + "value": " " + }, + { + "type": "operator", + "start": 66491, + "end": 66492, + "value": "%" + }, + { + "type": "brace", + "start": 66492, + "end": 66493, + "value": ")" + }, + { + "type": "whitespace", + "start": 66493, + "end": 66496, + "value": "\n " + }, + { + "type": "operator", + "start": 66496, + "end": 66498, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66498, + "end": 66499, + "value": " " + }, + { + "type": "word", + "start": 66499, + "end": 66503, + "value": "line" + }, + { + "type": "brace", + "start": 66503, + "end": 66504, + "value": "(" + }, + { + "type": "brace", + "start": 66504, + "end": 66505, + "value": "[" + }, + { + "type": "whitespace", + "start": 66505, + "end": 66513, + "value": "\n " + }, + { + "type": "operator", + "start": 66513, + "end": 66514, + "value": "-" + }, + { + "type": "number", + "start": 66514, + "end": 66532, + "value": "0.6716353749059765" + }, + { + "type": "comma", + "start": 66532, + "end": 66533, + "value": "," + }, + { + "type": "whitespace", + "start": 66533, + "end": 66541, + "value": "\n " + }, + { + "type": "operator", + "start": 66541, + "end": 66542, + "value": "-" + }, + { + "type": "number", + "start": 66542, + "end": 66560, + "value": "0.9605576808879026" + }, + { + "type": "whitespace", + "start": 66560, + "end": 66566, + "value": "\n " + }, + { + "type": "brace", + "start": 66566, + "end": 66567, + "value": "]" + }, + { + "type": "comma", + "start": 66567, + "end": 66568, + "value": "," + }, + { + "type": "whitespace", + "start": 66568, + "end": 66569, + "value": " " + }, + { + "type": "operator", + "start": 66569, + "end": 66570, + "value": "%" + }, + { + "type": "brace", + "start": 66570, + "end": 66571, + "value": ")" + }, + { + "type": "whitespace", + "start": 66571, + "end": 66574, + "value": "\n " + }, + { + "type": "operator", + "start": 66574, + "end": 66576, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66576, + "end": 66577, + "value": " " + }, + { + "type": "word", + "start": 66577, + "end": 66581, + "value": "line" + }, + { + "type": "brace", + "start": 66581, + "end": 66582, + "value": "(" + }, + { + "type": "brace", + "start": 66582, + "end": 66583, + "value": "[" + }, + { + "type": "whitespace", + "start": 66583, + "end": 66591, + "value": "\n " + }, + { + "type": "number", + "start": 66591, + "end": 66611, + "value": "0.010280170930300203" + }, + { + "type": "comma", + "start": 66611, + "end": 66612, + "value": "," + }, + { + "type": "whitespace", + "start": 66612, + "end": 66620, + "value": "\n " + }, + { + "type": "operator", + "start": 66620, + "end": 66621, + "value": "-" + }, + { + "type": "number", + "start": 66621, + "end": 66640, + "value": "0.37344123662342166" + }, + { + "type": "whitespace", + "start": 66640, + "end": 66646, + "value": "\n " + }, + { + "type": "brace", + "start": 66646, + "end": 66647, + "value": "]" + }, + { + "type": "comma", + "start": 66647, + "end": 66648, + "value": "," + }, + { + "type": "whitespace", + "start": 66648, + "end": 66649, + "value": " " + }, + { + "type": "operator", + "start": 66649, + "end": 66650, + "value": "%" + }, + { + "type": "brace", + "start": 66650, + "end": 66651, + "value": ")" + }, + { + "type": "whitespace", + "start": 66651, + "end": 66654, + "value": "\n " + }, + { + "type": "operator", + "start": 66654, + "end": 66656, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66656, + "end": 66657, + "value": " " + }, + { + "type": "word", + "start": 66657, + "end": 66661, + "value": "line" + }, + { + "type": "brace", + "start": 66661, + "end": 66662, + "value": "(" + }, + { + "type": "brace", + "start": 66662, + "end": 66663, + "value": "[" + }, + { + "type": "whitespace", + "start": 66663, + "end": 66671, + "value": "\n " + }, + { + "type": "number", + "start": 66671, + "end": 66690, + "value": "0.10357375682791004" + }, + { + "type": "comma", + "start": 66690, + "end": 66691, + "value": "," + }, + { + "type": "whitespace", + "start": 66691, + "end": 66699, + "value": "\n " + }, + { + "type": "operator", + "start": 66699, + "end": 66700, + "value": "-" + }, + { + "type": "number", + "start": 66700, + "end": 66719, + "value": "0.42294321030821425" + }, + { + "type": "whitespace", + "start": 66719, + "end": 66725, + "value": "\n " + }, + { + "type": "brace", + "start": 66725, + "end": 66726, + "value": "]" + }, + { + "type": "comma", + "start": 66726, + "end": 66727, + "value": "," + }, + { + "type": "whitespace", + "start": 66727, + "end": 66728, + "value": " " + }, + { + "type": "operator", + "start": 66728, + "end": 66729, + "value": "%" + }, + { + "type": "brace", + "start": 66729, + "end": 66730, + "value": ")" + }, + { + "type": "whitespace", + "start": 66730, + "end": 66733, + "value": "\n " + }, + { + "type": "operator", + "start": 66733, + "end": 66735, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66735, + "end": 66736, + "value": " " + }, + { + "type": "word", + "start": 66736, + "end": 66740, + "value": "line" + }, + { + "type": "brace", + "start": 66740, + "end": 66741, + "value": "(" + }, + { + "type": "brace", + "start": 66741, + "end": 66742, + "value": "[" + }, + { + "type": "whitespace", + "start": 66742, + "end": 66750, + "value": "\n " + }, + { + "type": "number", + "start": 66750, + "end": 66768, + "value": "0.4520311575096987" + }, + { + "type": "comma", + "start": 66768, + "end": 66769, + "value": "," + }, + { + "type": "whitespace", + "start": 66769, + "end": 66777, + "value": "\n " + }, + { + "type": "operator", + "start": 66777, + "end": 66778, + "value": "-" + }, + { + "type": "number", + "start": 66778, + "end": 66797, + "value": "0.11232675307600548" + }, + { + "type": "whitespace", + "start": 66797, + "end": 66803, + "value": "\n " + }, + { + "type": "brace", + "start": 66803, + "end": 66804, + "value": "]" + }, + { + "type": "comma", + "start": 66804, + "end": 66805, + "value": "," + }, + { + "type": "whitespace", + "start": 66805, + "end": 66806, + "value": " " + }, + { + "type": "operator", + "start": 66806, + "end": 66807, + "value": "%" + }, + { + "type": "brace", + "start": 66807, + "end": 66808, + "value": ")" + }, + { + "type": "whitespace", + "start": 66808, + "end": 66811, + "value": "\n " + }, + { + "type": "operator", + "start": 66811, + "end": 66813, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66813, + "end": 66814, + "value": " " + }, + { + "type": "word", + "start": 66814, + "end": 66818, + "value": "line" + }, + { + "type": "brace", + "start": 66818, + "end": 66819, + "value": "(" + }, + { + "type": "brace", + "start": 66819, + "end": 66820, + "value": "[" + }, + { + "type": "whitespace", + "start": 66820, + "end": 66828, + "value": "\n " + }, + { + "type": "operator", + "start": 66828, + "end": 66829, + "value": "-" + }, + { + "type": "number", + "start": 66829, + "end": 66847, + "value": "0.8821185914380845" + }, + { + "type": "comma", + "start": 66847, + "end": 66848, + "value": "," + }, + { + "type": "whitespace", + "start": 66848, + "end": 66856, + "value": "\n " + }, + { + "type": "operator", + "start": 66856, + "end": 66857, + "value": "-" + }, + { + "type": "number", + "start": 66857, + "end": 66875, + "value": "0.7155147434939819" + }, + { + "type": "whitespace", + "start": 66875, + "end": 66881, + "value": "\n " + }, + { + "type": "brace", + "start": 66881, + "end": 66882, + "value": "]" + }, + { + "type": "comma", + "start": 66882, + "end": 66883, + "value": "," + }, + { + "type": "whitespace", + "start": 66883, + "end": 66884, + "value": " " + }, + { + "type": "operator", + "start": 66884, + "end": 66885, + "value": "%" + }, + { + "type": "brace", + "start": 66885, + "end": 66886, + "value": ")" + }, + { + "type": "whitespace", + "start": 66886, + "end": 66889, + "value": "\n " + }, + { + "type": "operator", + "start": 66889, + "end": 66891, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66891, + "end": 66892, + "value": " " + }, + { + "type": "word", + "start": 66892, + "end": 66896, + "value": "line" + }, + { + "type": "brace", + "start": 66896, + "end": 66897, + "value": "(" + }, + { + "type": "brace", + "start": 66897, + "end": 66898, + "value": "[" + }, + { + "type": "number", + "start": 66898, + "end": 66916, + "value": "0.9195487101690416" + }, + { + "type": "comma", + "start": 66916, + "end": 66917, + "value": "," + }, + { + "type": "whitespace", + "start": 66917, + "end": 66918, + "value": " " + }, + { + "type": "number", + "start": 66918, + "end": 66936, + "value": "0.2691627465297364" + }, + { + "type": "brace", + "start": 66936, + "end": 66937, + "value": "]" + }, + { + "type": "comma", + "start": 66937, + "end": 66938, + "value": "," + }, + { + "type": "whitespace", + "start": 66938, + "end": 66939, + "value": " " + }, + { + "type": "operator", + "start": 66939, + "end": 66940, + "value": "%" + }, + { + "type": "brace", + "start": 66940, + "end": 66941, + "value": ")" + }, + { + "type": "whitespace", + "start": 66941, + "end": 66944, + "value": "\n " + }, + { + "type": "operator", + "start": 66944, + "end": 66946, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66946, + "end": 66947, + "value": " " + }, + { + "type": "word", + "start": 66947, + "end": 66951, + "value": "line" + }, + { + "type": "brace", + "start": 66951, + "end": 66952, + "value": "(" + }, + { + "type": "brace", + "start": 66952, + "end": 66953, + "value": "[" + }, + { + "type": "whitespace", + "start": 66953, + "end": 66961, + "value": "\n " + }, + { + "type": "number", + "start": 66961, + "end": 66979, + "value": "0.7098978191546745" + }, + { + "type": "comma", + "start": 66979, + "end": 66980, + "value": "," + }, + { + "type": "whitespace", + "start": 66980, + "end": 66988, + "value": "\n " + }, + { + "type": "number", + "start": 66988, + "end": 67007, + "value": "0.11710004169385968" + }, + { + "type": "whitespace", + "start": 67007, + "end": 67013, + "value": "\n " + }, + { + "type": "brace", + "start": 67013, + "end": 67014, + "value": "]" + }, + { + "type": "comma", + "start": 67014, + "end": 67015, + "value": "," + }, + { + "type": "whitespace", + "start": 67015, + "end": 67016, + "value": " " + }, + { + "type": "operator", + "start": 67016, + "end": 67017, + "value": "%" + }, + { + "type": "brace", + "start": 67017, + "end": 67018, + "value": ")" + }, + { + "type": "whitespace", + "start": 67018, + "end": 67021, + "value": "\n " + }, + { + "type": "operator", + "start": 67021, + "end": 67023, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67023, + "end": 67024, + "value": " " + }, + { + "type": "word", + "start": 67024, + "end": 67028, + "value": "line" + }, + { + "type": "brace", + "start": 67028, + "end": 67029, + "value": "(" + }, + { + "type": "brace", + "start": 67029, + "end": 67030, + "value": "[" + }, + { + "type": "whitespace", + "start": 67030, + "end": 67038, + "value": "\n " + }, + { + "type": "operator", + "start": 67038, + "end": 67039, + "value": "-" + }, + { + "type": "number", + "start": 67039, + "end": 67058, + "value": "0.37876368560819995" + }, + { + "type": "comma", + "start": 67058, + "end": 67059, + "value": "," + }, + { + "type": "whitespace", + "start": 67059, + "end": 67067, + "value": "\n " + }, + { + "type": "number", + "start": 67067, + "end": 67085, + "value": "0.7106729314759084" + }, + { + "type": "whitespace", + "start": 67085, + "end": 67091, + "value": "\n " + }, + { + "type": "brace", + "start": 67091, + "end": 67092, + "value": "]" + }, + { + "type": "comma", + "start": 67092, + "end": 67093, + "value": "," + }, + { + "type": "whitespace", + "start": 67093, + "end": 67094, + "value": " " + }, + { + "type": "operator", + "start": 67094, + "end": 67095, + "value": "%" + }, + { + "type": "brace", + "start": 67095, + "end": 67096, + "value": ")" + }, + { + "type": "whitespace", + "start": 67096, + "end": 67099, + "value": "\n " + }, + { + "type": "operator", + "start": 67099, + "end": 67101, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67101, + "end": 67102, + "value": " " + }, + { + "type": "word", + "start": 67102, + "end": 67106, + "value": "line" + }, + { + "type": "brace", + "start": 67106, + "end": 67107, + "value": "(" + }, + { + "type": "brace", + "start": 67107, + "end": 67108, + "value": "[" + }, + { + "type": "whitespace", + "start": 67108, + "end": 67116, + "value": "\n " + }, + { + "type": "operator", + "start": 67116, + "end": 67117, + "value": "-" + }, + { + "type": "number", + "start": 67117, + "end": 67136, + "value": "0.29728126898353335" + }, + { + "type": "comma", + "start": 67136, + "end": 67137, + "value": "," + }, + { + "type": "whitespace", + "start": 67137, + "end": 67145, + "value": "\n " + }, + { + "type": "operator", + "start": 67145, + "end": 67146, + "value": "-" + }, + { + "type": "number", + "start": 67146, + "end": 67165, + "value": "0.06649734568328003" + }, + { + "type": "whitespace", + "start": 67165, + "end": 67171, + "value": "\n " + }, + { + "type": "brace", + "start": 67171, + "end": 67172, + "value": "]" + }, + { + "type": "comma", + "start": 67172, + "end": 67173, + "value": "," + }, + { + "type": "whitespace", + "start": 67173, + "end": 67174, + "value": " " + }, + { + "type": "operator", + "start": 67174, + "end": 67175, + "value": "%" + }, + { + "type": "brace", + "start": 67175, + "end": 67176, + "value": ")" + }, + { + "type": "whitespace", + "start": 67176, + "end": 67179, + "value": "\n " + }, + { + "type": "operator", + "start": 67179, + "end": 67181, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67181, + "end": 67182, + "value": " " + }, + { + "type": "word", + "start": 67182, + "end": 67186, + "value": "line" + }, + { + "type": "brace", + "start": 67186, + "end": 67187, + "value": "(" + }, + { + "type": "brace", + "start": 67187, + "end": 67188, + "value": "[" + }, + { + "type": "whitespace", + "start": 67188, + "end": 67196, + "value": "\n " + }, + { + "type": "number", + "start": 67196, + "end": 67215, + "value": "0.22965781558352072" + }, + { + "type": "comma", + "start": 67215, + "end": 67216, + "value": "," + }, + { + "type": "whitespace", + "start": 67216, + "end": 67224, + "value": "\n " + }, + { + "type": "operator", + "start": 67224, + "end": 67225, + "value": "-" + }, + { + "type": "number", + "start": 67225, + "end": 67243, + "value": "0.7601866432836641" + }, + { + "type": "whitespace", + "start": 67243, + "end": 67249, + "value": "\n " + }, + { + "type": "brace", + "start": 67249, + "end": 67250, + "value": "]" + }, + { + "type": "comma", + "start": 67250, + "end": 67251, + "value": "," + }, + { + "type": "whitespace", + "start": 67251, + "end": 67252, + "value": " " + }, + { + "type": "operator", + "start": 67252, + "end": 67253, + "value": "%" + }, + { + "type": "brace", + "start": 67253, + "end": 67254, + "value": ")" + }, + { + "type": "whitespace", + "start": 67254, + "end": 67257, + "value": "\n " + }, + { + "type": "operator", + "start": 67257, + "end": 67259, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67259, + "end": 67260, + "value": " " + }, + { + "type": "word", + "start": 67260, + "end": 67264, + "value": "line" + }, + { + "type": "brace", + "start": 67264, + "end": 67265, + "value": "(" + }, + { + "type": "brace", + "start": 67265, + "end": 67266, + "value": "[" + }, + { + "type": "whitespace", + "start": 67266, + "end": 67274, + "value": "\n " + }, + { + "type": "operator", + "start": 67274, + "end": 67275, + "value": "-" + }, + { + "type": "number", + "start": 67275, + "end": 67293, + "value": "0.6356501074317229" + }, + { + "type": "comma", + "start": 67293, + "end": 67294, + "value": "," + }, + { + "type": "whitespace", + "start": 67294, + "end": 67302, + "value": "\n " + }, + { + "type": "number", + "start": 67302, + "end": 67321, + "value": "0.19458425399338064" + }, + { + "type": "whitespace", + "start": 67321, + "end": 67327, + "value": "\n " + }, + { + "type": "brace", + "start": 67327, + "end": 67328, + "value": "]" + }, + { + "type": "comma", + "start": 67328, + "end": 67329, + "value": "," + }, + { + "type": "whitespace", + "start": 67329, + "end": 67330, + "value": " " + }, + { + "type": "operator", + "start": 67330, + "end": 67331, + "value": "%" + }, + { + "type": "brace", + "start": 67331, + "end": 67332, + "value": ")" + }, + { + "type": "whitespace", + "start": 67332, + "end": 67335, + "value": "\n " + }, + { + "type": "operator", + "start": 67335, + "end": 67337, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67337, + "end": 67338, + "value": " " + }, + { + "type": "word", + "start": 67338, + "end": 67342, + "value": "line" + }, + { + "type": "brace", + "start": 67342, + "end": 67343, + "value": "(" + }, + { + "type": "brace", + "start": 67343, + "end": 67344, + "value": "[" + }, + { + "type": "number", + "start": 67344, + "end": 67362, + "value": "0.5721251777404546" + }, + { + "type": "comma", + "start": 67362, + "end": 67363, + "value": "," + }, + { + "type": "whitespace", + "start": 67363, + "end": 67364, + "value": " " + }, + { + "type": "number", + "start": 67364, + "end": 67382, + "value": "0.2888584097921527" + }, + { + "type": "brace", + "start": 67382, + "end": 67383, + "value": "]" + }, + { + "type": "comma", + "start": 67383, + "end": 67384, + "value": "," + }, + { + "type": "whitespace", + "start": 67384, + "end": 67385, + "value": " " + }, + { + "type": "operator", + "start": 67385, + "end": 67386, + "value": "%" + }, + { + "type": "brace", + "start": 67386, + "end": 67387, + "value": ")" + }, + { + "type": "whitespace", + "start": 67387, + "end": 67390, + "value": "\n " + }, + { + "type": "operator", + "start": 67390, + "end": 67392, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67392, + "end": 67393, + "value": " " + }, + { + "type": "word", + "start": 67393, + "end": 67397, + "value": "line" + }, + { + "type": "brace", + "start": 67397, + "end": 67398, + "value": "(" + }, + { + "type": "brace", + "start": 67398, + "end": 67399, + "value": "[" + }, + { + "type": "whitespace", + "start": 67399, + "end": 67407, + "value": "\n " + }, + { + "type": "operator", + "start": 67407, + "end": 67408, + "value": "-" + }, + { + "type": "number", + "start": 67408, + "end": 67426, + "value": "0.9580409549552311" + }, + { + "type": "comma", + "start": 67426, + "end": 67427, + "value": "," + }, + { + "type": "whitespace", + "start": 67427, + "end": 67435, + "value": "\n " + }, + { + "type": "operator", + "start": 67435, + "end": 67436, + "value": "-" + }, + { + "type": "number", + "start": 67436, + "end": 67455, + "value": "0.02243818192078395" + }, + { + "type": "whitespace", + "start": 67455, + "end": 67461, + "value": "\n " + }, + { + "type": "brace", + "start": 67461, + "end": 67462, + "value": "]" + }, + { + "type": "comma", + "start": 67462, + "end": 67463, + "value": "," + }, + { + "type": "whitespace", + "start": 67463, + "end": 67464, + "value": " " + }, + { + "type": "operator", + "start": 67464, + "end": 67465, + "value": "%" + }, + { + "type": "brace", + "start": 67465, + "end": 67466, + "value": ")" + }, + { + "type": "whitespace", + "start": 67466, + "end": 67469, + "value": "\n " + }, + { + "type": "operator", + "start": 67469, + "end": 67471, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67471, + "end": 67472, + "value": " " + }, + { + "type": "word", + "start": 67472, + "end": 67476, + "value": "line" + }, + { + "type": "brace", + "start": 67476, + "end": 67477, + "value": "(" + }, + { + "type": "brace", + "start": 67477, + "end": 67478, + "value": "[" + }, + { + "type": "whitespace", + "start": 67478, + "end": 67486, + "value": "\n " + }, + { + "type": "number", + "start": 67486, + "end": 67504, + "value": "0.3299184618602866" + }, + { + "type": "comma", + "start": 67504, + "end": 67505, + "value": "," + }, + { + "type": "whitespace", + "start": 67505, + "end": 67513, + "value": "\n " + }, + { + "type": "operator", + "start": 67513, + "end": 67514, + "value": "-" + }, + { + "type": "number", + "start": 67514, + "end": 67532, + "value": "0.8353726942369875" + }, + { + "type": "whitespace", + "start": 67532, + "end": 67538, + "value": "\n " + }, + { + "type": "brace", + "start": 67538, + "end": 67539, + "value": "]" + }, + { + "type": "comma", + "start": 67539, + "end": 67540, + "value": "," + }, + { + "type": "whitespace", + "start": 67540, + "end": 67541, + "value": " " + }, + { + "type": "operator", + "start": 67541, + "end": 67542, + "value": "%" + }, + { + "type": "brace", + "start": 67542, + "end": 67543, + "value": ")" + }, + { + "type": "whitespace", + "start": 67543, + "end": 67546, + "value": "\n " + }, + { + "type": "operator", + "start": 67546, + "end": 67548, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67548, + "end": 67549, + "value": " " + }, + { + "type": "word", + "start": 67549, + "end": 67553, + "value": "line" + }, + { + "type": "brace", + "start": 67553, + "end": 67554, + "value": "(" + }, + { + "type": "brace", + "start": 67554, + "end": 67555, + "value": "[" + }, + { + "type": "whitespace", + "start": 67555, + "end": 67563, + "value": "\n " + }, + { + "type": "number", + "start": 67563, + "end": 67581, + "value": "0.7434639386755209" + }, + { + "type": "comma", + "start": 67581, + "end": 67582, + "value": "," + }, + { + "type": "whitespace", + "start": 67582, + "end": 67590, + "value": "\n " + }, + { + "type": "operator", + "start": 67590, + "end": 67591, + "value": "-" + }, + { + "type": "number", + "start": 67591, + "end": 67609, + "value": "0.7919648864138378" + }, + { + "type": "whitespace", + "start": 67609, + "end": 67615, + "value": "\n " + }, + { + "type": "brace", + "start": 67615, + "end": 67616, + "value": "]" + }, + { + "type": "comma", + "start": 67616, + "end": 67617, + "value": "," + }, + { + "type": "whitespace", + "start": 67617, + "end": 67618, + "value": " " + }, + { + "type": "operator", + "start": 67618, + "end": 67619, + "value": "%" + }, + { + "type": "brace", + "start": 67619, + "end": 67620, + "value": ")" + }, + { + "type": "whitespace", + "start": 67620, + "end": 67623, + "value": "\n " + }, + { + "type": "operator", + "start": 67623, + "end": 67625, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67625, + "end": 67626, + "value": " " + }, + { + "type": "word", + "start": 67626, + "end": 67630, + "value": "line" + }, + { + "type": "brace", + "start": 67630, + "end": 67631, + "value": "(" + }, + { + "type": "brace", + "start": 67631, + "end": 67632, + "value": "[" + }, + { + "type": "number", + "start": 67632, + "end": 67650, + "value": "0.9935751011164615" + }, + { + "type": "comma", + "start": 67650, + "end": 67651, + "value": "," + }, + { + "type": "whitespace", + "start": 67651, + "end": 67652, + "value": " " + }, + { + "type": "number", + "start": 67652, + "end": 67670, + "value": "0.9042566468497608" + }, + { + "type": "brace", + "start": 67670, + "end": 67671, + "value": "]" + }, + { + "type": "comma", + "start": 67671, + "end": 67672, + "value": "," + }, + { + "type": "whitespace", + "start": 67672, + "end": 67673, + "value": " " + }, + { + "type": "operator", + "start": 67673, + "end": 67674, + "value": "%" + }, + { + "type": "brace", + "start": 67674, + "end": 67675, + "value": ")" + }, + { + "type": "whitespace", + "start": 67675, + "end": 67678, + "value": "\n " + }, + { + "type": "operator", + "start": 67678, + "end": 67680, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67680, + "end": 67681, + "value": " " + }, + { + "type": "word", + "start": 67681, + "end": 67685, + "value": "line" + }, + { + "type": "brace", + "start": 67685, + "end": 67686, + "value": "(" + }, + { + "type": "brace", + "start": 67686, + "end": 67687, + "value": "[" + }, + { + "type": "whitespace", + "start": 67687, + "end": 67695, + "value": "\n " + }, + { + "type": "operator", + "start": 67695, + "end": 67696, + "value": "-" + }, + { + "type": "number", + "start": 67696, + "end": 67714, + "value": "0.5035812884687294" + }, + { + "type": "comma", + "start": 67714, + "end": 67715, + "value": "," + }, + { + "type": "whitespace", + "start": 67715, + "end": 67723, + "value": "\n " + }, + { + "type": "number", + "start": 67723, + "end": 67741, + "value": "0.5150967434989442" + }, + { + "type": "whitespace", + "start": 67741, + "end": 67747, + "value": "\n " + }, + { + "type": "brace", + "start": 67747, + "end": 67748, + "value": "]" + }, + { + "type": "comma", + "start": 67748, + "end": 67749, + "value": "," + }, + { + "type": "whitespace", + "start": 67749, + "end": 67750, + "value": " " + }, + { + "type": "operator", + "start": 67750, + "end": 67751, + "value": "%" + }, + { + "type": "brace", + "start": 67751, + "end": 67752, + "value": ")" + }, + { + "type": "whitespace", + "start": 67752, + "end": 67755, + "value": "\n " + }, + { + "type": "operator", + "start": 67755, + "end": 67757, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67757, + "end": 67758, + "value": " " + }, + { + "type": "word", + "start": 67758, + "end": 67762, + "value": "line" + }, + { + "type": "brace", + "start": 67762, + "end": 67763, + "value": "(" + }, + { + "type": "brace", + "start": 67763, + "end": 67764, + "value": "[" + }, + { + "type": "number", + "start": 67764, + "end": 67782, + "value": "0.5526227215900215" + }, + { + "type": "comma", + "start": 67782, + "end": 67783, + "value": "," + }, + { + "type": "whitespace", + "start": 67783, + "end": 67784, + "value": " " + }, + { + "type": "number", + "start": 67784, + "end": 67802, + "value": "0.7612604137272441" + }, + { + "type": "brace", + "start": 67802, + "end": 67803, + "value": "]" + }, + { + "type": "comma", + "start": 67803, + "end": 67804, + "value": "," + }, + { + "type": "whitespace", + "start": 67804, + "end": 67805, + "value": " " + }, + { + "type": "operator", + "start": 67805, + "end": 67806, + "value": "%" + }, + { + "type": "brace", + "start": 67806, + "end": 67807, + "value": ")" + }, + { + "type": "whitespace", + "start": 67807, + "end": 67810, + "value": "\n " + }, + { + "type": "operator", + "start": 67810, + "end": 67812, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67812, + "end": 67813, + "value": " " + }, + { + "type": "word", + "start": 67813, + "end": 67817, + "value": "line" + }, + { + "type": "brace", + "start": 67817, + "end": 67818, + "value": "(" + }, + { + "type": "brace", + "start": 67818, + "end": 67819, + "value": "[" + }, + { + "type": "whitespace", + "start": 67819, + "end": 67827, + "value": "\n " + }, + { + "type": "number", + "start": 67827, + "end": 67845, + "value": "0.8593271349126876" + }, + { + "type": "comma", + "start": 67845, + "end": 67846, + "value": "," + }, + { + "type": "whitespace", + "start": 67846, + "end": 67854, + "value": "\n " + }, + { + "type": "number", + "start": 67854, + "end": 67873, + "value": "0.08414894953725849" + }, + { + "type": "whitespace", + "start": 67873, + "end": 67879, + "value": "\n " + }, + { + "type": "brace", + "start": 67879, + "end": 67880, + "value": "]" + }, + { + "type": "comma", + "start": 67880, + "end": 67881, + "value": "," + }, + { + "type": "whitespace", + "start": 67881, + "end": 67882, + "value": " " + }, + { + "type": "operator", + "start": 67882, + "end": 67883, + "value": "%" + }, + { + "type": "brace", + "start": 67883, + "end": 67884, + "value": ")" + }, + { + "type": "whitespace", + "start": 67884, + "end": 67887, + "value": "\n " + }, + { + "type": "operator", + "start": 67887, + "end": 67889, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67889, + "end": 67890, + "value": " " + }, + { + "type": "word", + "start": 67890, + "end": 67894, + "value": "line" + }, + { + "type": "brace", + "start": 67894, + "end": 67895, + "value": "(" + }, + { + "type": "brace", + "start": 67895, + "end": 67896, + "value": "[" + }, + { + "type": "whitespace", + "start": 67896, + "end": 67904, + "value": "\n " + }, + { + "type": "operator", + "start": 67904, + "end": 67905, + "value": "-" + }, + { + "type": "number", + "start": 67905, + "end": 67923, + "value": "0.8181049219192864" + }, + { + "type": "comma", + "start": 67923, + "end": 67924, + "value": "," + }, + { + "type": "whitespace", + "start": 67924, + "end": 67932, + "value": "\n " + }, + { + "type": "operator", + "start": 67932, + "end": 67933, + "value": "-" + }, + { + "type": "number", + "start": 67933, + "end": 67950, + "value": "0.903548131323352" + }, + { + "type": "whitespace", + "start": 67950, + "end": 67956, + "value": "\n " + }, + { + "type": "brace", + "start": 67956, + "end": 67957, + "value": "]" + }, + { + "type": "comma", + "start": 67957, + "end": 67958, + "value": "," + }, + { + "type": "whitespace", + "start": 67958, + "end": 67959, + "value": " " + }, + { + "type": "operator", + "start": 67959, + "end": 67960, + "value": "%" + }, + { + "type": "brace", + "start": 67960, + "end": 67961, + "value": ")" + }, + { + "type": "whitespace", + "start": 67961, + "end": 67964, + "value": "\n " + }, + { + "type": "operator", + "start": 67964, + "end": 67966, + "value": "|>" + }, + { + "type": "whitespace", + "start": 67966, + "end": 67967, + "value": " " + }, + { + "type": "word", + "start": 67967, + "end": 67971, + "value": "line" + }, + { + "type": "brace", + "start": 67971, + "end": 67972, + "value": "(" + }, + { + "type": "brace", + "start": 67972, + "end": 67973, + "value": "[" + }, + { + "type": "whitespace", + "start": 67973, + "end": 67981, + "value": "\n " + }, + { + "type": "number", + "start": 67981, + "end": 67999, + "value": "0.3165782044458305" + }, + { + "type": "comma", + "start": 67999, + "end": 68000, + "value": "," + }, + { + "type": "whitespace", + "start": 68000, + "end": 68008, + "value": "\n " + }, + { + "type": "operator", + "start": 68008, + "end": 68009, + "value": "-" + }, + { + "type": "number", + "start": 68009, + "end": 68028, + "value": "0.24189274252014914" + }, + { + "type": "whitespace", + "start": 68028, + "end": 68034, + "value": "\n " + }, + { + "type": "brace", + "start": 68034, + "end": 68035, + "value": "]" + }, + { + "type": "comma", + "start": 68035, + "end": 68036, + "value": "," + }, + { + "type": "whitespace", + "start": 68036, + "end": 68037, + "value": " " + }, + { + "type": "operator", + "start": 68037, + "end": 68038, + "value": "%" + }, + { + "type": "brace", + "start": 68038, + "end": 68039, + "value": ")" + }, + { + "type": "whitespace", + "start": 68039, + "end": 68042, + "value": "\n " + }, + { + "type": "operator", + "start": 68042, + "end": 68044, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68044, + "end": 68045, + "value": " " + }, + { + "type": "word", + "start": 68045, + "end": 68049, + "value": "line" + }, + { + "type": "brace", + "start": 68049, + "end": 68050, + "value": "(" + }, + { + "type": "brace", + "start": 68050, + "end": 68051, + "value": "[" + }, + { + "type": "whitespace", + "start": 68051, + "end": 68059, + "value": "\n " + }, + { + "type": "operator", + "start": 68059, + "end": 68060, + "value": "-" + }, + { + "type": "number", + "start": 68060, + "end": 68079, + "value": "0.44390956414045135" + }, + { + "type": "comma", + "start": 68079, + "end": 68080, + "value": "," + }, + { + "type": "whitespace", + "start": 68080, + "end": 68088, + "value": "\n " + }, + { + "type": "operator", + "start": 68088, + "end": 68089, + "value": "-" + }, + { + "type": "number", + "start": 68089, + "end": 68108, + "value": "0.25912591535126905" + }, + { + "type": "whitespace", + "start": 68108, + "end": 68114, + "value": "\n " + }, + { + "type": "brace", + "start": 68114, + "end": 68115, + "value": "]" + }, + { + "type": "comma", + "start": 68115, + "end": 68116, + "value": "," + }, + { + "type": "whitespace", + "start": 68116, + "end": 68117, + "value": " " + }, + { + "type": "operator", + "start": 68117, + "end": 68118, + "value": "%" + }, + { + "type": "brace", + "start": 68118, + "end": 68119, + "value": ")" + }, + { + "type": "whitespace", + "start": 68119, + "end": 68122, + "value": "\n " + }, + { + "type": "operator", + "start": 68122, + "end": 68124, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68124, + "end": 68125, + "value": " " + }, + { + "type": "word", + "start": 68125, + "end": 68129, + "value": "line" + }, + { + "type": "brace", + "start": 68129, + "end": 68130, + "value": "(" + }, + { + "type": "brace", + "start": 68130, + "end": 68131, + "value": "[" + }, + { + "type": "whitespace", + "start": 68131, + "end": 68139, + "value": "\n " + }, + { + "type": "operator", + "start": 68139, + "end": 68140, + "value": "-" + }, + { + "type": "number", + "start": 68140, + "end": 68158, + "value": "0.6605165911891009" + }, + { + "type": "comma", + "start": 68158, + "end": 68159, + "value": "," + }, + { + "type": "whitespace", + "start": 68159, + "end": 68167, + "value": "\n " + }, + { + "type": "operator", + "start": 68167, + "end": 68168, + "value": "-" + }, + { + "type": "number", + "start": 68168, + "end": 68187, + "value": "0.40355115288839194" + }, + { + "type": "whitespace", + "start": 68187, + "end": 68193, + "value": "\n " + }, + { + "type": "brace", + "start": 68193, + "end": 68194, + "value": "]" + }, + { + "type": "comma", + "start": 68194, + "end": 68195, + "value": "," + }, + { + "type": "whitespace", + "start": 68195, + "end": 68196, + "value": " " + }, + { + "type": "operator", + "start": 68196, + "end": 68197, + "value": "%" + }, + { + "type": "brace", + "start": 68197, + "end": 68198, + "value": ")" + }, + { + "type": "whitespace", + "start": 68198, + "end": 68201, + "value": "\n " + }, + { + "type": "operator", + "start": 68201, + "end": 68203, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68203, + "end": 68204, + "value": " " + }, + { + "type": "word", + "start": 68204, + "end": 68208, + "value": "line" + }, + { + "type": "brace", + "start": 68208, + "end": 68209, + "value": "(" + }, + { + "type": "brace", + "start": 68209, + "end": 68210, + "value": "[" + }, + { + "type": "whitespace", + "start": 68210, + "end": 68218, + "value": "\n " + }, + { + "type": "operator", + "start": 68218, + "end": 68219, + "value": "-" + }, + { + "type": "number", + "start": 68219, + "end": 68237, + "value": "0.7170489950180006" + }, + { + "type": "comma", + "start": 68237, + "end": 68238, + "value": "," + }, + { + "type": "whitespace", + "start": 68238, + "end": 68246, + "value": "\n " + }, + { + "type": "number", + "start": 68246, + "end": 68265, + "value": "0.23454356079651384" + }, + { + "type": "whitespace", + "start": 68265, + "end": 68271, + "value": "\n " + }, + { + "type": "brace", + "start": 68271, + "end": 68272, + "value": "]" + }, + { + "type": "comma", + "start": 68272, + "end": 68273, + "value": "," + }, + { + "type": "whitespace", + "start": 68273, + "end": 68274, + "value": " " + }, + { + "type": "operator", + "start": 68274, + "end": 68275, + "value": "%" + }, + { + "type": "brace", + "start": 68275, + "end": 68276, + "value": ")" + }, + { + "type": "whitespace", + "start": 68276, + "end": 68279, + "value": "\n " + }, + { + "type": "operator", + "start": 68279, + "end": 68281, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68281, + "end": 68282, + "value": " " + }, + { + "type": "word", + "start": 68282, + "end": 68286, + "value": "line" + }, + { + "type": "brace", + "start": 68286, + "end": 68287, + "value": "(" + }, + { + "type": "brace", + "start": 68287, + "end": 68288, + "value": "[" + }, + { + "type": "whitespace", + "start": 68288, + "end": 68296, + "value": "\n " + }, + { + "type": "operator", + "start": 68296, + "end": 68297, + "value": "-" + }, + { + "type": "number", + "start": 68297, + "end": 68315, + "value": "0.2568187045379722" + }, + { + "type": "comma", + "start": 68315, + "end": 68316, + "value": "," + }, + { + "type": "whitespace", + "start": 68316, + "end": 68324, + "value": "\n " + }, + { + "type": "operator", + "start": 68324, + "end": 68325, + "value": "-" + }, + { + "type": "number", + "start": 68325, + "end": 68344, + "value": "0.45031188717601367" + }, + { + "type": "whitespace", + "start": 68344, + "end": 68350, + "value": "\n " + }, + { + "type": "brace", + "start": 68350, + "end": 68351, + "value": "]" + }, + { + "type": "comma", + "start": 68351, + "end": 68352, + "value": "," + }, + { + "type": "whitespace", + "start": 68352, + "end": 68353, + "value": " " + }, + { + "type": "operator", + "start": 68353, + "end": 68354, + "value": "%" + }, + { + "type": "brace", + "start": 68354, + "end": 68355, + "value": ")" + }, + { + "type": "whitespace", + "start": 68355, + "end": 68358, + "value": "\n " + }, + { + "type": "operator", + "start": 68358, + "end": 68360, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68360, + "end": 68361, + "value": " " + }, + { + "type": "word", + "start": 68361, + "end": 68365, + "value": "line" + }, + { + "type": "brace", + "start": 68365, + "end": 68366, + "value": "(" + }, + { + "type": "brace", + "start": 68366, + "end": 68367, + "value": "[" + }, + { + "type": "whitespace", + "start": 68367, + "end": 68375, + "value": "\n " + }, + { + "type": "number", + "start": 68375, + "end": 68393, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 68393, + "end": 68394, + "value": "," + }, + { + "type": "whitespace", + "start": 68394, + "end": 68402, + "value": "\n " + }, + { + "type": "operator", + "start": 68402, + "end": 68403, + "value": "-" + }, + { + "type": "number", + "start": 68403, + "end": 68421, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 68421, + "end": 68427, + "value": "\n " + }, + { + "type": "brace", + "start": 68427, + "end": 68428, + "value": "]" + }, + { + "type": "comma", + "start": 68428, + "end": 68429, + "value": "," + }, + { + "type": "whitespace", + "start": 68429, + "end": 68430, + "value": " " + }, + { + "type": "operator", + "start": 68430, + "end": 68431, + "value": "%" + }, + { + "type": "brace", + "start": 68431, + "end": 68432, + "value": ")" + }, + { + "type": "whitespace", + "start": 68432, + "end": 68435, + "value": "\n " + }, + { + "type": "operator", + "start": 68435, + "end": 68437, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68437, + "end": 68438, + "value": " " + }, + { + "type": "word", + "start": 68438, + "end": 68442, + "value": "line" + }, + { + "type": "brace", + "start": 68442, + "end": 68443, + "value": "(" + }, + { + "type": "brace", + "start": 68443, + "end": 68444, + "value": "[" + }, + { + "type": "whitespace", + "start": 68444, + "end": 68452, + "value": "\n " + }, + { + "type": "operator", + "start": 68452, + "end": 68453, + "value": "-" + }, + { + "type": "number", + "start": 68453, + "end": 68471, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 68471, + "end": 68472, + "value": "," + }, + { + "type": "whitespace", + "start": 68472, + "end": 68480, + "value": "\n " + }, + { + "type": "number", + "start": 68480, + "end": 68498, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 68498, + "end": 68504, + "value": "\n " + }, + { + "type": "brace", + "start": 68504, + "end": 68505, + "value": "]" + }, + { + "type": "comma", + "start": 68505, + "end": 68506, + "value": "," + }, + { + "type": "whitespace", + "start": 68506, + "end": 68507, + "value": " " + }, + { + "type": "operator", + "start": 68507, + "end": 68508, + "value": "%" + }, + { + "type": "brace", + "start": 68508, + "end": 68509, + "value": ")" + }, + { + "type": "whitespace", + "start": 68509, + "end": 68512, + "value": "\n " + }, + { + "type": "operator", + "start": 68512, + "end": 68514, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68514, + "end": 68515, + "value": " " + }, + { + "type": "word", + "start": 68515, + "end": 68519, + "value": "line" + }, + { + "type": "brace", + "start": 68519, + "end": 68520, + "value": "(" + }, + { + "type": "brace", + "start": 68520, + "end": 68521, + "value": "[" + }, + { + "type": "whitespace", + "start": 68521, + "end": 68529, + "value": "\n " + }, + { + "type": "operator", + "start": 68529, + "end": 68530, + "value": "-" + }, + { + "type": "number", + "start": 68530, + "end": 68548, + "value": "0.8328324229085962" + }, + { + "type": "comma", + "start": 68548, + "end": 68549, + "value": "," + }, + { + "type": "whitespace", + "start": 68549, + "end": 68557, + "value": "\n " + }, + { + "type": "number", + "start": 68557, + "end": 68575, + "value": "0.4677492878818803" + }, + { + "type": "whitespace", + "start": 68575, + "end": 68581, + "value": "\n " + }, + { + "type": "brace", + "start": 68581, + "end": 68582, + "value": "]" + }, + { + "type": "comma", + "start": 68582, + "end": 68583, + "value": "," + }, + { + "type": "whitespace", + "start": 68583, + "end": 68584, + "value": " " + }, + { + "type": "operator", + "start": 68584, + "end": 68585, + "value": "%" + }, + { + "type": "brace", + "start": 68585, + "end": 68586, + "value": ")" + }, + { + "type": "whitespace", + "start": 68586, + "end": 68589, + "value": "\n " + }, + { + "type": "operator", + "start": 68589, + "end": 68591, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68591, + "end": 68592, + "value": " " + }, + { + "type": "word", + "start": 68592, + "end": 68596, + "value": "line" + }, + { + "type": "brace", + "start": 68596, + "end": 68597, + "value": "(" + }, + { + "type": "brace", + "start": 68597, + "end": 68598, + "value": "[" + }, + { + "type": "whitespace", + "start": 68598, + "end": 68606, + "value": "\n " + }, + { + "type": "operator", + "start": 68606, + "end": 68607, + "value": "-" + }, + { + "type": "number", + "start": 68607, + "end": 68625, + "value": "0.8111463382182231" + }, + { + "type": "comma", + "start": 68625, + "end": 68626, + "value": "," + }, + { + "type": "whitespace", + "start": 68626, + "end": 68634, + "value": "\n " + }, + { + "type": "operator", + "start": 68634, + "end": 68635, + "value": "-" + }, + { + "type": "number", + "start": 68635, + "end": 68654, + "value": "0.41814807547140576" + }, + { + "type": "whitespace", + "start": 68654, + "end": 68660, + "value": "\n " + }, + { + "type": "brace", + "start": 68660, + "end": 68661, + "value": "]" + }, + { + "type": "comma", + "start": 68661, + "end": 68662, + "value": "," + }, + { + "type": "whitespace", + "start": 68662, + "end": 68663, + "value": " " + }, + { + "type": "operator", + "start": 68663, + "end": 68664, + "value": "%" + }, + { + "type": "brace", + "start": 68664, + "end": 68665, + "value": ")" + }, + { + "type": "whitespace", + "start": 68665, + "end": 68668, + "value": "\n " + }, + { + "type": "operator", + "start": 68668, + "end": 68670, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68670, + "end": 68671, + "value": " " + }, + { + "type": "word", + "start": 68671, + "end": 68675, + "value": "line" + }, + { + "type": "brace", + "start": 68675, + "end": 68676, + "value": "(" + }, + { + "type": "brace", + "start": 68676, + "end": 68677, + "value": "[" + }, + { + "type": "whitespace", + "start": 68677, + "end": 68685, + "value": "\n " + }, + { + "type": "number", + "start": 68685, + "end": 68704, + "value": "0.03807684940941125" + }, + { + "type": "comma", + "start": 68704, + "end": 68705, + "value": "," + }, + { + "type": "whitespace", + "start": 68705, + "end": 68713, + "value": "\n " + }, + { + "type": "number", + "start": 68713, + "end": 68732, + "value": "0.25664826686353326" + }, + { + "type": "whitespace", + "start": 68732, + "end": 68738, + "value": "\n " + }, + { + "type": "brace", + "start": 68738, + "end": 68739, + "value": "]" + }, + { + "type": "comma", + "start": 68739, + "end": 68740, + "value": "," + }, + { + "type": "whitespace", + "start": 68740, + "end": 68741, + "value": " " + }, + { + "type": "operator", + "start": 68741, + "end": 68742, + "value": "%" + }, + { + "type": "brace", + "start": 68742, + "end": 68743, + "value": ")" + }, + { + "type": "whitespace", + "start": 68743, + "end": 68746, + "value": "\n " + }, + { + "type": "operator", + "start": 68746, + "end": 68748, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68748, + "end": 68749, + "value": " " + }, + { + "type": "word", + "start": 68749, + "end": 68753, + "value": "line" + }, + { + "type": "brace", + "start": 68753, + "end": 68754, + "value": "(" + }, + { + "type": "brace", + "start": 68754, + "end": 68755, + "value": "[" + }, + { + "type": "whitespace", + "start": 68755, + "end": 68763, + "value": "\n " + }, + { + "type": "number", + "start": 68763, + "end": 68782, + "value": "0.23950083339596384" + }, + { + "type": "comma", + "start": 68782, + "end": 68783, + "value": "," + }, + { + "type": "whitespace", + "start": 68783, + "end": 68791, + "value": "\n " + }, + { + "type": "number", + "start": 68791, + "end": 68810, + "value": "0.43693196301855575" + }, + { + "type": "whitespace", + "start": 68810, + "end": 68816, + "value": "\n " + }, + { + "type": "brace", + "start": 68816, + "end": 68817, + "value": "]" + }, + { + "type": "comma", + "start": 68817, + "end": 68818, + "value": "," + }, + { + "type": "whitespace", + "start": 68818, + "end": 68819, + "value": " " + }, + { + "type": "operator", + "start": 68819, + "end": 68820, + "value": "%" + }, + { + "type": "brace", + "start": 68820, + "end": 68821, + "value": ")" + }, + { + "type": "whitespace", + "start": 68821, + "end": 68824, + "value": "\n " + }, + { + "type": "operator", + "start": 68824, + "end": 68826, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68826, + "end": 68827, + "value": " " + }, + { + "type": "word", + "start": 68827, + "end": 68831, + "value": "line" + }, + { + "type": "brace", + "start": 68831, + "end": 68832, + "value": "(" + }, + { + "type": "brace", + "start": 68832, + "end": 68833, + "value": "[" + }, + { + "type": "whitespace", + "start": 68833, + "end": 68841, + "value": "\n " + }, + { + "type": "operator", + "start": 68841, + "end": 68842, + "value": "-" + }, + { + "type": "number", + "start": 68842, + "end": 68861, + "value": "0.16279444820904887" + }, + { + "type": "comma", + "start": 68861, + "end": 68862, + "value": "," + }, + { + "type": "whitespace", + "start": 68862, + "end": 68870, + "value": "\n " + }, + { + "type": "number", + "start": 68870, + "end": 68888, + "value": "0.8064475707664818" + }, + { + "type": "whitespace", + "start": 68888, + "end": 68894, + "value": "\n " + }, + { + "type": "brace", + "start": 68894, + "end": 68895, + "value": "]" + }, + { + "type": "comma", + "start": 68895, + "end": 68896, + "value": "," + }, + { + "type": "whitespace", + "start": 68896, + "end": 68897, + "value": " " + }, + { + "type": "operator", + "start": 68897, + "end": 68898, + "value": "%" + }, + { + "type": "brace", + "start": 68898, + "end": 68899, + "value": ")" + }, + { + "type": "whitespace", + "start": 68899, + "end": 68902, + "value": "\n " + }, + { + "type": "operator", + "start": 68902, + "end": 68904, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68904, + "end": 68905, + "value": " " + }, + { + "type": "word", + "start": 68905, + "end": 68909, + "value": "line" + }, + { + "type": "brace", + "start": 68909, + "end": 68910, + "value": "(" + }, + { + "type": "brace", + "start": 68910, + "end": 68911, + "value": "[" + }, + { + "type": "whitespace", + "start": 68911, + "end": 68919, + "value": "\n " + }, + { + "type": "operator", + "start": 68919, + "end": 68920, + "value": "-" + }, + { + "type": "number", + "start": 68920, + "end": 68939, + "value": "0.08972872009232558" + }, + { + "type": "comma", + "start": 68939, + "end": 68940, + "value": "," + }, + { + "type": "whitespace", + "start": 68940, + "end": 68948, + "value": "\n " + }, + { + "type": "operator", + "start": 68948, + "end": 68949, + "value": "-" + }, + { + "type": "number", + "start": 68949, + "end": 68968, + "value": "0.08887625823751266" + }, + { + "type": "whitespace", + "start": 68968, + "end": 68974, + "value": "\n " + }, + { + "type": "brace", + "start": 68974, + "end": 68975, + "value": "]" + }, + { + "type": "comma", + "start": 68975, + "end": 68976, + "value": "," + }, + { + "type": "whitespace", + "start": 68976, + "end": 68977, + "value": " " + }, + { + "type": "operator", + "start": 68977, + "end": 68978, + "value": "%" + }, + { + "type": "brace", + "start": 68978, + "end": 68979, + "value": ")" + }, + { + "type": "whitespace", + "start": 68979, + "end": 68982, + "value": "\n " + }, + { + "type": "operator", + "start": 68982, + "end": 68984, + "value": "|>" + }, + { + "type": "whitespace", + "start": 68984, + "end": 68985, + "value": " " + }, + { + "type": "word", + "start": 68985, + "end": 68989, + "value": "line" + }, + { + "type": "brace", + "start": 68989, + "end": 68990, + "value": "(" + }, + { + "type": "brace", + "start": 68990, + "end": 68991, + "value": "[" + }, + { + "type": "whitespace", + "start": 68991, + "end": 68999, + "value": "\n " + }, + { + "type": "number", + "start": 68999, + "end": 69017, + "value": "0.9203433427102556" + }, + { + "type": "comma", + "start": 69017, + "end": 69018, + "value": "," + }, + { + "type": "whitespace", + "start": 69018, + "end": 69026, + "value": "\n " + }, + { + "type": "operator", + "start": 69026, + "end": 69027, + "value": "-" + }, + { + "type": "number", + "start": 69027, + "end": 69046, + "value": "0.17343459369697545" + }, + { + "type": "whitespace", + "start": 69046, + "end": 69052, + "value": "\n " + }, + { + "type": "brace", + "start": 69052, + "end": 69053, + "value": "]" + }, + { + "type": "comma", + "start": 69053, + "end": 69054, + "value": "," + }, + { + "type": "whitespace", + "start": 69054, + "end": 69055, + "value": " " + }, + { + "type": "operator", + "start": 69055, + "end": 69056, + "value": "%" + }, + { + "type": "brace", + "start": 69056, + "end": 69057, + "value": ")" + }, + { + "type": "whitespace", + "start": 69057, + "end": 69060, + "value": "\n " + }, + { + "type": "operator", + "start": 69060, + "end": 69062, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69062, + "end": 69063, + "value": " " + }, + { + "type": "word", + "start": 69063, + "end": 69067, + "value": "line" + }, + { + "type": "brace", + "start": 69067, + "end": 69068, + "value": "(" + }, + { + "type": "brace", + "start": 69068, + "end": 69069, + "value": "[" + }, + { + "type": "whitespace", + "start": 69069, + "end": 69077, + "value": "\n " + }, + { + "type": "number", + "start": 69077, + "end": 69098, + "value": "0.0017496234414517975" + }, + { + "type": "comma", + "start": 69098, + "end": 69099, + "value": "," + }, + { + "type": "whitespace", + "start": 69099, + "end": 69107, + "value": "\n " + }, + { + "type": "operator", + "start": 69107, + "end": 69108, + "value": "-" + }, + { + "type": "number", + "start": 69108, + "end": 69126, + "value": "0.5178508316168335" + }, + { + "type": "whitespace", + "start": 69126, + "end": 69132, + "value": "\n " + }, + { + "type": "brace", + "start": 69132, + "end": 69133, + "value": "]" + }, + { + "type": "comma", + "start": 69133, + "end": 69134, + "value": "," + }, + { + "type": "whitespace", + "start": 69134, + "end": 69135, + "value": " " + }, + { + "type": "operator", + "start": 69135, + "end": 69136, + "value": "%" + }, + { + "type": "brace", + "start": 69136, + "end": 69137, + "value": ")" + }, + { + "type": "whitespace", + "start": 69137, + "end": 69140, + "value": "\n " + }, + { + "type": "operator", + "start": 69140, + "end": 69142, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69142, + "end": 69143, + "value": " " + }, + { + "type": "word", + "start": 69143, + "end": 69147, + "value": "line" + }, + { + "type": "brace", + "start": 69147, + "end": 69148, + "value": "(" + }, + { + "type": "brace", + "start": 69148, + "end": 69149, + "value": "[" + }, + { + "type": "whitespace", + "start": 69149, + "end": 69157, + "value": "\n " + }, + { + "type": "number", + "start": 69157, + "end": 69175, + "value": "0.6206263405732759" + }, + { + "type": "comma", + "start": 69175, + "end": 69176, + "value": "," + }, + { + "type": "whitespace", + "start": 69176, + "end": 69184, + "value": "\n " + }, + { + "type": "operator", + "start": 69184, + "end": 69185, + "value": "-" + }, + { + "type": "number", + "start": 69185, + "end": 69203, + "value": "0.8733399468665124" + }, + { + "type": "whitespace", + "start": 69203, + "end": 69209, + "value": "\n " + }, + { + "type": "brace", + "start": 69209, + "end": 69210, + "value": "]" + }, + { + "type": "comma", + "start": 69210, + "end": 69211, + "value": "," + }, + { + "type": "whitespace", + "start": 69211, + "end": 69212, + "value": " " + }, + { + "type": "operator", + "start": 69212, + "end": 69213, + "value": "%" + }, + { + "type": "brace", + "start": 69213, + "end": 69214, + "value": ")" + }, + { + "type": "whitespace", + "start": 69214, + "end": 69217, + "value": "\n " + }, + { + "type": "operator", + "start": 69217, + "end": 69219, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69219, + "end": 69220, + "value": " " + }, + { + "type": "word", + "start": 69220, + "end": 69224, + "value": "line" + }, + { + "type": "brace", + "start": 69224, + "end": 69225, + "value": "(" + }, + { + "type": "brace", + "start": 69225, + "end": 69226, + "value": "[" + }, + { + "type": "whitespace", + "start": 69226, + "end": 69234, + "value": "\n " + }, + { + "type": "operator", + "start": 69234, + "end": 69235, + "value": "-" + }, + { + "type": "number", + "start": 69235, + "end": 69253, + "value": "0.7776386664456383" + }, + { + "type": "comma", + "start": 69253, + "end": 69254, + "value": "," + }, + { + "type": "whitespace", + "start": 69254, + "end": 69262, + "value": "\n " + }, + { + "type": "number", + "start": 69262, + "end": 69280, + "value": "0.7602780485384968" + }, + { + "type": "whitespace", + "start": 69280, + "end": 69286, + "value": "\n " + }, + { + "type": "brace", + "start": 69286, + "end": 69287, + "value": "]" + }, + { + "type": "comma", + "start": 69287, + "end": 69288, + "value": "," + }, + { + "type": "whitespace", + "start": 69288, + "end": 69289, + "value": " " + }, + { + "type": "operator", + "start": 69289, + "end": 69290, + "value": "%" + }, + { + "type": "brace", + "start": 69290, + "end": 69291, + "value": ")" + }, + { + "type": "whitespace", + "start": 69291, + "end": 69294, + "value": "\n " + }, + { + "type": "operator", + "start": 69294, + "end": 69296, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69296, + "end": 69297, + "value": " " + }, + { + "type": "word", + "start": 69297, + "end": 69301, + "value": "line" + }, + { + "type": "brace", + "start": 69301, + "end": 69302, + "value": "(" + }, + { + "type": "brace", + "start": 69302, + "end": 69303, + "value": "[" + }, + { + "type": "number", + "start": 69303, + "end": 69321, + "value": "0.5439379760788592" + }, + { + "type": "comma", + "start": 69321, + "end": 69322, + "value": "," + }, + { + "type": "whitespace", + "start": 69322, + "end": 69323, + "value": " " + }, + { + "type": "number", + "start": 69323, + "end": 69341, + "value": "0.8449177589350552" + }, + { + "type": "brace", + "start": 69341, + "end": 69342, + "value": "]" + }, + { + "type": "comma", + "start": 69342, + "end": 69343, + "value": "," + }, + { + "type": "whitespace", + "start": 69343, + "end": 69344, + "value": " " + }, + { + "type": "operator", + "start": 69344, + "end": 69345, + "value": "%" + }, + { + "type": "brace", + "start": 69345, + "end": 69346, + "value": ")" + }, + { + "type": "whitespace", + "start": 69346, + "end": 69349, + "value": "\n " + }, + { + "type": "operator", + "start": 69349, + "end": 69351, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69351, + "end": 69352, + "value": " " + }, + { + "type": "word", + "start": 69352, + "end": 69356, + "value": "line" + }, + { + "type": "brace", + "start": 69356, + "end": 69357, + "value": "(" + }, + { + "type": "brace", + "start": 69357, + "end": 69358, + "value": "[" + }, + { + "type": "whitespace", + "start": 69358, + "end": 69366, + "value": "\n " + }, + { + "type": "operator", + "start": 69366, + "end": 69367, + "value": "-" + }, + { + "type": "number", + "start": 69367, + "end": 69386, + "value": "0.13036646025917076" + }, + { + "type": "comma", + "start": 69386, + "end": 69387, + "value": "," + }, + { + "type": "whitespace", + "start": 69387, + "end": 69395, + "value": "\n " + }, + { + "type": "number", + "start": 69395, + "end": 69415, + "value": "0.012051713627069693" + }, + { + "type": "whitespace", + "start": 69415, + "end": 69421, + "value": "\n " + }, + { + "type": "brace", + "start": 69421, + "end": 69422, + "value": "]" + }, + { + "type": "comma", + "start": 69422, + "end": 69423, + "value": "," + }, + { + "type": "whitespace", + "start": 69423, + "end": 69424, + "value": " " + }, + { + "type": "operator", + "start": 69424, + "end": 69425, + "value": "%" + }, + { + "type": "brace", + "start": 69425, + "end": 69426, + "value": ")" + }, + { + "type": "whitespace", + "start": 69426, + "end": 69429, + "value": "\n " + }, + { + "type": "operator", + "start": 69429, + "end": 69431, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69431, + "end": 69432, + "value": " " + }, + { + "type": "word", + "start": 69432, + "end": 69436, + "value": "line" + }, + { + "type": "brace", + "start": 69436, + "end": 69437, + "value": "(" + }, + { + "type": "brace", + "start": 69437, + "end": 69438, + "value": "[" + }, + { + "type": "whitespace", + "start": 69438, + "end": 69446, + "value": "\n " + }, + { + "type": "operator", + "start": 69446, + "end": 69447, + "value": "-" + }, + { + "type": "number", + "start": 69447, + "end": 69465, + "value": "0.1656465612645519" + }, + { + "type": "comma", + "start": 69465, + "end": 69466, + "value": "," + }, + { + "type": "whitespace", + "start": 69466, + "end": 69474, + "value": "\n " + }, + { + "type": "operator", + "start": 69474, + "end": 69475, + "value": "-" + }, + { + "type": "number", + "start": 69475, + "end": 69494, + "value": "0.20775229173765486" + }, + { + "type": "whitespace", + "start": 69494, + "end": 69500, + "value": "\n " + }, + { + "type": "brace", + "start": 69500, + "end": 69501, + "value": "]" + }, + { + "type": "comma", + "start": 69501, + "end": 69502, + "value": "," + }, + { + "type": "whitespace", + "start": 69502, + "end": 69503, + "value": " " + }, + { + "type": "operator", + "start": 69503, + "end": 69504, + "value": "%" + }, + { + "type": "brace", + "start": 69504, + "end": 69505, + "value": ")" + }, + { + "type": "whitespace", + "start": 69505, + "end": 69508, + "value": "\n " + }, + { + "type": "operator", + "start": 69508, + "end": 69510, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69510, + "end": 69511, + "value": " " + }, + { + "type": "word", + "start": 69511, + "end": 69515, + "value": "line" + }, + { + "type": "brace", + "start": 69515, + "end": 69516, + "value": "(" + }, + { + "type": "brace", + "start": 69516, + "end": 69517, + "value": "[" + }, + { + "type": "whitespace", + "start": 69517, + "end": 69525, + "value": "\n " + }, + { + "type": "operator", + "start": 69525, + "end": 69526, + "value": "-" + }, + { + "type": "number", + "start": 69526, + "end": 69544, + "value": "0.0962723255929061" + }, + { + "type": "comma", + "start": 69544, + "end": 69545, + "value": "," + }, + { + "type": "whitespace", + "start": 69545, + "end": 69553, + "value": "\n " + }, + { + "type": "operator", + "start": 69553, + "end": 69554, + "value": "-" + }, + { + "type": "number", + "start": 69554, + "end": 69573, + "value": "0.05417797659066137" + }, + { + "type": "whitespace", + "start": 69573, + "end": 69579, + "value": "\n " + }, + { + "type": "brace", + "start": 69579, + "end": 69580, + "value": "]" + }, + { + "type": "comma", + "start": 69580, + "end": 69581, + "value": "," + }, + { + "type": "whitespace", + "start": 69581, + "end": 69582, + "value": " " + }, + { + "type": "operator", + "start": 69582, + "end": 69583, + "value": "%" + }, + { + "type": "brace", + "start": 69583, + "end": 69584, + "value": ")" + }, + { + "type": "whitespace", + "start": 69584, + "end": 69587, + "value": "\n " + }, + { + "type": "operator", + "start": 69587, + "end": 69589, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69589, + "end": 69590, + "value": " " + }, + { + "type": "word", + "start": 69590, + "end": 69594, + "value": "line" + }, + { + "type": "brace", + "start": 69594, + "end": 69595, + "value": "(" + }, + { + "type": "brace", + "start": 69595, + "end": 69596, + "value": "[" + }, + { + "type": "number", + "start": 69596, + "end": 69613, + "value": "0.902108945498191" + }, + { + "type": "comma", + "start": 69613, + "end": 69614, + "value": "," + }, + { + "type": "whitespace", + "start": 69614, + "end": 69615, + "value": " " + }, + { + "type": "number", + "start": 69615, + "end": 69633, + "value": "0.3958978534964961" + }, + { + "type": "brace", + "start": 69633, + "end": 69634, + "value": "]" + }, + { + "type": "comma", + "start": 69634, + "end": 69635, + "value": "," + }, + { + "type": "whitespace", + "start": 69635, + "end": 69636, + "value": " " + }, + { + "type": "operator", + "start": 69636, + "end": 69637, + "value": "%" + }, + { + "type": "brace", + "start": 69637, + "end": 69638, + "value": ")" + }, + { + "type": "whitespace", + "start": 69638, + "end": 69641, + "value": "\n " + }, + { + "type": "operator", + "start": 69641, + "end": 69643, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69643, + "end": 69644, + "value": " " + }, + { + "type": "word", + "start": 69644, + "end": 69648, + "value": "line" + }, + { + "type": "brace", + "start": 69648, + "end": 69649, + "value": "(" + }, + { + "type": "brace", + "start": 69649, + "end": 69650, + "value": "[" + }, + { + "type": "whitespace", + "start": 69650, + "end": 69658, + "value": "\n " + }, + { + "type": "number", + "start": 69658, + "end": 69677, + "value": "0.27997950083139167" + }, + { + "type": "comma", + "start": 69677, + "end": 69678, + "value": "," + }, + { + "type": "whitespace", + "start": 69678, + "end": 69686, + "value": "\n " + }, + { + "type": "operator", + "start": 69686, + "end": 69687, + "value": "-" + }, + { + "type": "number", + "start": 69687, + "end": 69706, + "value": "0.17778188444008958" + }, + { + "type": "whitespace", + "start": 69706, + "end": 69712, + "value": "\n " + }, + { + "type": "brace", + "start": 69712, + "end": 69713, + "value": "]" + }, + { + "type": "comma", + "start": 69713, + "end": 69714, + "value": "," + }, + { + "type": "whitespace", + "start": 69714, + "end": 69715, + "value": " " + }, + { + "type": "operator", + "start": 69715, + "end": 69716, + "value": "%" + }, + { + "type": "brace", + "start": 69716, + "end": 69717, + "value": ")" + }, + { + "type": "whitespace", + "start": 69717, + "end": 69720, + "value": "\n " + }, + { + "type": "operator", + "start": 69720, + "end": 69722, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69722, + "end": 69723, + "value": " " + }, + { + "type": "word", + "start": 69723, + "end": 69727, + "value": "line" + }, + { + "type": "brace", + "start": 69727, + "end": 69728, + "value": "(" + }, + { + "type": "brace", + "start": 69728, + "end": 69729, + "value": "[" + }, + { + "type": "number", + "start": 69729, + "end": 69747, + "value": "0.5235806061589545" + }, + { + "type": "comma", + "start": 69747, + "end": 69748, + "value": "," + }, + { + "type": "whitespace", + "start": 69748, + "end": 69749, + "value": " " + }, + { + "type": "number", + "start": 69749, + "end": 69766, + "value": "0.694318985642328" + }, + { + "type": "brace", + "start": 69766, + "end": 69767, + "value": "]" + }, + { + "type": "comma", + "start": 69767, + "end": 69768, + "value": "," + }, + { + "type": "whitespace", + "start": 69768, + "end": 69769, + "value": " " + }, + { + "type": "operator", + "start": 69769, + "end": 69770, + "value": "%" + }, + { + "type": "brace", + "start": 69770, + "end": 69771, + "value": ")" + }, + { + "type": "whitespace", + "start": 69771, + "end": 69774, + "value": "\n " + }, + { + "type": "operator", + "start": 69774, + "end": 69776, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69776, + "end": 69777, + "value": " " + }, + { + "type": "word", + "start": 69777, + "end": 69781, + "value": "line" + }, + { + "type": "brace", + "start": 69781, + "end": 69782, + "value": "(" + }, + { + "type": "brace", + "start": 69782, + "end": 69783, + "value": "[" + }, + { + "type": "whitespace", + "start": 69783, + "end": 69791, + "value": "\n " + }, + { + "type": "number", + "start": 69791, + "end": 69810, + "value": "0.39140760219992154" + }, + { + "type": "comma", + "start": 69810, + "end": 69811, + "value": "," + }, + { + "type": "whitespace", + "start": 69811, + "end": 69819, + "value": "\n " + }, + { + "type": "operator", + "start": 69819, + "end": 69820, + "value": "-" + }, + { + "type": "number", + "start": 69820, + "end": 69838, + "value": "0.7839795272576484" + }, + { + "type": "whitespace", + "start": 69838, + "end": 69844, + "value": "\n " + }, + { + "type": "brace", + "start": 69844, + "end": 69845, + "value": "]" + }, + { + "type": "comma", + "start": 69845, + "end": 69846, + "value": "," + }, + { + "type": "whitespace", + "start": 69846, + "end": 69847, + "value": " " + }, + { + "type": "operator", + "start": 69847, + "end": 69848, + "value": "%" + }, + { + "type": "brace", + "start": 69848, + "end": 69849, + "value": ")" + }, + { + "type": "whitespace", + "start": 69849, + "end": 69852, + "value": "\n " + }, + { + "type": "operator", + "start": 69852, + "end": 69854, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69854, + "end": 69855, + "value": " " + }, + { + "type": "word", + "start": 69855, + "end": 69859, + "value": "line" + }, + { + "type": "brace", + "start": 69859, + "end": 69860, + "value": "(" + }, + { + "type": "brace", + "start": 69860, + "end": 69861, + "value": "[" + }, + { + "type": "number", + "start": 69861, + "end": 69879, + "value": "0.8414243527073519" + }, + { + "type": "comma", + "start": 69879, + "end": 69880, + "value": "," + }, + { + "type": "whitespace", + "start": 69880, + "end": 69881, + "value": " " + }, + { + "type": "number", + "start": 69881, + "end": 69899, + "value": "0.5395591528940082" + }, + { + "type": "brace", + "start": 69899, + "end": 69900, + "value": "]" + }, + { + "type": "comma", + "start": 69900, + "end": 69901, + "value": "," + }, + { + "type": "whitespace", + "start": 69901, + "end": 69902, + "value": " " + }, + { + "type": "operator", + "start": 69902, + "end": 69903, + "value": "%" + }, + { + "type": "brace", + "start": 69903, + "end": 69904, + "value": ")" + }, + { + "type": "whitespace", + "start": 69904, + "end": 69907, + "value": "\n " + }, + { + "type": "operator", + "start": 69907, + "end": 69909, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69909, + "end": 69910, + "value": " " + }, + { + "type": "word", + "start": 69910, + "end": 69914, + "value": "line" + }, + { + "type": "brace", + "start": 69914, + "end": 69915, + "value": "(" + }, + { + "type": "brace", + "start": 69915, + "end": 69916, + "value": "[" + }, + { + "type": "whitespace", + "start": 69916, + "end": 69924, + "value": "\n " + }, + { + "type": "number", + "start": 69924, + "end": 69942, + "value": "0.6137667704875602" + }, + { + "type": "comma", + "start": 69942, + "end": 69943, + "value": "," + }, + { + "type": "whitespace", + "start": 69943, + "end": 69951, + "value": "\n " + }, + { + "type": "number", + "start": 69951, + "end": 69970, + "value": "0.22119647516722085" + }, + { + "type": "whitespace", + "start": 69970, + "end": 69976, + "value": "\n " + }, + { + "type": "brace", + "start": 69976, + "end": 69977, + "value": "]" + }, + { + "type": "comma", + "start": 69977, + "end": 69978, + "value": "," + }, + { + "type": "whitespace", + "start": 69978, + "end": 69979, + "value": " " + }, + { + "type": "operator", + "start": 69979, + "end": 69980, + "value": "%" + }, + { + "type": "brace", + "start": 69980, + "end": 69981, + "value": ")" + }, + { + "type": "whitespace", + "start": 69981, + "end": 69984, + "value": "\n " + }, + { + "type": "operator", + "start": 69984, + "end": 69986, + "value": "|>" + }, + { + "type": "whitespace", + "start": 69986, + "end": 69987, + "value": " " + }, + { + "type": "word", + "start": 69987, + "end": 69991, + "value": "line" + }, + { + "type": "brace", + "start": 69991, + "end": 69992, + "value": "(" + }, + { + "type": "brace", + "start": 69992, + "end": 69993, + "value": "[" + }, + { + "type": "whitespace", + "start": 69993, + "end": 70001, + "value": "\n " + }, + { + "type": "operator", + "start": 70001, + "end": 70002, + "value": "-" + }, + { + "type": "number", + "start": 70002, + "end": 70021, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 70021, + "end": 70022, + "value": "," + }, + { + "type": "whitespace", + "start": 70022, + "end": 70030, + "value": "\n " + }, + { + "type": "operator", + "start": 70030, + "end": 70031, + "value": "-" + }, + { + "type": "number", + "start": 70031, + "end": 70049, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 70049, + "end": 70055, + "value": "\n " + }, + { + "type": "brace", + "start": 70055, + "end": 70056, + "value": "]" + }, + { + "type": "comma", + "start": 70056, + "end": 70057, + "value": "," + }, + { + "type": "whitespace", + "start": 70057, + "end": 70058, + "value": " " + }, + { + "type": "operator", + "start": 70058, + "end": 70059, + "value": "%" + }, + { + "type": "brace", + "start": 70059, + "end": 70060, + "value": ")" + }, + { + "type": "whitespace", + "start": 70060, + "end": 70063, + "value": "\n " + }, + { + "type": "operator", + "start": 70063, + "end": 70065, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70065, + "end": 70066, + "value": " " + }, + { + "type": "word", + "start": 70066, + "end": 70070, + "value": "line" + }, + { + "type": "brace", + "start": 70070, + "end": 70071, + "value": "(" + }, + { + "type": "brace", + "start": 70071, + "end": 70072, + "value": "[" + }, + { + "type": "whitespace", + "start": 70072, + "end": 70080, + "value": "\n " + }, + { + "type": "operator", + "start": 70080, + "end": 70081, + "value": "-" + }, + { + "type": "number", + "start": 70081, + "end": 70100, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 70100, + "end": 70101, + "value": "," + }, + { + "type": "whitespace", + "start": 70101, + "end": 70109, + "value": "\n " + }, + { + "type": "operator", + "start": 70109, + "end": 70110, + "value": "-" + }, + { + "type": "number", + "start": 70110, + "end": 70128, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 70128, + "end": 70134, + "value": "\n " + }, + { + "type": "brace", + "start": 70134, + "end": 70135, + "value": "]" + }, + { + "type": "comma", + "start": 70135, + "end": 70136, + "value": "," + }, + { + "type": "whitespace", + "start": 70136, + "end": 70137, + "value": " " + }, + { + "type": "operator", + "start": 70137, + "end": 70138, + "value": "%" + }, + { + "type": "brace", + "start": 70138, + "end": 70139, + "value": ")" + }, + { + "type": "whitespace", + "start": 70139, + "end": 70142, + "value": "\n " + }, + { + "type": "operator", + "start": 70142, + "end": 70144, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70144, + "end": 70145, + "value": " " + }, + { + "type": "word", + "start": 70145, + "end": 70149, + "value": "line" + }, + { + "type": "brace", + "start": 70149, + "end": 70150, + "value": "(" + }, + { + "type": "brace", + "start": 70150, + "end": 70151, + "value": "[" + }, + { + "type": "number", + "start": 70151, + "end": 70169, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 70169, + "end": 70170, + "value": "," + }, + { + "type": "whitespace", + "start": 70170, + "end": 70171, + "value": " " + }, + { + "type": "number", + "start": 70171, + "end": 70189, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 70189, + "end": 70190, + "value": "]" + }, + { + "type": "comma", + "start": 70190, + "end": 70191, + "value": "," + }, + { + "type": "whitespace", + "start": 70191, + "end": 70192, + "value": " " + }, + { + "type": "operator", + "start": 70192, + "end": 70193, + "value": "%" + }, + { + "type": "brace", + "start": 70193, + "end": 70194, + "value": ")" + }, + { + "type": "whitespace", + "start": 70194, + "end": 70197, + "value": "\n " + }, + { + "type": "operator", + "start": 70197, + "end": 70199, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70199, + "end": 70200, + "value": " " + }, + { + "type": "word", + "start": 70200, + "end": 70204, + "value": "line" + }, + { + "type": "brace", + "start": 70204, + "end": 70205, + "value": "(" + }, + { + "type": "brace", + "start": 70205, + "end": 70206, + "value": "[" + }, + { + "type": "whitespace", + "start": 70206, + "end": 70214, + "value": "\n " + }, + { + "type": "operator", + "start": 70214, + "end": 70215, + "value": "-" + }, + { + "type": "number", + "start": 70215, + "end": 70234, + "value": "0.41290485754343953" + }, + { + "type": "comma", + "start": 70234, + "end": 70235, + "value": "," + }, + { + "type": "whitespace", + "start": 70235, + "end": 70243, + "value": "\n " + }, + { + "type": "operator", + "start": 70243, + "end": 70244, + "value": "-" + }, + { + "type": "number", + "start": 70244, + "end": 70262, + "value": "0.4152647361760933" + }, + { + "type": "whitespace", + "start": 70262, + "end": 70268, + "value": "\n " + }, + { + "type": "brace", + "start": 70268, + "end": 70269, + "value": "]" + }, + { + "type": "comma", + "start": 70269, + "end": 70270, + "value": "," + }, + { + "type": "whitespace", + "start": 70270, + "end": 70271, + "value": " " + }, + { + "type": "operator", + "start": 70271, + "end": 70272, + "value": "%" + }, + { + "type": "brace", + "start": 70272, + "end": 70273, + "value": ")" + }, + { + "type": "whitespace", + "start": 70273, + "end": 70276, + "value": "\n " + }, + { + "type": "operator", + "start": 70276, + "end": 70278, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70278, + "end": 70279, + "value": " " + }, + { + "type": "word", + "start": 70279, + "end": 70283, + "value": "line" + }, + { + "type": "brace", + "start": 70283, + "end": 70284, + "value": "(" + }, + { + "type": "brace", + "start": 70284, + "end": 70285, + "value": "[" + }, + { + "type": "whitespace", + "start": 70285, + "end": 70293, + "value": "\n " + }, + { + "type": "number", + "start": 70293, + "end": 70311, + "value": "0.5169538755575687" + }, + { + "type": "comma", + "start": 70311, + "end": 70312, + "value": "," + }, + { + "type": "whitespace", + "start": 70312, + "end": 70320, + "value": "\n " + }, + { + "type": "operator", + "start": 70320, + "end": 70321, + "value": "-" + }, + { + "type": "number", + "start": 70321, + "end": 70339, + "value": "0.9085567867302617" + }, + { + "type": "whitespace", + "start": 70339, + "end": 70345, + "value": "\n " + }, + { + "type": "brace", + "start": 70345, + "end": 70346, + "value": "]" + }, + { + "type": "comma", + "start": 70346, + "end": 70347, + "value": "," + }, + { + "type": "whitespace", + "start": 70347, + "end": 70348, + "value": " " + }, + { + "type": "operator", + "start": 70348, + "end": 70349, + "value": "%" + }, + { + "type": "brace", + "start": 70349, + "end": 70350, + "value": ")" + }, + { + "type": "whitespace", + "start": 70350, + "end": 70353, + "value": "\n " + }, + { + "type": "operator", + "start": 70353, + "end": 70355, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70355, + "end": 70356, + "value": " " + }, + { + "type": "word", + "start": 70356, + "end": 70360, + "value": "line" + }, + { + "type": "brace", + "start": 70360, + "end": 70361, + "value": "(" + }, + { + "type": "brace", + "start": 70361, + "end": 70362, + "value": "[" + }, + { + "type": "whitespace", + "start": 70362, + "end": 70370, + "value": "\n " + }, + { + "type": "number", + "start": 70370, + "end": 70388, + "value": "0.6751951211858687" + }, + { + "type": "comma", + "start": 70388, + "end": 70389, + "value": "," + }, + { + "type": "whitespace", + "start": 70389, + "end": 70397, + "value": "\n " + }, + { + "type": "operator", + "start": 70397, + "end": 70398, + "value": "-" + }, + { + "type": "number", + "start": 70398, + "end": 70416, + "value": "0.9709424233465593" + }, + { + "type": "whitespace", + "start": 70416, + "end": 70422, + "value": "\n " + }, + { + "type": "brace", + "start": 70422, + "end": 70423, + "value": "]" + }, + { + "type": "comma", + "start": 70423, + "end": 70424, + "value": "," + }, + { + "type": "whitespace", + "start": 70424, + "end": 70425, + "value": " " + }, + { + "type": "operator", + "start": 70425, + "end": 70426, + "value": "%" + }, + { + "type": "brace", + "start": 70426, + "end": 70427, + "value": ")" + }, + { + "type": "whitespace", + "start": 70427, + "end": 70430, + "value": "\n " + }, + { + "type": "operator", + "start": 70430, + "end": 70432, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70432, + "end": 70433, + "value": " " + }, + { + "type": "word", + "start": 70433, + "end": 70437, + "value": "line" + }, + { + "type": "brace", + "start": 70437, + "end": 70438, + "value": "(" + }, + { + "type": "brace", + "start": 70438, + "end": 70439, + "value": "[" + }, + { + "type": "whitespace", + "start": 70439, + "end": 70447, + "value": "\n " + }, + { + "type": "operator", + "start": 70447, + "end": 70448, + "value": "-" + }, + { + "type": "number", + "start": 70448, + "end": 70466, + "value": "0.5689619842972184" + }, + { + "type": "comma", + "start": 70466, + "end": 70467, + "value": "," + }, + { + "type": "whitespace", + "start": 70467, + "end": 70475, + "value": "\n " + }, + { + "type": "number", + "start": 70475, + "end": 70493, + "value": "0.5918969913790362" + }, + { + "type": "whitespace", + "start": 70493, + "end": 70499, + "value": "\n " + }, + { + "type": "brace", + "start": 70499, + "end": 70500, + "value": "]" + }, + { + "type": "comma", + "start": 70500, + "end": 70501, + "value": "," + }, + { + "type": "whitespace", + "start": 70501, + "end": 70502, + "value": " " + }, + { + "type": "operator", + "start": 70502, + "end": 70503, + "value": "%" + }, + { + "type": "brace", + "start": 70503, + "end": 70504, + "value": ")" + }, + { + "type": "whitespace", + "start": 70504, + "end": 70507, + "value": "\n " + }, + { + "type": "operator", + "start": 70507, + "end": 70509, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70509, + "end": 70510, + "value": " " + }, + { + "type": "word", + "start": 70510, + "end": 70514, + "value": "line" + }, + { + "type": "brace", + "start": 70514, + "end": 70515, + "value": "(" + }, + { + "type": "brace", + "start": 70515, + "end": 70516, + "value": "[" + }, + { + "type": "whitespace", + "start": 70516, + "end": 70524, + "value": "\n " + }, + { + "type": "number", + "start": 70524, + "end": 70542, + "value": "0.9464450621708211" + }, + { + "type": "comma", + "start": 70542, + "end": 70543, + "value": "," + }, + { + "type": "whitespace", + "start": 70543, + "end": 70551, + "value": "\n " + }, + { + "type": "operator", + "start": 70551, + "end": 70552, + "value": "-" + }, + { + "type": "number", + "start": 70552, + "end": 70570, + "value": "0.2684908127803667" + }, + { + "type": "whitespace", + "start": 70570, + "end": 70576, + "value": "\n " + }, + { + "type": "brace", + "start": 70576, + "end": 70577, + "value": "]" + }, + { + "type": "comma", + "start": 70577, + "end": 70578, + "value": "," + }, + { + "type": "whitespace", + "start": 70578, + "end": 70579, + "value": " " + }, + { + "type": "operator", + "start": 70579, + "end": 70580, + "value": "%" + }, + { + "type": "brace", + "start": 70580, + "end": 70581, + "value": ")" + }, + { + "type": "whitespace", + "start": 70581, + "end": 70584, + "value": "\n " + }, + { + "type": "operator", + "start": 70584, + "end": 70586, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70586, + "end": 70587, + "value": " " + }, + { + "type": "word", + "start": 70587, + "end": 70591, + "value": "line" + }, + { + "type": "brace", + "start": 70591, + "end": 70592, + "value": "(" + }, + { + "type": "brace", + "start": 70592, + "end": 70593, + "value": "[" + }, + { + "type": "number", + "start": 70593, + "end": 70611, + "value": "0.5241732366617591" + }, + { + "type": "comma", + "start": 70611, + "end": 70612, + "value": "," + }, + { + "type": "whitespace", + "start": 70612, + "end": 70613, + "value": " " + }, + { + "type": "number", + "start": 70613, + "end": 70631, + "value": "0.9011437416408563" + }, + { + "type": "brace", + "start": 70631, + "end": 70632, + "value": "]" + }, + { + "type": "comma", + "start": 70632, + "end": 70633, + "value": "," + }, + { + "type": "whitespace", + "start": 70633, + "end": 70634, + "value": " " + }, + { + "type": "operator", + "start": 70634, + "end": 70635, + "value": "%" + }, + { + "type": "brace", + "start": 70635, + "end": 70636, + "value": ")" + }, + { + "type": "whitespace", + "start": 70636, + "end": 70639, + "value": "\n " + }, + { + "type": "operator", + "start": 70639, + "end": 70641, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70641, + "end": 70642, + "value": " " + }, + { + "type": "word", + "start": 70642, + "end": 70646, + "value": "line" + }, + { + "type": "brace", + "start": 70646, + "end": 70647, + "value": "(" + }, + { + "type": "brace", + "start": 70647, + "end": 70648, + "value": "[" + }, + { + "type": "whitespace", + "start": 70648, + "end": 70656, + "value": "\n " + }, + { + "type": "operator", + "start": 70656, + "end": 70657, + "value": "-" + }, + { + "type": "number", + "start": 70657, + "end": 70676, + "value": "0.14255393713960607" + }, + { + "type": "comma", + "start": 70676, + "end": 70677, + "value": "," + }, + { + "type": "whitespace", + "start": 70677, + "end": 70685, + "value": "\n " + }, + { + "type": "operator", + "start": 70685, + "end": 70686, + "value": "-" + }, + { + "type": "number", + "start": 70686, + "end": 70704, + "value": "0.5194262624564814" + }, + { + "type": "whitespace", + "start": 70704, + "end": 70710, + "value": "\n " + }, + { + "type": "brace", + "start": 70710, + "end": 70711, + "value": "]" + }, + { + "type": "comma", + "start": 70711, + "end": 70712, + "value": "," + }, + { + "type": "whitespace", + "start": 70712, + "end": 70713, + "value": " " + }, + { + "type": "operator", + "start": 70713, + "end": 70714, + "value": "%" + }, + { + "type": "brace", + "start": 70714, + "end": 70715, + "value": ")" + }, + { + "type": "whitespace", + "start": 70715, + "end": 70718, + "value": "\n " + }, + { + "type": "operator", + "start": 70718, + "end": 70720, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70720, + "end": 70721, + "value": " " + }, + { + "type": "word", + "start": 70721, + "end": 70725, + "value": "line" + }, + { + "type": "brace", + "start": 70725, + "end": 70726, + "value": "(" + }, + { + "type": "brace", + "start": 70726, + "end": 70727, + "value": "[" + }, + { + "type": "whitespace", + "start": 70727, + "end": 70735, + "value": "\n " + }, + { + "type": "operator", + "start": 70735, + "end": 70736, + "value": "-" + }, + { + "type": "number", + "start": 70736, + "end": 70754, + "value": "0.4287123231350338" + }, + { + "type": "comma", + "start": 70754, + "end": 70755, + "value": "," + }, + { + "type": "whitespace", + "start": 70755, + "end": 70763, + "value": "\n " + }, + { + "type": "operator", + "start": 70763, + "end": 70764, + "value": "-" + }, + { + "type": "number", + "start": 70764, + "end": 70782, + "value": "0.4223564528725028" + }, + { + "type": "whitespace", + "start": 70782, + "end": 70788, + "value": "\n " + }, + { + "type": "brace", + "start": 70788, + "end": 70789, + "value": "]" + }, + { + "type": "comma", + "start": 70789, + "end": 70790, + "value": "," + }, + { + "type": "whitespace", + "start": 70790, + "end": 70791, + "value": " " + }, + { + "type": "operator", + "start": 70791, + "end": 70792, + "value": "%" + }, + { + "type": "brace", + "start": 70792, + "end": 70793, + "value": ")" + }, + { + "type": "whitespace", + "start": 70793, + "end": 70796, + "value": "\n " + }, + { + "type": "operator", + "start": 70796, + "end": 70798, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70798, + "end": 70799, + "value": " " + }, + { + "type": "word", + "start": 70799, + "end": 70803, + "value": "line" + }, + { + "type": "brace", + "start": 70803, + "end": 70804, + "value": "(" + }, + { + "type": "brace", + "start": 70804, + "end": 70805, + "value": "[" + }, + { + "type": "whitespace", + "start": 70805, + "end": 70813, + "value": "\n " + }, + { + "type": "operator", + "start": 70813, + "end": 70814, + "value": "-" + }, + { + "type": "number", + "start": 70814, + "end": 70833, + "value": "0.09316367294024519" + }, + { + "type": "comma", + "start": 70833, + "end": 70834, + "value": "," + }, + { + "type": "whitespace", + "start": 70834, + "end": 70842, + "value": "\n " + }, + { + "type": "operator", + "start": 70842, + "end": 70843, + "value": "-" + }, + { + "type": "number", + "start": 70843, + "end": 70861, + "value": "0.9063127021008246" + }, + { + "type": "whitespace", + "start": 70861, + "end": 70867, + "value": "\n " + }, + { + "type": "brace", + "start": 70867, + "end": 70868, + "value": "]" + }, + { + "type": "comma", + "start": 70868, + "end": 70869, + "value": "," + }, + { + "type": "whitespace", + "start": 70869, + "end": 70870, + "value": " " + }, + { + "type": "operator", + "start": 70870, + "end": 70871, + "value": "%" + }, + { + "type": "brace", + "start": 70871, + "end": 70872, + "value": ")" + }, + { + "type": "whitespace", + "start": 70872, + "end": 70875, + "value": "\n " + }, + { + "type": "operator", + "start": 70875, + "end": 70877, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70877, + "end": 70878, + "value": " " + }, + { + "type": "word", + "start": 70878, + "end": 70882, + "value": "line" + }, + { + "type": "brace", + "start": 70882, + "end": 70883, + "value": "(" + }, + { + "type": "brace", + "start": 70883, + "end": 70884, + "value": "[" + }, + { + "type": "whitespace", + "start": 70884, + "end": 70892, + "value": "\n " + }, + { + "type": "operator", + "start": 70892, + "end": 70893, + "value": "-" + }, + { + "type": "number", + "start": 70893, + "end": 70911, + "value": "0.2767766535558669" + }, + { + "type": "comma", + "start": 70911, + "end": 70912, + "value": "," + }, + { + "type": "whitespace", + "start": 70912, + "end": 70920, + "value": "\n " + }, + { + "type": "number", + "start": 70920, + "end": 70938, + "value": "0.6816248114129131" + }, + { + "type": "whitespace", + "start": 70938, + "end": 70944, + "value": "\n " + }, + { + "type": "brace", + "start": 70944, + "end": 70945, + "value": "]" + }, + { + "type": "comma", + "start": 70945, + "end": 70946, + "value": "," + }, + { + "type": "whitespace", + "start": 70946, + "end": 70947, + "value": " " + }, + { + "type": "operator", + "start": 70947, + "end": 70948, + "value": "%" + }, + { + "type": "brace", + "start": 70948, + "end": 70949, + "value": ")" + }, + { + "type": "whitespace", + "start": 70949, + "end": 70952, + "value": "\n " + }, + { + "type": "operator", + "start": 70952, + "end": 70954, + "value": "|>" + }, + { + "type": "whitespace", + "start": 70954, + "end": 70955, + "value": " " + }, + { + "type": "word", + "start": 70955, + "end": 70959, + "value": "line" + }, + { + "type": "brace", + "start": 70959, + "end": 70960, + "value": "(" + }, + { + "type": "brace", + "start": 70960, + "end": 70961, + "value": "[" + }, + { + "type": "whitespace", + "start": 70961, + "end": 70969, + "value": "\n " + }, + { + "type": "number", + "start": 70969, + "end": 70987, + "value": "0.9796762495562534" + }, + { + "type": "comma", + "start": 70987, + "end": 70988, + "value": "," + }, + { + "type": "whitespace", + "start": 70988, + "end": 70996, + "value": "\n " + }, + { + "type": "operator", + "start": 70996, + "end": 70997, + "value": "-" + }, + { + "type": "number", + "start": 70997, + "end": 71015, + "value": "0.0822145668330625" + }, + { + "type": "whitespace", + "start": 71015, + "end": 71021, + "value": "\n " + }, + { + "type": "brace", + "start": 71021, + "end": 71022, + "value": "]" + }, + { + "type": "comma", + "start": 71022, + "end": 71023, + "value": "," + }, + { + "type": "whitespace", + "start": 71023, + "end": 71024, + "value": " " + }, + { + "type": "operator", + "start": 71024, + "end": 71025, + "value": "%" + }, + { + "type": "brace", + "start": 71025, + "end": 71026, + "value": ")" + }, + { + "type": "whitespace", + "start": 71026, + "end": 71029, + "value": "\n " + }, + { + "type": "operator", + "start": 71029, + "end": 71031, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71031, + "end": 71032, + "value": " " + }, + { + "type": "word", + "start": 71032, + "end": 71036, + "value": "line" + }, + { + "type": "brace", + "start": 71036, + "end": 71037, + "value": "(" + }, + { + "type": "brace", + "start": 71037, + "end": 71038, + "value": "[" + }, + { + "type": "whitespace", + "start": 71038, + "end": 71046, + "value": "\n " + }, + { + "type": "operator", + "start": 71046, + "end": 71047, + "value": "-" + }, + { + "type": "number", + "start": 71047, + "end": 71065, + "value": "0.8666513070867441" + }, + { + "type": "comma", + "start": 71065, + "end": 71066, + "value": "," + }, + { + "type": "whitespace", + "start": 71066, + "end": 71074, + "value": "\n " + }, + { + "type": "operator", + "start": 71074, + "end": 71075, + "value": "-" + }, + { + "type": "number", + "start": 71075, + "end": 71092, + "value": "0.301053160242023" + }, + { + "type": "whitespace", + "start": 71092, + "end": 71098, + "value": "\n " + }, + { + "type": "brace", + "start": 71098, + "end": 71099, + "value": "]" + }, + { + "type": "comma", + "start": 71099, + "end": 71100, + "value": "," + }, + { + "type": "whitespace", + "start": 71100, + "end": 71101, + "value": " " + }, + { + "type": "operator", + "start": 71101, + "end": 71102, + "value": "%" + }, + { + "type": "brace", + "start": 71102, + "end": 71103, + "value": ")" + }, + { + "type": "whitespace", + "start": 71103, + "end": 71106, + "value": "\n " + }, + { + "type": "operator", + "start": 71106, + "end": 71108, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71108, + "end": 71109, + "value": " " + }, + { + "type": "word", + "start": 71109, + "end": 71113, + "value": "line" + }, + { + "type": "brace", + "start": 71113, + "end": 71114, + "value": "(" + }, + { + "type": "brace", + "start": 71114, + "end": 71115, + "value": "[" + }, + { + "type": "whitespace", + "start": 71115, + "end": 71123, + "value": "\n " + }, + { + "type": "number", + "start": 71123, + "end": 71140, + "value": "0.537415656028112" + }, + { + "type": "comma", + "start": 71140, + "end": 71141, + "value": "," + }, + { + "type": "whitespace", + "start": 71141, + "end": 71149, + "value": "\n " + }, + { + "type": "number", + "start": 71149, + "end": 71169, + "value": "0.020272692875002774" + }, + { + "type": "whitespace", + "start": 71169, + "end": 71175, + "value": "\n " + }, + { + "type": "brace", + "start": 71175, + "end": 71176, + "value": "]" + }, + { + "type": "comma", + "start": 71176, + "end": 71177, + "value": "," + }, + { + "type": "whitespace", + "start": 71177, + "end": 71178, + "value": " " + }, + { + "type": "operator", + "start": 71178, + "end": 71179, + "value": "%" + }, + { + "type": "brace", + "start": 71179, + "end": 71180, + "value": ")" + }, + { + "type": "whitespace", + "start": 71180, + "end": 71183, + "value": "\n " + }, + { + "type": "operator", + "start": 71183, + "end": 71185, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71185, + "end": 71186, + "value": " " + }, + { + "type": "word", + "start": 71186, + "end": 71190, + "value": "line" + }, + { + "type": "brace", + "start": 71190, + "end": 71191, + "value": "(" + }, + { + "type": "brace", + "start": 71191, + "end": 71192, + "value": "[" + }, + { + "type": "whitespace", + "start": 71192, + "end": 71200, + "value": "\n " + }, + { + "type": "number", + "start": 71200, + "end": 71218, + "value": "0.9332396256457531" + }, + { + "type": "comma", + "start": 71218, + "end": 71219, + "value": "," + }, + { + "type": "whitespace", + "start": 71219, + "end": 71227, + "value": "\n " + }, + { + "type": "operator", + "start": 71227, + "end": 71228, + "value": "-" + }, + { + "type": "number", + "start": 71228, + "end": 71246, + "value": "0.6228175690649898" + }, + { + "type": "whitespace", + "start": 71246, + "end": 71252, + "value": "\n " + }, + { + "type": "brace", + "start": 71252, + "end": 71253, + "value": "]" + }, + { + "type": "comma", + "start": 71253, + "end": 71254, + "value": "," + }, + { + "type": "whitespace", + "start": 71254, + "end": 71255, + "value": " " + }, + { + "type": "operator", + "start": 71255, + "end": 71256, + "value": "%" + }, + { + "type": "brace", + "start": 71256, + "end": 71257, + "value": ")" + }, + { + "type": "whitespace", + "start": 71257, + "end": 71260, + "value": "\n " + }, + { + "type": "operator", + "start": 71260, + "end": 71262, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71262, + "end": 71263, + "value": " " + }, + { + "type": "word", + "start": 71263, + "end": 71267, + "value": "line" + }, + { + "type": "brace", + "start": 71267, + "end": 71268, + "value": "(" + }, + { + "type": "brace", + "start": 71268, + "end": 71269, + "value": "[" + }, + { + "type": "whitespace", + "start": 71269, + "end": 71277, + "value": "\n " + }, + { + "type": "number", + "start": 71277, + "end": 71296, + "value": "0.18052415837320734" + }, + { + "type": "comma", + "start": 71296, + "end": 71297, + "value": "," + }, + { + "type": "whitespace", + "start": 71297, + "end": 71305, + "value": "\n " + }, + { + "type": "operator", + "start": 71305, + "end": 71306, + "value": "-" + }, + { + "type": "number", + "start": 71306, + "end": 71325, + "value": "0.36894384647296197" + }, + { + "type": "whitespace", + "start": 71325, + "end": 71331, + "value": "\n " + }, + { + "type": "brace", + "start": 71331, + "end": 71332, + "value": "]" + }, + { + "type": "comma", + "start": 71332, + "end": 71333, + "value": "," + }, + { + "type": "whitespace", + "start": 71333, + "end": 71334, + "value": " " + }, + { + "type": "operator", + "start": 71334, + "end": 71335, + "value": "%" + }, + { + "type": "brace", + "start": 71335, + "end": 71336, + "value": ")" + }, + { + "type": "whitespace", + "start": 71336, + "end": 71339, + "value": "\n " + }, + { + "type": "operator", + "start": 71339, + "end": 71341, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71341, + "end": 71342, + "value": " " + }, + { + "type": "word", + "start": 71342, + "end": 71346, + "value": "line" + }, + { + "type": "brace", + "start": 71346, + "end": 71347, + "value": "(" + }, + { + "type": "brace", + "start": 71347, + "end": 71348, + "value": "[" + }, + { + "type": "number", + "start": 71348, + "end": 71366, + "value": "0.5384372634075449" + }, + { + "type": "comma", + "start": 71366, + "end": 71367, + "value": "," + }, + { + "type": "whitespace", + "start": 71367, + "end": 71368, + "value": " " + }, + { + "type": "number", + "start": 71368, + "end": 71386, + "value": "0.2377565050887107" + }, + { + "type": "brace", + "start": 71386, + "end": 71387, + "value": "]" + }, + { + "type": "comma", + "start": 71387, + "end": 71388, + "value": "," + }, + { + "type": "whitespace", + "start": 71388, + "end": 71389, + "value": " " + }, + { + "type": "operator", + "start": 71389, + "end": 71390, + "value": "%" + }, + { + "type": "brace", + "start": 71390, + "end": 71391, + "value": ")" + }, + { + "type": "whitespace", + "start": 71391, + "end": 71394, + "value": "\n " + }, + { + "type": "operator", + "start": 71394, + "end": 71396, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71396, + "end": 71397, + "value": " " + }, + { + "type": "word", + "start": 71397, + "end": 71401, + "value": "line" + }, + { + "type": "brace", + "start": 71401, + "end": 71402, + "value": "(" + }, + { + "type": "brace", + "start": 71402, + "end": 71403, + "value": "[" + }, + { + "type": "whitespace", + "start": 71403, + "end": 71411, + "value": "\n " + }, + { + "type": "number", + "start": 71411, + "end": 71430, + "value": "0.39043436929278874" + }, + { + "type": "comma", + "start": 71430, + "end": 71431, + "value": "," + }, + { + "type": "whitespace", + "start": 71431, + "end": 71439, + "value": "\n " + }, + { + "type": "number", + "start": 71439, + "end": 71458, + "value": "0.14273182483160451" + }, + { + "type": "whitespace", + "start": 71458, + "end": 71464, + "value": "\n " + }, + { + "type": "brace", + "start": 71464, + "end": 71465, + "value": "]" + }, + { + "type": "comma", + "start": 71465, + "end": 71466, + "value": "," + }, + { + "type": "whitespace", + "start": 71466, + "end": 71467, + "value": " " + }, + { + "type": "operator", + "start": 71467, + "end": 71468, + "value": "%" + }, + { + "type": "brace", + "start": 71468, + "end": 71469, + "value": ")" + }, + { + "type": "whitespace", + "start": 71469, + "end": 71472, + "value": "\n " + }, + { + "type": "operator", + "start": 71472, + "end": 71474, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71474, + "end": 71475, + "value": " " + }, + { + "type": "word", + "start": 71475, + "end": 71479, + "value": "line" + }, + { + "type": "brace", + "start": 71479, + "end": 71480, + "value": "(" + }, + { + "type": "brace", + "start": 71480, + "end": 71481, + "value": "[" + }, + { + "type": "whitespace", + "start": 71481, + "end": 71489, + "value": "\n " + }, + { + "type": "number", + "start": 71489, + "end": 71508, + "value": "0.09782890412897283" + }, + { + "type": "comma", + "start": 71508, + "end": 71509, + "value": "," + }, + { + "type": "whitespace", + "start": 71509, + "end": 71517, + "value": "\n " + }, + { + "type": "number", + "start": 71517, + "end": 71535, + "value": "0.9907667536909659" + }, + { + "type": "whitespace", + "start": 71535, + "end": 71541, + "value": "\n " + }, + { + "type": "brace", + "start": 71541, + "end": 71542, + "value": "]" + }, + { + "type": "comma", + "start": 71542, + "end": 71543, + "value": "," + }, + { + "type": "whitespace", + "start": 71543, + "end": 71544, + "value": " " + }, + { + "type": "operator", + "start": 71544, + "end": 71545, + "value": "%" + }, + { + "type": "brace", + "start": 71545, + "end": 71546, + "value": ")" + }, + { + "type": "whitespace", + "start": 71546, + "end": 71549, + "value": "\n " + }, + { + "type": "operator", + "start": 71549, + "end": 71551, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71551, + "end": 71552, + "value": " " + }, + { + "type": "word", + "start": 71552, + "end": 71556, + "value": "line" + }, + { + "type": "brace", + "start": 71556, + "end": 71557, + "value": "(" + }, + { + "type": "brace", + "start": 71557, + "end": 71558, + "value": "[" + }, + { + "type": "whitespace", + "start": 71558, + "end": 71566, + "value": "\n " + }, + { + "type": "number", + "start": 71566, + "end": 71584, + "value": "0.5286610085921146" + }, + { + "type": "comma", + "start": 71584, + "end": 71585, + "value": "," + }, + { + "type": "whitespace", + "start": 71585, + "end": 71593, + "value": "\n " + }, + { + "type": "operator", + "start": 71593, + "end": 71594, + "value": "-" + }, + { + "type": "number", + "start": 71594, + "end": 71612, + "value": "0.7924508308419256" + }, + { + "type": "whitespace", + "start": 71612, + "end": 71618, + "value": "\n " + }, + { + "type": "brace", + "start": 71618, + "end": 71619, + "value": "]" + }, + { + "type": "comma", + "start": 71619, + "end": 71620, + "value": "," + }, + { + "type": "whitespace", + "start": 71620, + "end": 71621, + "value": " " + }, + { + "type": "operator", + "start": 71621, + "end": 71622, + "value": "%" + }, + { + "type": "brace", + "start": 71622, + "end": 71623, + "value": ")" + }, + { + "type": "whitespace", + "start": 71623, + "end": 71626, + "value": "\n " + }, + { + "type": "operator", + "start": 71626, + "end": 71628, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71628, + "end": 71629, + "value": " " + }, + { + "type": "word", + "start": 71629, + "end": 71633, + "value": "line" + }, + { + "type": "brace", + "start": 71633, + "end": 71634, + "value": "(" + }, + { + "type": "brace", + "start": 71634, + "end": 71635, + "value": "[" + }, + { + "type": "whitespace", + "start": 71635, + "end": 71643, + "value": "\n " + }, + { + "type": "number", + "start": 71643, + "end": 71661, + "value": "0.3789978184503342" + }, + { + "type": "comma", + "start": 71661, + "end": 71662, + "value": "," + }, + { + "type": "whitespace", + "start": 71662, + "end": 71670, + "value": "\n " + }, + { + "type": "number", + "start": 71670, + "end": 71689, + "value": "0.12396120576838676" + }, + { + "type": "whitespace", + "start": 71689, + "end": 71695, + "value": "\n " + }, + { + "type": "brace", + "start": 71695, + "end": 71696, + "value": "]" + }, + { + "type": "comma", + "start": 71696, + "end": 71697, + "value": "," + }, + { + "type": "whitespace", + "start": 71697, + "end": 71698, + "value": " " + }, + { + "type": "operator", + "start": 71698, + "end": 71699, + "value": "%" + }, + { + "type": "brace", + "start": 71699, + "end": 71700, + "value": ")" + }, + { + "type": "whitespace", + "start": 71700, + "end": 71703, + "value": "\n " + }, + { + "type": "operator", + "start": 71703, + "end": 71705, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71705, + "end": 71706, + "value": " " + }, + { + "type": "word", + "start": 71706, + "end": 71710, + "value": "line" + }, + { + "type": "brace", + "start": 71710, + "end": 71711, + "value": "(" + }, + { + "type": "brace", + "start": 71711, + "end": 71712, + "value": "[" + }, + { + "type": "whitespace", + "start": 71712, + "end": 71720, + "value": "\n " + }, + { + "type": "operator", + "start": 71720, + "end": 71721, + "value": "-" + }, + { + "type": "number", + "start": 71721, + "end": 71739, + "value": "0.9484912744890612" + }, + { + "type": "comma", + "start": 71739, + "end": 71740, + "value": "," + }, + { + "type": "whitespace", + "start": 71740, + "end": 71748, + "value": "\n " + }, + { + "type": "number", + "start": 71748, + "end": 71766, + "value": "0.6729649846476855" + }, + { + "type": "whitespace", + "start": 71766, + "end": 71772, + "value": "\n " + }, + { + "type": "brace", + "start": 71772, + "end": 71773, + "value": "]" + }, + { + "type": "comma", + "start": 71773, + "end": 71774, + "value": "," + }, + { + "type": "whitespace", + "start": 71774, + "end": 71775, + "value": " " + }, + { + "type": "operator", + "start": 71775, + "end": 71776, + "value": "%" + }, + { + "type": "brace", + "start": 71776, + "end": 71777, + "value": ")" + }, + { + "type": "whitespace", + "start": 71777, + "end": 71780, + "value": "\n " + }, + { + "type": "operator", + "start": 71780, + "end": 71782, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71782, + "end": 71783, + "value": " " + }, + { + "type": "word", + "start": 71783, + "end": 71787, + "value": "line" + }, + { + "type": "brace", + "start": 71787, + "end": 71788, + "value": "(" + }, + { + "type": "brace", + "start": 71788, + "end": 71789, + "value": "[" + }, + { + "type": "whitespace", + "start": 71789, + "end": 71797, + "value": "\n " + }, + { + "type": "number", + "start": 71797, + "end": 71815, + "value": "0.7451758753425153" + }, + { + "type": "comma", + "start": 71815, + "end": 71816, + "value": "," + }, + { + "type": "whitespace", + "start": 71816, + "end": 71824, + "value": "\n " + }, + { + "type": "operator", + "start": 71824, + "end": 71825, + "value": "-" + }, + { + "type": "number", + "start": 71825, + "end": 71844, + "value": "0.21318737562458967" + }, + { + "type": "whitespace", + "start": 71844, + "end": 71850, + "value": "\n " + }, + { + "type": "brace", + "start": 71850, + "end": 71851, + "value": "]" + }, + { + "type": "comma", + "start": 71851, + "end": 71852, + "value": "," + }, + { + "type": "whitespace", + "start": 71852, + "end": 71853, + "value": " " + }, + { + "type": "operator", + "start": 71853, + "end": 71854, + "value": "%" + }, + { + "type": "brace", + "start": 71854, + "end": 71855, + "value": ")" + }, + { + "type": "whitespace", + "start": 71855, + "end": 71858, + "value": "\n " + }, + { + "type": "operator", + "start": 71858, + "end": 71860, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71860, + "end": 71861, + "value": " " + }, + { + "type": "word", + "start": 71861, + "end": 71865, + "value": "line" + }, + { + "type": "brace", + "start": 71865, + "end": 71866, + "value": "(" + }, + { + "type": "brace", + "start": 71866, + "end": 71867, + "value": "[" + }, + { + "type": "whitespace", + "start": 71867, + "end": 71875, + "value": "\n " + }, + { + "type": "number", + "start": 71875, + "end": 71893, + "value": "0.1873200727251887" + }, + { + "type": "comma", + "start": 71893, + "end": 71894, + "value": "," + }, + { + "type": "whitespace", + "start": 71894, + "end": 71902, + "value": "\n " + }, + { + "type": "operator", + "start": 71902, + "end": 71903, + "value": "-" + }, + { + "type": "number", + "start": 71903, + "end": 71922, + "value": "0.15961374297992448" + }, + { + "type": "whitespace", + "start": 71922, + "end": 71928, + "value": "\n " + }, + { + "type": "brace", + "start": 71928, + "end": 71929, + "value": "]" + }, + { + "type": "comma", + "start": 71929, + "end": 71930, + "value": "," + }, + { + "type": "whitespace", + "start": 71930, + "end": 71931, + "value": " " + }, + { + "type": "operator", + "start": 71931, + "end": 71932, + "value": "%" + }, + { + "type": "brace", + "start": 71932, + "end": 71933, + "value": ")" + }, + { + "type": "whitespace", + "start": 71933, + "end": 71936, + "value": "\n " + }, + { + "type": "operator", + "start": 71936, + "end": 71938, + "value": "|>" + }, + { + "type": "whitespace", + "start": 71938, + "end": 71939, + "value": " " + }, + { + "type": "word", + "start": 71939, + "end": 71943, + "value": "line" + }, + { + "type": "brace", + "start": 71943, + "end": 71944, + "value": "(" + }, + { + "type": "brace", + "start": 71944, + "end": 71945, + "value": "[" + }, + { + "type": "whitespace", + "start": 71945, + "end": 71953, + "value": "\n " + }, + { + "type": "operator", + "start": 71953, + "end": 71954, + "value": "-" + }, + { + "type": "number", + "start": 71954, + "end": 71973, + "value": "0.05729464924537564" + }, + { + "type": "comma", + "start": 71973, + "end": 71974, + "value": "," + }, + { + "type": "whitespace", + "start": 71974, + "end": 71982, + "value": "\n " + }, + { + "type": "operator", + "start": 71982, + "end": 71983, + "value": "-" + }, + { + "type": "number", + "start": 71983, + "end": 72001, + "value": "0.5436345558508746" + }, + { + "type": "whitespace", + "start": 72001, + "end": 72007, + "value": "\n " + }, + { + "type": "brace", + "start": 72007, + "end": 72008, + "value": "]" + }, + { + "type": "comma", + "start": 72008, + "end": 72009, + "value": "," + }, + { + "type": "whitespace", + "start": 72009, + "end": 72010, + "value": " " + }, + { + "type": "operator", + "start": 72010, + "end": 72011, + "value": "%" + }, + { + "type": "brace", + "start": 72011, + "end": 72012, + "value": ")" + }, + { + "type": "whitespace", + "start": 72012, + "end": 72015, + "value": "\n " + }, + { + "type": "operator", + "start": 72015, + "end": 72017, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72017, + "end": 72018, + "value": " " + }, + { + "type": "word", + "start": 72018, + "end": 72022, + "value": "line" + }, + { + "type": "brace", + "start": 72022, + "end": 72023, + "value": "(" + }, + { + "type": "brace", + "start": 72023, + "end": 72024, + "value": "[" + }, + { + "type": "whitespace", + "start": 72024, + "end": 72032, + "value": "\n " + }, + { + "type": "operator", + "start": 72032, + "end": 72033, + "value": "-" + }, + { + "type": "number", + "start": 72033, + "end": 72052, + "value": "0.09582414374469184" + }, + { + "type": "comma", + "start": 72052, + "end": 72053, + "value": "," + }, + { + "type": "whitespace", + "start": 72053, + "end": 72061, + "value": "\n " + }, + { + "type": "operator", + "start": 72061, + "end": 72062, + "value": "-" + }, + { + "type": "number", + "start": 72062, + "end": 72080, + "value": "0.7533839681212353" + }, + { + "type": "whitespace", + "start": 72080, + "end": 72086, + "value": "\n " + }, + { + "type": "brace", + "start": 72086, + "end": 72087, + "value": "]" + }, + { + "type": "comma", + "start": 72087, + "end": 72088, + "value": "," + }, + { + "type": "whitespace", + "start": 72088, + "end": 72089, + "value": " " + }, + { + "type": "operator", + "start": 72089, + "end": 72090, + "value": "%" + }, + { + "type": "brace", + "start": 72090, + "end": 72091, + "value": ")" + }, + { + "type": "whitespace", + "start": 72091, + "end": 72094, + "value": "\n " + }, + { + "type": "operator", + "start": 72094, + "end": 72096, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72096, + "end": 72097, + "value": " " + }, + { + "type": "word", + "start": 72097, + "end": 72101, + "value": "line" + }, + { + "type": "brace", + "start": 72101, + "end": 72102, + "value": "(" + }, + { + "type": "brace", + "start": 72102, + "end": 72103, + "value": "[" + }, + { + "type": "whitespace", + "start": 72103, + "end": 72111, + "value": "\n " + }, + { + "type": "operator", + "start": 72111, + "end": 72112, + "value": "-" + }, + { + "type": "number", + "start": 72112, + "end": 72131, + "value": "0.17254116580051848" + }, + { + "type": "comma", + "start": 72131, + "end": 72132, + "value": "," + }, + { + "type": "whitespace", + "start": 72132, + "end": 72140, + "value": "\n " + }, + { + "type": "operator", + "start": 72140, + "end": 72141, + "value": "-" + }, + { + "type": "number", + "start": 72141, + "end": 72159, + "value": "0.7669113400341137" + }, + { + "type": "whitespace", + "start": 72159, + "end": 72165, + "value": "\n " + }, + { + "type": "brace", + "start": 72165, + "end": 72166, + "value": "]" + }, + { + "type": "comma", + "start": 72166, + "end": 72167, + "value": "," + }, + { + "type": "whitespace", + "start": 72167, + "end": 72168, + "value": " " + }, + { + "type": "operator", + "start": 72168, + "end": 72169, + "value": "%" + }, + { + "type": "brace", + "start": 72169, + "end": 72170, + "value": ")" + }, + { + "type": "whitespace", + "start": 72170, + "end": 72173, + "value": "\n " + }, + { + "type": "operator", + "start": 72173, + "end": 72175, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72175, + "end": 72176, + "value": " " + }, + { + "type": "word", + "start": 72176, + "end": 72180, + "value": "line" + }, + { + "type": "brace", + "start": 72180, + "end": 72181, + "value": "(" + }, + { + "type": "brace", + "start": 72181, + "end": 72182, + "value": "[" + }, + { + "type": "number", + "start": 72182, + "end": 72200, + "value": "0.8944730032887609" + }, + { + "type": "comma", + "start": 72200, + "end": 72201, + "value": "," + }, + { + "type": "whitespace", + "start": 72201, + "end": 72202, + "value": " " + }, + { + "type": "number", + "start": 72202, + "end": 72220, + "value": "0.6093318694741408" + }, + { + "type": "brace", + "start": 72220, + "end": 72221, + "value": "]" + }, + { + "type": "comma", + "start": 72221, + "end": 72222, + "value": "," + }, + { + "type": "whitespace", + "start": 72222, + "end": 72223, + "value": " " + }, + { + "type": "operator", + "start": 72223, + "end": 72224, + "value": "%" + }, + { + "type": "brace", + "start": 72224, + "end": 72225, + "value": ")" + }, + { + "type": "whitespace", + "start": 72225, + "end": 72228, + "value": "\n " + }, + { + "type": "operator", + "start": 72228, + "end": 72230, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72230, + "end": 72231, + "value": " " + }, + { + "type": "word", + "start": 72231, + "end": 72235, + "value": "line" + }, + { + "type": "brace", + "start": 72235, + "end": 72236, + "value": "(" + }, + { + "type": "brace", + "start": 72236, + "end": 72237, + "value": "[" + }, + { + "type": "whitespace", + "start": 72237, + "end": 72245, + "value": "\n " + }, + { + "type": "operator", + "start": 72245, + "end": 72246, + "value": "-" + }, + { + "type": "number", + "start": 72246, + "end": 72264, + "value": "0.6238548626325471" + }, + { + "type": "comma", + "start": 72264, + "end": 72265, + "value": "," + }, + { + "type": "whitespace", + "start": 72265, + "end": 72273, + "value": "\n " + }, + { + "type": "number", + "start": 72273, + "end": 72291, + "value": "0.4053626746020169" + }, + { + "type": "whitespace", + "start": 72291, + "end": 72297, + "value": "\n " + }, + { + "type": "brace", + "start": 72297, + "end": 72298, + "value": "]" + }, + { + "type": "comma", + "start": 72298, + "end": 72299, + "value": "," + }, + { + "type": "whitespace", + "start": 72299, + "end": 72300, + "value": " " + }, + { + "type": "operator", + "start": 72300, + "end": 72301, + "value": "%" + }, + { + "type": "brace", + "start": 72301, + "end": 72302, + "value": ")" + }, + { + "type": "whitespace", + "start": 72302, + "end": 72305, + "value": "\n " + }, + { + "type": "operator", + "start": 72305, + "end": 72307, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72307, + "end": 72308, + "value": " " + }, + { + "type": "word", + "start": 72308, + "end": 72312, + "value": "line" + }, + { + "type": "brace", + "start": 72312, + "end": 72313, + "value": "(" + }, + { + "type": "brace", + "start": 72313, + "end": 72314, + "value": "[" + }, + { + "type": "whitespace", + "start": 72314, + "end": 72322, + "value": "\n " + }, + { + "type": "number", + "start": 72322, + "end": 72340, + "value": "0.1379445992766417" + }, + { + "type": "comma", + "start": 72340, + "end": 72341, + "value": "," + }, + { + "type": "whitespace", + "start": 72341, + "end": 72349, + "value": "\n " + }, + { + "type": "operator", + "start": 72349, + "end": 72350, + "value": "-" + }, + { + "type": "number", + "start": 72350, + "end": 72369, + "value": "0.47871087958516045" + }, + { + "type": "whitespace", + "start": 72369, + "end": 72375, + "value": "\n " + }, + { + "type": "brace", + "start": 72375, + "end": 72376, + "value": "]" + }, + { + "type": "comma", + "start": 72376, + "end": 72377, + "value": "," + }, + { + "type": "whitespace", + "start": 72377, + "end": 72378, + "value": " " + }, + { + "type": "operator", + "start": 72378, + "end": 72379, + "value": "%" + }, + { + "type": "brace", + "start": 72379, + "end": 72380, + "value": ")" + }, + { + "type": "whitespace", + "start": 72380, + "end": 72383, + "value": "\n " + }, + { + "type": "operator", + "start": 72383, + "end": 72385, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72385, + "end": 72386, + "value": " " + }, + { + "type": "word", + "start": 72386, + "end": 72390, + "value": "line" + }, + { + "type": "brace", + "start": 72390, + "end": 72391, + "value": "(" + }, + { + "type": "brace", + "start": 72391, + "end": 72392, + "value": "[" + }, + { + "type": "whitespace", + "start": 72392, + "end": 72400, + "value": "\n " + }, + { + "type": "operator", + "start": 72400, + "end": 72401, + "value": "-" + }, + { + "type": "number", + "start": 72401, + "end": 72419, + "value": "0.9516767113283946" + }, + { + "type": "comma", + "start": 72419, + "end": 72420, + "value": "," + }, + { + "type": "whitespace", + "start": 72420, + "end": 72428, + "value": "\n " + }, + { + "type": "number", + "start": 72428, + "end": 72446, + "value": "0.8619900618578948" + }, + { + "type": "whitespace", + "start": 72446, + "end": 72452, + "value": "\n " + }, + { + "type": "brace", + "start": 72452, + "end": 72453, + "value": "]" + }, + { + "type": "comma", + "start": 72453, + "end": 72454, + "value": "," + }, + { + "type": "whitespace", + "start": 72454, + "end": 72455, + "value": " " + }, + { + "type": "operator", + "start": 72455, + "end": 72456, + "value": "%" + }, + { + "type": "brace", + "start": 72456, + "end": 72457, + "value": ")" + }, + { + "type": "whitespace", + "start": 72457, + "end": 72460, + "value": "\n " + }, + { + "type": "operator", + "start": 72460, + "end": 72462, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72462, + "end": 72463, + "value": " " + }, + { + "type": "word", + "start": 72463, + "end": 72467, + "value": "line" + }, + { + "type": "brace", + "start": 72467, + "end": 72468, + "value": "(" + }, + { + "type": "brace", + "start": 72468, + "end": 72469, + "value": "[" + }, + { + "type": "number", + "start": 72469, + "end": 72487, + "value": "0.9398732950992088" + }, + { + "type": "comma", + "start": 72487, + "end": 72488, + "value": "," + }, + { + "type": "whitespace", + "start": 72488, + "end": 72489, + "value": " " + }, + { + "type": "number", + "start": 72489, + "end": 72507, + "value": "0.6326239915683629" + }, + { + "type": "brace", + "start": 72507, + "end": 72508, + "value": "]" + }, + { + "type": "comma", + "start": 72508, + "end": 72509, + "value": "," + }, + { + "type": "whitespace", + "start": 72509, + "end": 72510, + "value": " " + }, + { + "type": "operator", + "start": 72510, + "end": 72511, + "value": "%" + }, + { + "type": "brace", + "start": 72511, + "end": 72512, + "value": ")" + }, + { + "type": "whitespace", + "start": 72512, + "end": 72515, + "value": "\n " + }, + { + "type": "operator", + "start": 72515, + "end": 72517, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72517, + "end": 72518, + "value": " " + }, + { + "type": "word", + "start": 72518, + "end": 72522, + "value": "line" + }, + { + "type": "brace", + "start": 72522, + "end": 72523, + "value": "(" + }, + { + "type": "brace", + "start": 72523, + "end": 72524, + "value": "[" + }, + { + "type": "whitespace", + "start": 72524, + "end": 72532, + "value": "\n " + }, + { + "type": "operator", + "start": 72532, + "end": 72533, + "value": "-" + }, + { + "type": "number", + "start": 72533, + "end": 72551, + "value": "0.8631974445502164" + }, + { + "type": "comma", + "start": 72551, + "end": 72552, + "value": "," + }, + { + "type": "whitespace", + "start": 72552, + "end": 72560, + "value": "\n " + }, + { + "type": "number", + "start": 72560, + "end": 72580, + "value": "0.016153555523963137" + }, + { + "type": "whitespace", + "start": 72580, + "end": 72586, + "value": "\n " + }, + { + "type": "brace", + "start": 72586, + "end": 72587, + "value": "]" + }, + { + "type": "comma", + "start": 72587, + "end": 72588, + "value": "," + }, + { + "type": "whitespace", + "start": 72588, + "end": 72589, + "value": " " + }, + { + "type": "operator", + "start": 72589, + "end": 72590, + "value": "%" + }, + { + "type": "brace", + "start": 72590, + "end": 72591, + "value": ")" + }, + { + "type": "whitespace", + "start": 72591, + "end": 72594, + "value": "\n " + }, + { + "type": "operator", + "start": 72594, + "end": 72596, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72596, + "end": 72597, + "value": " " + }, + { + "type": "word", + "start": 72597, + "end": 72601, + "value": "line" + }, + { + "type": "brace", + "start": 72601, + "end": 72602, + "value": "(" + }, + { + "type": "brace", + "start": 72602, + "end": 72603, + "value": "[" + }, + { + "type": "whitespace", + "start": 72603, + "end": 72611, + "value": "\n " + }, + { + "type": "number", + "start": 72611, + "end": 72630, + "value": "0.19167797120152907" + }, + { + "type": "comma", + "start": 72630, + "end": 72631, + "value": "," + }, + { + "type": "whitespace", + "start": 72631, + "end": 72639, + "value": "\n " + }, + { + "type": "operator", + "start": 72639, + "end": 72640, + "value": "-" + }, + { + "type": "number", + "start": 72640, + "end": 72658, + "value": "0.4916414381703984" + }, + { + "type": "whitespace", + "start": 72658, + "end": 72664, + "value": "\n " + }, + { + "type": "brace", + "start": 72664, + "end": 72665, + "value": "]" + }, + { + "type": "comma", + "start": 72665, + "end": 72666, + "value": "," + }, + { + "type": "whitespace", + "start": 72666, + "end": 72667, + "value": " " + }, + { + "type": "operator", + "start": 72667, + "end": 72668, + "value": "%" + }, + { + "type": "brace", + "start": 72668, + "end": 72669, + "value": ")" + }, + { + "type": "whitespace", + "start": 72669, + "end": 72672, + "value": "\n " + }, + { + "type": "operator", + "start": 72672, + "end": 72674, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72674, + "end": 72675, + "value": " " + }, + { + "type": "word", + "start": 72675, + "end": 72679, + "value": "line" + }, + { + "type": "brace", + "start": 72679, + "end": 72680, + "value": "(" + }, + { + "type": "brace", + "start": 72680, + "end": 72681, + "value": "[" + }, + { + "type": "whitespace", + "start": 72681, + "end": 72689, + "value": "\n " + }, + { + "type": "operator", + "start": 72689, + "end": 72690, + "value": "-" + }, + { + "type": "number", + "start": 72690, + "end": 72708, + "value": "0.8644261221501586" + }, + { + "type": "comma", + "start": 72708, + "end": 72709, + "value": "," + }, + { + "type": "whitespace", + "start": 72709, + "end": 72717, + "value": "\n " + }, + { + "type": "operator", + "start": 72717, + "end": 72718, + "value": "-" + }, + { + "type": "number", + "start": 72718, + "end": 72737, + "value": "0.11434763886359756" + }, + { + "type": "whitespace", + "start": 72737, + "end": 72743, + "value": "\n " + }, + { + "type": "brace", + "start": 72743, + "end": 72744, + "value": "]" + }, + { + "type": "comma", + "start": 72744, + "end": 72745, + "value": "," + }, + { + "type": "whitespace", + "start": 72745, + "end": 72746, + "value": " " + }, + { + "type": "operator", + "start": 72746, + "end": 72747, + "value": "%" + }, + { + "type": "brace", + "start": 72747, + "end": 72748, + "value": ")" + }, + { + "type": "whitespace", + "start": 72748, + "end": 72751, + "value": "\n " + }, + { + "type": "operator", + "start": 72751, + "end": 72753, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72753, + "end": 72754, + "value": " " + }, + { + "type": "word", + "start": 72754, + "end": 72758, + "value": "line" + }, + { + "type": "brace", + "start": 72758, + "end": 72759, + "value": "(" + }, + { + "type": "brace", + "start": 72759, + "end": 72760, + "value": "[" + }, + { + "type": "whitespace", + "start": 72760, + "end": 72768, + "value": "\n " + }, + { + "type": "operator", + "start": 72768, + "end": 72769, + "value": "-" + }, + { + "type": "number", + "start": 72769, + "end": 72789, + "value": "0.029081958413378572" + }, + { + "type": "comma", + "start": 72789, + "end": 72790, + "value": "," + }, + { + "type": "whitespace", + "start": 72790, + "end": 72798, + "value": "\n " + }, + { + "type": "operator", + "start": 72798, + "end": 72799, + "value": "-" + }, + { + "type": "number", + "start": 72799, + "end": 72817, + "value": "0.5214138808318329" + }, + { + "type": "whitespace", + "start": 72817, + "end": 72823, + "value": "\n " + }, + { + "type": "brace", + "start": 72823, + "end": 72824, + "value": "]" + }, + { + "type": "comma", + "start": 72824, + "end": 72825, + "value": "," + }, + { + "type": "whitespace", + "start": 72825, + "end": 72826, + "value": " " + }, + { + "type": "operator", + "start": 72826, + "end": 72827, + "value": "%" + }, + { + "type": "brace", + "start": 72827, + "end": 72828, + "value": ")" + }, + { + "type": "whitespace", + "start": 72828, + "end": 72831, + "value": "\n " + }, + { + "type": "operator", + "start": 72831, + "end": 72833, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72833, + "end": 72834, + "value": " " + }, + { + "type": "word", + "start": 72834, + "end": 72838, + "value": "line" + }, + { + "type": "brace", + "start": 72838, + "end": 72839, + "value": "(" + }, + { + "type": "brace", + "start": 72839, + "end": 72840, + "value": "[" + }, + { + "type": "whitespace", + "start": 72840, + "end": 72848, + "value": "\n " + }, + { + "type": "operator", + "start": 72848, + "end": 72849, + "value": "-" + }, + { + "type": "number", + "start": 72849, + "end": 72867, + "value": "0.8713091851579695" + }, + { + "type": "comma", + "start": 72867, + "end": 72868, + "value": "," + }, + { + "type": "whitespace", + "start": 72868, + "end": 72876, + "value": "\n " + }, + { + "type": "number", + "start": 72876, + "end": 72894, + "value": "0.7866284950967315" + }, + { + "type": "whitespace", + "start": 72894, + "end": 72900, + "value": "\n " + }, + { + "type": "brace", + "start": 72900, + "end": 72901, + "value": "]" + }, + { + "type": "comma", + "start": 72901, + "end": 72902, + "value": "," + }, + { + "type": "whitespace", + "start": 72902, + "end": 72903, + "value": " " + }, + { + "type": "operator", + "start": 72903, + "end": 72904, + "value": "%" + }, + { + "type": "brace", + "start": 72904, + "end": 72905, + "value": ")" + }, + { + "type": "whitespace", + "start": 72905, + "end": 72908, + "value": "\n " + }, + { + "type": "operator", + "start": 72908, + "end": 72910, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72910, + "end": 72911, + "value": " " + }, + { + "type": "word", + "start": 72911, + "end": 72915, + "value": "line" + }, + { + "type": "brace", + "start": 72915, + "end": 72916, + "value": "(" + }, + { + "type": "brace", + "start": 72916, + "end": 72917, + "value": "[" + }, + { + "type": "number", + "start": 72917, + "end": 72934, + "value": "0.884342023093545" + }, + { + "type": "comma", + "start": 72934, + "end": 72935, + "value": "," + }, + { + "type": "whitespace", + "start": 72935, + "end": 72936, + "value": " " + }, + { + "type": "operator", + "start": 72936, + "end": 72937, + "value": "-" + }, + { + "type": "number", + "start": 72937, + "end": 72955, + "value": "0.1825407002568431" + }, + { + "type": "brace", + "start": 72955, + "end": 72956, + "value": "]" + }, + { + "type": "comma", + "start": 72956, + "end": 72957, + "value": "," + }, + { + "type": "whitespace", + "start": 72957, + "end": 72958, + "value": " " + }, + { + "type": "operator", + "start": 72958, + "end": 72959, + "value": "%" + }, + { + "type": "brace", + "start": 72959, + "end": 72960, + "value": ")" + }, + { + "type": "whitespace", + "start": 72960, + "end": 72963, + "value": "\n " + }, + { + "type": "operator", + "start": 72963, + "end": 72965, + "value": "|>" + }, + { + "type": "whitespace", + "start": 72965, + "end": 72966, + "value": " " + }, + { + "type": "word", + "start": 72966, + "end": 72970, + "value": "line" + }, + { + "type": "brace", + "start": 72970, + "end": 72971, + "value": "(" + }, + { + "type": "brace", + "start": 72971, + "end": 72972, + "value": "[" + }, + { + "type": "whitespace", + "start": 72972, + "end": 72980, + "value": "\n " + }, + { + "type": "operator", + "start": 72980, + "end": 72981, + "value": "-" + }, + { + "type": "number", + "start": 72981, + "end": 72999, + "value": "0.6978385295364686" + }, + { + "type": "comma", + "start": 72999, + "end": 73000, + "value": "," + }, + { + "type": "whitespace", + "start": 73000, + "end": 73008, + "value": "\n " + }, + { + "type": "number", + "start": 73008, + "end": 73026, + "value": "0.0440574328736949" + }, + { + "type": "whitespace", + "start": 73026, + "end": 73032, + "value": "\n " + }, + { + "type": "brace", + "start": 73032, + "end": 73033, + "value": "]" + }, + { + "type": "comma", + "start": 73033, + "end": 73034, + "value": "," + }, + { + "type": "whitespace", + "start": 73034, + "end": 73035, + "value": " " + }, + { + "type": "operator", + "start": 73035, + "end": 73036, + "value": "%" + }, + { + "type": "brace", + "start": 73036, + "end": 73037, + "value": ")" + }, + { + "type": "whitespace", + "start": 73037, + "end": 73040, + "value": "\n " + }, + { + "type": "operator", + "start": 73040, + "end": 73042, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73042, + "end": 73043, + "value": " " + }, + { + "type": "word", + "start": 73043, + "end": 73047, + "value": "line" + }, + { + "type": "brace", + "start": 73047, + "end": 73048, + "value": "(" + }, + { + "type": "brace", + "start": 73048, + "end": 73049, + "value": "[" + }, + { + "type": "whitespace", + "start": 73049, + "end": 73057, + "value": "\n " + }, + { + "type": "operator", + "start": 73057, + "end": 73058, + "value": "-" + }, + { + "type": "number", + "start": 73058, + "end": 73077, + "value": "0.48055049324331556" + }, + { + "type": "comma", + "start": 73077, + "end": 73078, + "value": "," + }, + { + "type": "whitespace", + "start": 73078, + "end": 73086, + "value": "\n " + }, + { + "type": "operator", + "start": 73086, + "end": 73087, + "value": "-" + }, + { + "type": "number", + "start": 73087, + "end": 73107, + "value": "0.028546347149214002" + }, + { + "type": "whitespace", + "start": 73107, + "end": 73113, + "value": "\n " + }, + { + "type": "brace", + "start": 73113, + "end": 73114, + "value": "]" + }, + { + "type": "comma", + "start": 73114, + "end": 73115, + "value": "," + }, + { + "type": "whitespace", + "start": 73115, + "end": 73116, + "value": " " + }, + { + "type": "operator", + "start": 73116, + "end": 73117, + "value": "%" + }, + { + "type": "brace", + "start": 73117, + "end": 73118, + "value": ")" + }, + { + "type": "whitespace", + "start": 73118, + "end": 73121, + "value": "\n " + }, + { + "type": "operator", + "start": 73121, + "end": 73123, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73123, + "end": 73124, + "value": " " + }, + { + "type": "word", + "start": 73124, + "end": 73128, + "value": "line" + }, + { + "type": "brace", + "start": 73128, + "end": 73129, + "value": "(" + }, + { + "type": "brace", + "start": 73129, + "end": 73130, + "value": "[" + }, + { + "type": "whitespace", + "start": 73130, + "end": 73138, + "value": "\n " + }, + { + "type": "number", + "start": 73138, + "end": 73157, + "value": "0.41283517382864776" + }, + { + "type": "comma", + "start": 73157, + "end": 73158, + "value": "," + }, + { + "type": "whitespace", + "start": 73158, + "end": 73166, + "value": "\n " + }, + { + "type": "operator", + "start": 73166, + "end": 73167, + "value": "-" + }, + { + "type": "number", + "start": 73167, + "end": 73186, + "value": "0.44938038251347323" + }, + { + "type": "whitespace", + "start": 73186, + "end": 73192, + "value": "\n " + }, + { + "type": "brace", + "start": 73192, + "end": 73193, + "value": "]" + }, + { + "type": "comma", + "start": 73193, + "end": 73194, + "value": "," + }, + { + "type": "whitespace", + "start": 73194, + "end": 73195, + "value": " " + }, + { + "type": "operator", + "start": 73195, + "end": 73196, + "value": "%" + }, + { + "type": "brace", + "start": 73196, + "end": 73197, + "value": ")" + }, + { + "type": "whitespace", + "start": 73197, + "end": 73200, + "value": "\n " + }, + { + "type": "operator", + "start": 73200, + "end": 73202, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73202, + "end": 73203, + "value": " " + }, + { + "type": "word", + "start": 73203, + "end": 73207, + "value": "line" + }, + { + "type": "brace", + "start": 73207, + "end": 73208, + "value": "(" + }, + { + "type": "brace", + "start": 73208, + "end": 73209, + "value": "[" + }, + { + "type": "number", + "start": 73209, + "end": 73227, + "value": "0.7911399832501751" + }, + { + "type": "comma", + "start": 73227, + "end": 73228, + "value": "," + }, + { + "type": "whitespace", + "start": 73228, + "end": 73229, + "value": " " + }, + { + "type": "number", + "start": 73229, + "end": 73246, + "value": "0.893446368526005" + }, + { + "type": "brace", + "start": 73246, + "end": 73247, + "value": "]" + }, + { + "type": "comma", + "start": 73247, + "end": 73248, + "value": "," + }, + { + "type": "whitespace", + "start": 73248, + "end": 73249, + "value": " " + }, + { + "type": "operator", + "start": 73249, + "end": 73250, + "value": "%" + }, + { + "type": "brace", + "start": 73250, + "end": 73251, + "value": ")" + }, + { + "type": "whitespace", + "start": 73251, + "end": 73254, + "value": "\n " + }, + { + "type": "operator", + "start": 73254, + "end": 73256, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73256, + "end": 73257, + "value": " " + }, + { + "type": "word", + "start": 73257, + "end": 73261, + "value": "line" + }, + { + "type": "brace", + "start": 73261, + "end": 73262, + "value": "(" + }, + { + "type": "brace", + "start": 73262, + "end": 73263, + "value": "[" + }, + { + "type": "whitespace", + "start": 73263, + "end": 73271, + "value": "\n " + }, + { + "type": "number", + "start": 73271, + "end": 73289, + "value": "0.6507434699009087" + }, + { + "type": "comma", + "start": 73289, + "end": 73290, + "value": "," + }, + { + "type": "whitespace", + "start": 73290, + "end": 73298, + "value": "\n " + }, + { + "type": "operator", + "start": 73298, + "end": 73299, + "value": "-" + }, + { + "type": "number", + "start": 73299, + "end": 73317, + "value": "0.6890023920962012" + }, + { + "type": "whitespace", + "start": 73317, + "end": 73323, + "value": "\n " + }, + { + "type": "brace", + "start": 73323, + "end": 73324, + "value": "]" + }, + { + "type": "comma", + "start": 73324, + "end": 73325, + "value": "," + }, + { + "type": "whitespace", + "start": 73325, + "end": 73326, + "value": " " + }, + { + "type": "operator", + "start": 73326, + "end": 73327, + "value": "%" + }, + { + "type": "brace", + "start": 73327, + "end": 73328, + "value": ")" + }, + { + "type": "whitespace", + "start": 73328, + "end": 73331, + "value": "\n " + }, + { + "type": "operator", + "start": 73331, + "end": 73333, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73333, + "end": 73334, + "value": " " + }, + { + "type": "word", + "start": 73334, + "end": 73338, + "value": "line" + }, + { + "type": "brace", + "start": 73338, + "end": 73339, + "value": "(" + }, + { + "type": "brace", + "start": 73339, + "end": 73340, + "value": "[" + }, + { + "type": "whitespace", + "start": 73340, + "end": 73348, + "value": "\n " + }, + { + "type": "number", + "start": 73348, + "end": 73367, + "value": "0.10489019777253028" + }, + { + "type": "comma", + "start": 73367, + "end": 73368, + "value": "," + }, + { + "type": "whitespace", + "start": 73368, + "end": 73376, + "value": "\n " + }, + { + "type": "operator", + "start": 73376, + "end": 73377, + "value": "-" + }, + { + "type": "number", + "start": 73377, + "end": 73395, + "value": "0.5467450997193952" + }, + { + "type": "whitespace", + "start": 73395, + "end": 73401, + "value": "\n " + }, + { + "type": "brace", + "start": 73401, + "end": 73402, + "value": "]" + }, + { + "type": "comma", + "start": 73402, + "end": 73403, + "value": "," + }, + { + "type": "whitespace", + "start": 73403, + "end": 73404, + "value": " " + }, + { + "type": "operator", + "start": 73404, + "end": 73405, + "value": "%" + }, + { + "type": "brace", + "start": 73405, + "end": 73406, + "value": ")" + }, + { + "type": "whitespace", + "start": 73406, + "end": 73409, + "value": "\n " + }, + { + "type": "operator", + "start": 73409, + "end": 73411, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73411, + "end": 73412, + "value": " " + }, + { + "type": "word", + "start": 73412, + "end": 73416, + "value": "line" + }, + { + "type": "brace", + "start": 73416, + "end": 73417, + "value": "(" + }, + { + "type": "brace", + "start": 73417, + "end": 73418, + "value": "[" + }, + { + "type": "whitespace", + "start": 73418, + "end": 73426, + "value": "\n " + }, + { + "type": "operator", + "start": 73426, + "end": 73427, + "value": "-" + }, + { + "type": "number", + "start": 73427, + "end": 73445, + "value": "0.5760905289992633" + }, + { + "type": "comma", + "start": 73445, + "end": 73446, + "value": "," + }, + { + "type": "whitespace", + "start": 73446, + "end": 73454, + "value": "\n " + }, + { + "type": "operator", + "start": 73454, + "end": 73455, + "value": "-" + }, + { + "type": "number", + "start": 73455, + "end": 73473, + "value": "0.2639900702114173" + }, + { + "type": "whitespace", + "start": 73473, + "end": 73479, + "value": "\n " + }, + { + "type": "brace", + "start": 73479, + "end": 73480, + "value": "]" + }, + { + "type": "comma", + "start": 73480, + "end": 73481, + "value": "," + }, + { + "type": "whitespace", + "start": 73481, + "end": 73482, + "value": " " + }, + { + "type": "operator", + "start": 73482, + "end": 73483, + "value": "%" + }, + { + "type": "brace", + "start": 73483, + "end": 73484, + "value": ")" + }, + { + "type": "whitespace", + "start": 73484, + "end": 73487, + "value": "\n " + }, + { + "type": "operator", + "start": 73487, + "end": 73489, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73489, + "end": 73490, + "value": " " + }, + { + "type": "word", + "start": 73490, + "end": 73494, + "value": "line" + }, + { + "type": "brace", + "start": 73494, + "end": 73495, + "value": "(" + }, + { + "type": "brace", + "start": 73495, + "end": 73496, + "value": "[" + }, + { + "type": "whitespace", + "start": 73496, + "end": 73504, + "value": "\n " + }, + { + "type": "number", + "start": 73504, + "end": 73523, + "value": "0.39828861790105297" + }, + { + "type": "comma", + "start": 73523, + "end": 73524, + "value": "," + }, + { + "type": "whitespace", + "start": 73524, + "end": 73532, + "value": "\n " + }, + { + "type": "number", + "start": 73532, + "end": 73550, + "value": "0.8036624129416385" + }, + { + "type": "whitespace", + "start": 73550, + "end": 73556, + "value": "\n " + }, + { + "type": "brace", + "start": 73556, + "end": 73557, + "value": "]" + }, + { + "type": "comma", + "start": 73557, + "end": 73558, + "value": "," + }, + { + "type": "whitespace", + "start": 73558, + "end": 73559, + "value": " " + }, + { + "type": "operator", + "start": 73559, + "end": 73560, + "value": "%" + }, + { + "type": "brace", + "start": 73560, + "end": 73561, + "value": ")" + }, + { + "type": "whitespace", + "start": 73561, + "end": 73564, + "value": "\n " + }, + { + "type": "operator", + "start": 73564, + "end": 73566, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73566, + "end": 73567, + "value": " " + }, + { + "type": "word", + "start": 73567, + "end": 73571, + "value": "line" + }, + { + "type": "brace", + "start": 73571, + "end": 73572, + "value": "(" + }, + { + "type": "brace", + "start": 73572, + "end": 73573, + "value": "[" + }, + { + "type": "operator", + "start": 73573, + "end": 73574, + "value": "-" + }, + { + "type": "number", + "start": 73574, + "end": 73591, + "value": "0.673848991328553" + }, + { + "type": "comma", + "start": 73591, + "end": 73592, + "value": "," + }, + { + "type": "whitespace", + "start": 73592, + "end": 73593, + "value": " " + }, + { + "type": "operator", + "start": 73593, + "end": 73594, + "value": "-" + }, + { + "type": "number", + "start": 73594, + "end": 73611, + "value": "0.918443329270668" + }, + { + "type": "brace", + "start": 73611, + "end": 73612, + "value": "]" + }, + { + "type": "comma", + "start": 73612, + "end": 73613, + "value": "," + }, + { + "type": "whitespace", + "start": 73613, + "end": 73614, + "value": " " + }, + { + "type": "operator", + "start": 73614, + "end": 73615, + "value": "%" + }, + { + "type": "brace", + "start": 73615, + "end": 73616, + "value": ")" + }, + { + "type": "whitespace", + "start": 73616, + "end": 73619, + "value": "\n " + }, + { + "type": "operator", + "start": 73619, + "end": 73621, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73621, + "end": 73622, + "value": " " + }, + { + "type": "word", + "start": 73622, + "end": 73626, + "value": "line" + }, + { + "type": "brace", + "start": 73626, + "end": 73627, + "value": "(" + }, + { + "type": "brace", + "start": 73627, + "end": 73628, + "value": "[" + }, + { + "type": "whitespace", + "start": 73628, + "end": 73636, + "value": "\n " + }, + { + "type": "operator", + "start": 73636, + "end": 73637, + "value": "-" + }, + { + "type": "number", + "start": 73637, + "end": 73655, + "value": "0.8599152936179257" + }, + { + "type": "comma", + "start": 73655, + "end": 73656, + "value": "," + }, + { + "type": "whitespace", + "start": 73656, + "end": 73664, + "value": "\n " + }, + { + "type": "operator", + "start": 73664, + "end": 73665, + "value": "-" + }, + { + "type": "number", + "start": 73665, + "end": 73683, + "value": "0.9499371022680787" + }, + { + "type": "whitespace", + "start": 73683, + "end": 73689, + "value": "\n " + }, + { + "type": "brace", + "start": 73689, + "end": 73690, + "value": "]" + }, + { + "type": "comma", + "start": 73690, + "end": 73691, + "value": "," + }, + { + "type": "whitespace", + "start": 73691, + "end": 73692, + "value": " " + }, + { + "type": "operator", + "start": 73692, + "end": 73693, + "value": "%" + }, + { + "type": "brace", + "start": 73693, + "end": 73694, + "value": ")" + }, + { + "type": "whitespace", + "start": 73694, + "end": 73697, + "value": "\n " + }, + { + "type": "operator", + "start": 73697, + "end": 73699, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73699, + "end": 73700, + "value": " " + }, + { + "type": "word", + "start": 73700, + "end": 73704, + "value": "line" + }, + { + "type": "brace", + "start": 73704, + "end": 73705, + "value": "(" + }, + { + "type": "brace", + "start": 73705, + "end": 73706, + "value": "[" + }, + { + "type": "whitespace", + "start": 73706, + "end": 73714, + "value": "\n " + }, + { + "type": "number", + "start": 73714, + "end": 73732, + "value": "0.6285243831393765" + }, + { + "type": "comma", + "start": 73732, + "end": 73733, + "value": "," + }, + { + "type": "whitespace", + "start": 73733, + "end": 73741, + "value": "\n " + }, + { + "type": "operator", + "start": 73741, + "end": 73742, + "value": "-" + }, + { + "type": "number", + "start": 73742, + "end": 73760, + "value": "0.5186557636566307" + }, + { + "type": "whitespace", + "start": 73760, + "end": 73766, + "value": "\n " + }, + { + "type": "brace", + "start": 73766, + "end": 73767, + "value": "]" + }, + { + "type": "comma", + "start": 73767, + "end": 73768, + "value": "," + }, + { + "type": "whitespace", + "start": 73768, + "end": 73769, + "value": " " + }, + { + "type": "operator", + "start": 73769, + "end": 73770, + "value": "%" + }, + { + "type": "brace", + "start": 73770, + "end": 73771, + "value": ")" + }, + { + "type": "whitespace", + "start": 73771, + "end": 73774, + "value": "\n " + }, + { + "type": "operator", + "start": 73774, + "end": 73776, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73776, + "end": 73777, + "value": " " + }, + { + "type": "word", + "start": 73777, + "end": 73781, + "value": "line" + }, + { + "type": "brace", + "start": 73781, + "end": 73782, + "value": "(" + }, + { + "type": "brace", + "start": 73782, + "end": 73783, + "value": "[" + }, + { + "type": "whitespace", + "start": 73783, + "end": 73791, + "value": "\n " + }, + { + "type": "number", + "start": 73791, + "end": 73809, + "value": "0.3222412784832269" + }, + { + "type": "comma", + "start": 73809, + "end": 73810, + "value": "," + }, + { + "type": "whitespace", + "start": 73810, + "end": 73818, + "value": "\n " + }, + { + "type": "number", + "start": 73818, + "end": 73837, + "value": "0.24621192679727177" + }, + { + "type": "whitespace", + "start": 73837, + "end": 73843, + "value": "\n " + }, + { + "type": "brace", + "start": 73843, + "end": 73844, + "value": "]" + }, + { + "type": "comma", + "start": 73844, + "end": 73845, + "value": "," + }, + { + "type": "whitespace", + "start": 73845, + "end": 73846, + "value": " " + }, + { + "type": "operator", + "start": 73846, + "end": 73847, + "value": "%" + }, + { + "type": "brace", + "start": 73847, + "end": 73848, + "value": ")" + }, + { + "type": "whitespace", + "start": 73848, + "end": 73851, + "value": "\n " + }, + { + "type": "operator", + "start": 73851, + "end": 73853, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73853, + "end": 73854, + "value": " " + }, + { + "type": "word", + "start": 73854, + "end": 73858, + "value": "line" + }, + { + "type": "brace", + "start": 73858, + "end": 73859, + "value": "(" + }, + { + "type": "brace", + "start": 73859, + "end": 73860, + "value": "[" + }, + { + "type": "whitespace", + "start": 73860, + "end": 73868, + "value": "\n " + }, + { + "type": "number", + "start": 73868, + "end": 73887, + "value": "0.19754357911311016" + }, + { + "type": "comma", + "start": 73887, + "end": 73888, + "value": "," + }, + { + "type": "whitespace", + "start": 73888, + "end": 73896, + "value": "\n " + }, + { + "type": "operator", + "start": 73896, + "end": 73897, + "value": "-" + }, + { + "type": "number", + "start": 73897, + "end": 73915, + "value": "0.7529246632397206" + }, + { + "type": "whitespace", + "start": 73915, + "end": 73921, + "value": "\n " + }, + { + "type": "brace", + "start": 73921, + "end": 73922, + "value": "]" + }, + { + "type": "comma", + "start": 73922, + "end": 73923, + "value": "," + }, + { + "type": "whitespace", + "start": 73923, + "end": 73924, + "value": " " + }, + { + "type": "operator", + "start": 73924, + "end": 73925, + "value": "%" + }, + { + "type": "brace", + "start": 73925, + "end": 73926, + "value": ")" + }, + { + "type": "whitespace", + "start": 73926, + "end": 73929, + "value": "\n " + }, + { + "type": "operator", + "start": 73929, + "end": 73931, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73931, + "end": 73932, + "value": " " + }, + { + "type": "word", + "start": 73932, + "end": 73936, + "value": "line" + }, + { + "type": "brace", + "start": 73936, + "end": 73937, + "value": "(" + }, + { + "type": "brace", + "start": 73937, + "end": 73938, + "value": "[" + }, + { + "type": "whitespace", + "start": 73938, + "end": 73946, + "value": "\n " + }, + { + "type": "operator", + "start": 73946, + "end": 73947, + "value": "-" + }, + { + "type": "number", + "start": 73947, + "end": 73966, + "value": "0.43181570545865555" + }, + { + "type": "comma", + "start": 73966, + "end": 73967, + "value": "," + }, + { + "type": "whitespace", + "start": 73967, + "end": 73975, + "value": "\n " + }, + { + "type": "number", + "start": 73975, + "end": 73994, + "value": "0.18945437402201537" + }, + { + "type": "whitespace", + "start": 73994, + "end": 74000, + "value": "\n " + }, + { + "type": "brace", + "start": 74000, + "end": 74001, + "value": "]" + }, + { + "type": "comma", + "start": 74001, + "end": 74002, + "value": "," + }, + { + "type": "whitespace", + "start": 74002, + "end": 74003, + "value": " " + }, + { + "type": "operator", + "start": 74003, + "end": 74004, + "value": "%" + }, + { + "type": "brace", + "start": 74004, + "end": 74005, + "value": ")" + }, + { + "type": "whitespace", + "start": 74005, + "end": 74008, + "value": "\n " + }, + { + "type": "operator", + "start": 74008, + "end": 74010, + "value": "|>" + }, + { + "type": "whitespace", + "start": 74010, + "end": 74011, + "value": " " + }, + { + "type": "word", + "start": 74011, + "end": 74015, + "value": "line" + }, + { + "type": "brace", + "start": 74015, + "end": 74016, + "value": "(" + }, + { + "type": "brace", + "start": 74016, + "end": 74017, + "value": "[" + }, + { + "type": "whitespace", + "start": 74017, + "end": 74025, + "value": "\n " + }, + { + "type": "number", + "start": 74025, + "end": 74043, + "value": "0.8714511090241797" + }, + { + "type": "comma", + "start": 74043, + "end": 74044, + "value": "," + }, + { + "type": "whitespace", + "start": 74044, + "end": 74052, + "value": "\n " + }, + { + "type": "operator", + "start": 74052, + "end": 74053, + "value": "-" + }, + { + "type": "number", + "start": 74053, + "end": 74071, + "value": "0.7215844196844685" + }, + { + "type": "whitespace", + "start": 74071, + "end": 74077, + "value": "\n " + }, + { + "type": "brace", + "start": 74077, + "end": 74078, + "value": "]" + }, + { + "type": "comma", + "start": 74078, + "end": 74079, + "value": "," + }, + { + "type": "whitespace", + "start": 74079, + "end": 74080, + "value": " " + }, + { + "type": "operator", + "start": 74080, + "end": 74081, + "value": "%" + }, + { + "type": "brace", + "start": 74081, + "end": 74082, + "value": ")" + }, + { + "type": "whitespace", + "start": 74082, + "end": 74085, + "value": "\n " + }, + { + "type": "operator", + "start": 74085, + "end": 74087, + "value": "|>" + }, + { + "type": "whitespace", + "start": 74087, + "end": 74088, + "value": " " + }, + { + "type": "word", + "start": 74088, + "end": 74093, + "value": "close" + }, + { + "type": "brace", + "start": 74093, + "end": 74094, + "value": "(" + }, + { + "type": "operator", + "start": 74094, + "end": 74095, + "value": "%" + }, + { + "type": "brace", + "start": 74095, + "end": 74096, + "value": ")" + }, + { + "type": "whitespace", + "start": 74096, + "end": 74099, + "value": "\n " + }, + { + "type": "operator", + "start": 74099, + "end": 74101, + "value": "|>" + }, + { + "type": "whitespace", + "start": 74101, + "end": 74102, + "value": " " + }, + { + "type": "word", + "start": 74102, + "end": 74109, + "value": "extrude" + }, + { + "type": "brace", + "start": 74109, + "end": 74110, + "value": "(" + }, + { + "type": "number", + "start": 74110, + "end": 74111, + "value": "5" + }, + { + "type": "comma", + "start": 74111, + "end": 74112, + "value": "," + }, + { + "type": "whitespace", + "start": 74112, + "end": 74113, + "value": " " + }, + { + "type": "operator", + "start": 74113, + "end": 74114, + "value": "%" + }, + { + "type": "brace", + "start": 74114, + "end": 74115, + "value": ")" + }, + { + "type": "whitespace", + "start": 74115, + "end": 74116, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/ast.snap b/src/wasm-lib/kcl/tests/neg_xz_plane/ast.snap new file mode 100644 index 000000000..d6bbaa4b4 --- /dev/null +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/ast.snap @@ -0,0 +1,264 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing neg_xz_plane.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 150, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 29, + "raw": "'-XZ'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "-XZ" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 30, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 53, + "raw": "0", + "start": 52, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 56, + "raw": "0", + "start": 55, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 57, + "start": 51, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 60, + "start": 59, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 50, + "name": "startProfileAt", + "start": 36, + "type": "Identifier" + }, + "end": 61, + "optional": false, + "start": 36, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 78, + "raw": "100", + "start": 75, + "type": "Literal", + "type": "Literal", + "value": 100 + }, + { + "end": 83, + "raw": "100", + "start": 80, + "type": "Literal", + "type": "Literal", + "value": 100 + } + ], + "end": 84, + "start": 74, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 87, + "start": 86, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 73, + "name": "lineTo", + "start": 67, + "type": "Identifier" + }, + "end": 88, + "optional": false, + "start": 67, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 105, + "raw": "100", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 100 + }, + { + "end": 108, + "raw": "0", + "start": 107, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 109, + "start": 101, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 112, + "start": 111, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 100, + "name": "lineTo", + "start": 94, + "type": "Identifier" + }, + "end": 113, + "optional": false, + "start": 94, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 126, + "start": 125, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 124, + "name": "close", + "start": 119, + "type": "Identifier" + }, + "end": 127, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 146, + "left": { + "end": 142, + "raw": "5", + "start": 141, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + "operator": "+", + "right": { + "end": 146, + "raw": "7", + "start": 145, + "type": "Literal", + "type": "Literal", + "value": 7 + }, + "start": 141, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 149, + "start": 148, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 140, + "name": "extrude", + "start": 133, + "type": "Identifier" + }, + "end": 150, + "optional": false, + "start": 133, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 150, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 150, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 151, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/input.kcl b/src/wasm-lib/kcl/tests/neg_xz_plane/input.kcl new file mode 100644 index 000000000..f718f8250 --- /dev/null +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/input.kcl @@ -0,0 +1,6 @@ +part001 = startSketchOn('-XZ') + |> startProfileAt([0, 0], %) + |> lineTo([100, 100], %) + |> lineTo([100, 0], %) + |> close(%) + |> extrude(5 + 7, %) 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 new file mode 100644 index 000000000..cc3616dfd --- /dev/null +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap @@ -0,0 +1,208 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing neg_xz_plane.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67, + 88, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 94, + 113, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 127, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67, + 88, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 100.0, + 100.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 94, + 113, + 0 + ] + }, + "from": [ + 100.0, + 100.0 + ], + "tag": null, + "to": [ + 100.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 127, + 0 + ] + }, + "from": [ + 100.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36, + 61, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 36, + 61, + 0 + ] + } + ] + }, + "height": 12.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 36, + 61, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/rendered_model.png b/src/wasm-lib/kcl/tests/neg_xz_plane/rendered_model.png new file mode 100644 index 000000000..546cce076 Binary files /dev/null and b/src/wasm-lib/kcl/tests/neg_xz_plane/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/tokens.snap b/src/wasm-lib/kcl/tests/neg_xz_plane/tokens.snap new file mode 100644 index 000000000..ce6535d80 --- /dev/null +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/tokens.snap @@ -0,0 +1,459 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing neg_xz_plane.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 29, + "value": "'-XZ'" + }, + { + "type": "brace", + "start": 29, + "end": 30, + "value": ")" + }, + { + "type": "whitespace", + "start": 30, + "end": 33, + "value": "\n " + }, + { + "type": "operator", + "start": 33, + "end": 35, + "value": "|>" + }, + { + "type": "whitespace", + "start": 35, + "end": 36, + "value": " " + }, + { + "type": "word", + "start": 36, + "end": 50, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "(" + }, + { + "type": "brace", + "start": 51, + "end": 52, + "value": "[" + }, + { + "type": "number", + "start": 52, + "end": 53, + "value": "0" + }, + { + "type": "comma", + "start": 53, + "end": 54, + "value": "," + }, + { + "type": "whitespace", + "start": 54, + "end": 55, + "value": " " + }, + { + "type": "number", + "start": 55, + "end": 56, + "value": "0" + }, + { + "type": "brace", + "start": 56, + "end": 57, + "value": "]" + }, + { + "type": "comma", + "start": 57, + "end": 58, + "value": "," + }, + { + "type": "whitespace", + "start": 58, + "end": 59, + "value": " " + }, + { + "type": "operator", + "start": 59, + "end": 60, + "value": "%" + }, + { + "type": "brace", + "start": 60, + "end": 61, + "value": ")" + }, + { + "type": "whitespace", + "start": 61, + "end": 64, + "value": "\n " + }, + { + "type": "operator", + "start": 64, + "end": 66, + "value": "|>" + }, + { + "type": "whitespace", + "start": 66, + "end": 67, + "value": " " + }, + { + "type": "word", + "start": 67, + "end": 73, + "value": "lineTo" + }, + { + "type": "brace", + "start": 73, + "end": 74, + "value": "(" + }, + { + "type": "brace", + "start": 74, + "end": 75, + "value": "[" + }, + { + "type": "number", + "start": 75, + "end": 78, + "value": "100" + }, + { + "type": "comma", + "start": 78, + "end": 79, + "value": "," + }, + { + "type": "whitespace", + "start": 79, + "end": 80, + "value": " " + }, + { + "type": "number", + "start": 80, + "end": 83, + "value": "100" + }, + { + "type": "brace", + "start": 83, + "end": 84, + "value": "]" + }, + { + "type": "comma", + "start": 84, + "end": 85, + "value": "," + }, + { + "type": "whitespace", + "start": 85, + "end": 86, + "value": " " + }, + { + "type": "operator", + "start": 86, + "end": 87, + "value": "%" + }, + { + "type": "brace", + "start": 87, + "end": 88, + "value": ")" + }, + { + "type": "whitespace", + "start": 88, + "end": 91, + "value": "\n " + }, + { + "type": "operator", + "start": 91, + "end": 93, + "value": "|>" + }, + { + "type": "whitespace", + "start": 93, + "end": 94, + "value": " " + }, + { + "type": "word", + "start": 94, + "end": 100, + "value": "lineTo" + }, + { + "type": "brace", + "start": 100, + "end": 101, + "value": "(" + }, + { + "type": "brace", + "start": 101, + "end": 102, + "value": "[" + }, + { + "type": "number", + "start": 102, + "end": 105, + "value": "100" + }, + { + "type": "comma", + "start": 105, + "end": 106, + "value": "," + }, + { + "type": "whitespace", + "start": 106, + "end": 107, + "value": " " + }, + { + "type": "number", + "start": 107, + "end": 108, + "value": "0" + }, + { + "type": "brace", + "start": 108, + "end": 109, + "value": "]" + }, + { + "type": "comma", + "start": 109, + "end": 110, + "value": "," + }, + { + "type": "whitespace", + "start": 110, + "end": 111, + "value": " " + }, + { + "type": "operator", + "start": 111, + "end": 112, + "value": "%" + }, + { + "type": "brace", + "start": 112, + "end": 113, + "value": ")" + }, + { + "type": "whitespace", + "start": 113, + "end": 116, + "value": "\n " + }, + { + "type": "operator", + "start": 116, + "end": 118, + "value": "|>" + }, + { + "type": "whitespace", + "start": 118, + "end": 119, + "value": " " + }, + { + "type": "word", + "start": 119, + "end": 124, + "value": "close" + }, + { + "type": "brace", + "start": 124, + "end": 125, + "value": "(" + }, + { + "type": "operator", + "start": 125, + "end": 126, + "value": "%" + }, + { + "type": "brace", + "start": 126, + "end": 127, + "value": ")" + }, + { + "type": "whitespace", + "start": 127, + "end": 130, + "value": "\n " + }, + { + "type": "operator", + "start": 130, + "end": 132, + "value": "|>" + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "word", + "start": 133, + "end": 140, + "value": "extrude" + }, + { + "type": "brace", + "start": 140, + "end": 141, + "value": "(" + }, + { + "type": "number", + "start": 141, + "end": 142, + "value": "5" + }, + { + "type": "whitespace", + "start": 142, + "end": 143, + "value": " " + }, + { + "type": "operator", + "start": 143, + "end": 144, + "value": "+" + }, + { + "type": "whitespace", + "start": 144, + "end": 145, + "value": " " + }, + { + "type": "number", + "start": 145, + "end": 146, + "value": "7" + }, + { + "type": "comma", + "start": 146, + "end": 147, + "value": "," + }, + { + "type": "whitespace", + "start": 147, + "end": 148, + "value": " " + }, + { + "type": "operator", + "start": 148, + "end": 149, + "value": "%" + }, + { + "type": "brace", + "start": 149, + "end": 150, + "value": ")" + }, + { + "type": "whitespace", + "start": 150, + "end": 151, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/non_string_key_of_object/ast.snap b/src/wasm-lib/kcl/tests/non_string_key_of_object/ast.snap new file mode 100644 index 000000000..8965f776f --- /dev/null +++ b/src/wasm-lib/kcl/tests/non_string_key_of_object/ast.snap @@ -0,0 +1,102 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing non_string_key_of_object.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 18, + "id": { + "end": 3, + "name": "obj", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 18, + "properties": [ + { + "end": 16, + "key": { + "end": 11, + "name": "key", + "start": 8, + "type": "Identifier" + }, + "start": 8, + "type": "ObjectProperty", + "value": { + "end": 16, + "raw": "123", + "start": 13, + "type": "Literal", + "type": "Literal", + "value": 123 + } + } + ], + "start": 6, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 18, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 31, + "id": { + "end": 22, + "name": "num", + "start": 19, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 31, + "object": { + "end": 28, + "name": "obj", + "start": 25, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 30, + "raw": "3", + "start": 29, + "type": "Literal", + "type": "Literal", + "value": 3 + }, + "start": 25, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 19, + "type": "VariableDeclarator" + } + ], + "end": 31, + "kind": "const", + "start": 19, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 32, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/non_string_key_of_object/execution_error.snap b/src/wasm-lib/kcl/tests/non_string_key_of_object/execution_error.snap new file mode 100644 index 000000000..999d42431 --- /dev/null +++ b/src/wasm-lib/kcl/tests/non_string_key_of_object/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing non_string_key_of_object.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([25, 31, 0])], message: "Only strings can be used as the property of an object, but you're using a number" } diff --git a/src/wasm-lib/kcl/tests/non_string_key_of_object/input.kcl b/src/wasm-lib/kcl/tests/non_string_key_of_object/input.kcl new file mode 100644 index 000000000..3650e17f4 --- /dev/null +++ b/src/wasm-lib/kcl/tests/non_string_key_of_object/input.kcl @@ -0,0 +1,2 @@ +obj = { key: 123 } +num = obj[3] diff --git a/src/wasm-lib/kcl/tests/non_string_key_of_object/tokens.snap b/src/wasm-lib/kcl/tests/non_string_key_of_object/tokens.snap new file mode 100644 index 000000000..f285af9a1 --- /dev/null +++ b/src/wasm-lib/kcl/tests/non_string_key_of_object/tokens.snap @@ -0,0 +1,141 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing non_string_key_of_object.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "obj" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "{" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "word", + "start": 8, + "end": 11, + "value": "key" + }, + { + "type": "colon", + "start": 11, + "end": 12, + "value": ":" + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "number", + "start": 13, + "end": 16, + "value": "123" + }, + { + "type": "whitespace", + "start": 16, + "end": 17, + "value": " " + }, + { + "type": "brace", + "start": 17, + "end": 18, + "value": "}" + }, + { + "type": "whitespace", + "start": 18, + "end": 19, + "value": "\n" + }, + { + "type": "word", + "start": 19, + "end": 22, + "value": "num" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": " " + }, + { + "type": "operator", + "start": 23, + "end": 24, + "value": "=" + }, + { + "type": "whitespace", + "start": 24, + "end": 25, + "value": " " + }, + { + "type": "word", + "start": 25, + "end": 28, + "value": "obj" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": "[" + }, + { + "type": "number", + "start": 29, + "end": 30, + "value": "3" + }, + { + "type": "brace", + "start": 30, + "end": 31, + "value": "]" + }, + { + "type": "whitespace", + "start": 31, + "end": 32, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/object_prop_not_found/ast.snap b/src/wasm-lib/kcl/tests/object_prop_not_found/ast.snap new file mode 100644 index 000000000..ac8199877 --- /dev/null +++ b/src/wasm-lib/kcl/tests/object_prop_not_found/ast.snap @@ -0,0 +1,82 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing object_prop_not_found.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 10, + "id": { + "end": 3, + "name": "obj", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 10, + "properties": [], + "start": 6, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 10, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 25, + "id": { + "end": 12, + "name": "k", + "start": 11, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 25, + "object": { + "end": 18, + "name": "obj", + "start": 15, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 24, + "raw": "\"age\"", + "start": 19, + "type": "Literal", + "type": "Literal", + "value": "age" + }, + "start": 15, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 11, + "type": "VariableDeclarator" + } + ], + "end": 25, + "kind": "const", + "start": 11, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 26, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/object_prop_not_found/execution_error.snap b/src/wasm-lib/kcl/tests/object_prop_not_found/execution_error.snap new file mode 100644 index 000000000..33ebf36f1 --- /dev/null +++ b/src/wasm-lib/kcl/tests/object_prop_not_found/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing object_prop_not_found.kcl +snapshot_kind: text +--- +undefined value: KclErrorDetails { source_ranges: [SourceRange([15, 25, 0])], message: "Property 'age' not found in object" } diff --git a/src/wasm-lib/kcl/tests/object_prop_not_found/input.kcl b/src/wasm-lib/kcl/tests/object_prop_not_found/input.kcl new file mode 100644 index 000000000..90d79044e --- /dev/null +++ b/src/wasm-lib/kcl/tests/object_prop_not_found/input.kcl @@ -0,0 +1,2 @@ +obj = { } +k = obj["age"] diff --git a/src/wasm-lib/kcl/tests/object_prop_not_found/tokens.snap b/src/wasm-lib/kcl/tests/object_prop_not_found/tokens.snap new file mode 100644 index 000000000..8acd51f88 --- /dev/null +++ b/src/wasm-lib/kcl/tests/object_prop_not_found/tokens.snap @@ -0,0 +1,111 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing object_prop_not_found.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 3, + "value": "obj" + }, + { + "type": "whitespace", + "start": 3, + "end": 4, + "value": " " + }, + { + "type": "operator", + "start": 4, + "end": 5, + "value": "=" + }, + { + "type": "whitespace", + "start": 5, + "end": 6, + "value": " " + }, + { + "type": "brace", + "start": 6, + "end": 7, + "value": "{" + }, + { + "type": "whitespace", + "start": 7, + "end": 9, + "value": " " + }, + { + "type": "brace", + "start": 9, + "end": 10, + "value": "}" + }, + { + "type": "whitespace", + "start": 10, + "end": 11, + "value": "\n" + }, + { + "type": "word", + "start": 11, + "end": 12, + "value": "k" + }, + { + "type": "whitespace", + "start": 12, + "end": 13, + "value": " " + }, + { + "type": "operator", + "start": 13, + "end": 14, + "value": "=" + }, + { + "type": "whitespace", + "start": 14, + "end": 15, + "value": " " + }, + { + "type": "word", + "start": 15, + "end": 18, + "value": "obj" + }, + { + "type": "brace", + "start": 18, + "end": 19, + "value": "[" + }, + { + "type": "string", + "start": 19, + "end": 24, + "value": "\"age\"" + }, + { + "type": "brace", + "start": 24, + "end": 25, + "value": "]" + }, + { + "type": "whitespace", + "start": 25, + "end": 26, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/ast.snap b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/ast.snap new file mode 100644 index 000000000..d201880c6 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/ast.snap @@ -0,0 +1,1349 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing pentagon_fillet_sugar.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 20, + "id": { + "end": 14, + "name": "triangleHeight", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 20, + "raw": "200", + "start": 17, + "type": "Literal", + "type": "Literal", + "value": 200 + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 20, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 37, + "id": { + "end": 31, + "name": "plumbusLen", + "start": 21, + "type": "Identifier" + }, + "init": { + "end": 37, + "raw": "100", + "start": 34, + "type": "Literal", + "type": "Literal", + "value": 100 + }, + "start": 21, + "type": "VariableDeclarator" + } + ], + "end": 37, + "kind": "const", + "start": 21, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 49, + "id": { + "end": 44, + "name": "radius", + "start": 38, + "type": "Identifier" + }, + "init": { + "end": 49, + "raw": "80", + "start": 47, + "type": "Literal", + "type": "Literal", + "value": 80 + }, + "start": 38, + "type": "VariableDeclarator" + } + ], + "end": 49, + "kind": "const", + "start": 38, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 113, + "id": { + "end": 54, + "name": "circ", + "start": 50, + "type": "Identifier" + }, + "init": { + "end": 113, + "properties": [ + { + "end": 75, + "key": { + "end": 72, + "name": "angle_start", + "start": 61, + "type": "Identifier" + }, + "start": 61, + "type": "ObjectProperty", + "value": { + "end": 75, + "raw": "0", + "start": 74, + "type": "Literal", + "type": "Literal", + "value": 0 + } + }, + { + "end": 93, + "key": { + "end": 88, + "name": "angle_end", + "start": 79, + "type": "Identifier" + }, + "start": 79, + "type": "ObjectProperty", + "value": { + "end": 93, + "raw": "360", + "start": 90, + "type": "Literal", + "type": "Literal", + "value": 360 + } + }, + { + "end": 111, + "key": { + "end": 103, + "name": "radius", + "start": 97, + "type": "Identifier" + }, + "start": 97, + "type": "ObjectProperty", + "value": { + "end": 111, + "name": "radius", + "start": 105, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 57, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + "start": 50, + "type": "VariableDeclarator" + } + ], + "end": 113, + "kind": "const", + "start": 50, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 132, + "id": { + "end": 126, + "name": "triangleLen", + "start": 115, + "type": "Identifier" + }, + "init": { + "end": 132, + "raw": "500", + "start": 129, + "type": "Literal", + "type": "Literal", + "value": 500 + }, + "start": 115, + "type": "VariableDeclarator" + } + ], + "end": 132, + "kind": "const", + "start": 115, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 398, + "id": { + "end": 134, + "name": "p", + "start": 133, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 155, + "raw": "'XY'", + "start": 151, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 150, + "name": "startSketchOn", + "start": 137, + "type": "Identifier" + }, + "end": 156, + "optional": false, + "start": 137, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 179, + "raw": "0", + "start": 178, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 182, + "raw": "0", + "start": 181, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 183, + "start": 177, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 186, + "start": 185, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 176, + "name": "startProfileAt", + "start": 162, + "type": "Identifier" + }, + "end": 187, + "optional": false, + "start": 162, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 238, + "properties": [ + { + "end": 215, + "key": { + "end": 211, + "name": "angle", + "start": 206, + "type": "Identifier" + }, + "start": 206, + "type": "ObjectProperty", + "value": { + "end": 215, + "raw": "60", + "start": 213, + "type": "Literal", + "type": "Literal", + "value": 60 + } + }, + { + "end": 236, + "key": { + "end": 223, + "name": "length", + "start": 217, + "type": "Identifier" + }, + "start": 217, + "type": "ObjectProperty", + "value": { + "end": 236, + "name": "triangleLen", + "start": 225, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 204, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 241, + "start": 240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "a" + } + ], + "callee": { + "end": 203, + "name": "angledLine", + "start": 193, + "type": "Identifier" + }, + "end": 246, + "optional": false, + "start": 193, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 298, + "properties": [ + { + "end": 275, + "key": { + "end": 270, + "name": "angle", + "start": 265, + "type": "Identifier" + }, + "start": 265, + "type": "ObjectProperty", + "value": { + "end": 275, + "raw": "180", + "start": 272, + "type": "Literal", + "type": "Literal", + "value": 180 + } + }, + { + "end": 296, + "key": { + "end": 283, + "name": "length", + "start": 277, + "type": "Identifier" + }, + "start": 277, + "type": "ObjectProperty", + "value": { + "end": 296, + "name": "triangleLen", + "start": 285, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 263, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 301, + "start": 300, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "b" + } + ], + "callee": { + "end": 262, + "name": "angledLine", + "start": 252, + "type": "Identifier" + }, + "end": 306, + "optional": false, + "start": 252, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 358, + "properties": [ + { + "end": 335, + "key": { + "end": 330, + "name": "angle", + "start": 325, + "type": "Identifier" + }, + "start": 325, + "type": "ObjectProperty", + "value": { + "end": 335, + "raw": "300", + "start": 332, + "type": "Literal", + "type": "Literal", + "value": 300 + } + }, + { + "end": 356, + "key": { + "end": 343, + "name": "length", + "start": 337, + "type": "Identifier" + }, + "start": 337, + "type": "ObjectProperty", + "value": { + "end": 356, + "name": "triangleLen", + "start": 345, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 323, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 361, + "start": 360, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "c" + } + ], + "callee": { + "end": 322, + "name": "angledLine", + "start": 312, + "type": "Identifier" + }, + "end": 366, + "optional": false, + "start": 312, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 394, + "name": "triangleHeight", + "start": 380, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 397, + "start": 396, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 379, + "name": "extrude", + "start": 372, + "type": "Identifier" + }, + "end": 398, + "optional": false, + "start": 372, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 398, + "start": 137, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 133, + "type": "VariableDeclarator" + } + ], + "end": 398, + "kind": "const", + "start": 133, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 558, + "id": { + "end": 408, + "name": "circl", + "start": 403, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 450, + "name": "p", + "start": 449, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 456, + "name": "face", + "start": 452, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 448, + "name": "startSketchOn", + "start": 435, + "type": "Identifier" + }, + "end": 457, + "optional": false, + "start": 435, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 489, + "left": { + "end": 480, + "name": "x", + "start": 479, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 489, + "name": "radius", + "start": 483, + "type": "Identifier", + "type": "Identifier" + }, + "start": 479, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 509, + "left": { + "end": 505, + "name": "triangleHeight", + "start": 491, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 509, + "raw": "2", + "start": 508, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 491, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 510, + "start": 478, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 513, + "start": 512, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 477, + "name": "startProfileAt", + "start": 463, + "type": "Identifier" + }, + "end": 514, + "optional": false, + "start": 463, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 528, + "name": "circ", + "start": 524, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 531, + "start": 530, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "arc_tag" + } + ], + "callee": { + "end": 523, + "name": "arc", + "start": 520, + "type": "Identifier" + }, + "end": 542, + "optional": false, + "start": 520, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 555, + "start": 554, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 553, + "name": "close", + "start": 548, + "type": "Identifier" + }, + "end": 556, + "optional": false, + "start": 548, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 556, + "start": 435, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "end": 556, + "start": 428, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 558, + "start": 424 + }, + "end": 558, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 413, + "name": "x", + "start": 412, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 419, + "name": "face", + "start": 415, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 411, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 403, + "type": "VariableDeclarator" + } + ], + "end": 558, + "kind": "fn", + "start": 400, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 579, + "id": { + "end": 562, + "name": "c1", + "start": 560, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "argument": { + "end": 575, + "raw": "200", + "start": 572, + "type": "Literal", + "type": "Literal", + "value": 200 + }, + "end": 575, + "operator": "-", + "start": 571, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 578, + "name": "c", + "start": 577, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 570, + "name": "circl", + "start": 565, + "type": "Identifier" + }, + "end": 579, + "optional": false, + "start": 565, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 560, + "type": "VariableDeclarator" + } + ], + "end": 579, + "kind": "const", + "start": 560, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 756, + "id": { + "end": 588, + "name": "plumbus1", + "start": 580, + "type": "Identifier" + }, + "init": { + "body": [ + { + "end": 593, + "name": "c1", + "start": 591, + "type": "Identifier", + "type": "Identifier" + }, + { + "arguments": [ + { + "end": 617, + "name": "plumbusLen", + "start": 607, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 620, + "start": 619, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 606, + "name": "extrude", + "start": 599, + "type": "Identifier" + }, + "end": 621, + "optional": false, + "start": 599, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 752, + "properties": [ + { + "end": 652, + "key": { + "end": 649, + "name": "radius", + "start": 643, + "type": "Identifier" + }, + "start": 643, + "type": "ObjectProperty", + "value": { + "end": 652, + "raw": "5", + "start": 651, + "type": "Literal", + "type": "Literal", + "value": 5 + } + }, + { + "end": 745, + "key": { + "end": 665, + "name": "tags", + "start": 661, + "type": "Identifier" + }, + "start": 661, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "computed": false, + "end": 693, + "object": { + "computed": false, + "end": 685, + "object": { + "end": 680, + "name": "c1", + "start": 678, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 685, + "name": "tags", + "start": 681, + "type": "Identifier", + "type": "Identifier" + }, + "start": 678, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "property": { + "end": 693, + "name": "arc_tag", + "start": 686, + "type": "Identifier", + "type": "Identifier" + }, + "start": 678, + "type": "MemberExpression", + "type": "MemberExpression" + }, + { + "arguments": [ + { + "computed": false, + "end": 735, + "object": { + "computed": false, + "end": 727, + "object": { + "end": 722, + "name": "c1", + "start": 720, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 727, + "name": "tags", + "start": 723, + "type": "Identifier", + "type": "Identifier" + }, + "start": 720, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "property": { + "end": 735, + "name": "arc_tag", + "start": 728, + "type": "Identifier", + "type": "Identifier" + }, + "start": 720, + "type": "MemberExpression", + "type": "MemberExpression" + } + ], + "callee": { + "end": 719, + "name": "getOppositeEdge", + "start": 704, + "type": "Identifier" + }, + "end": 736, + "optional": false, + "start": 704, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 745, + "start": 667, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 634, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 755, + "start": 754, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 633, + "name": "fillet", + "start": 627, + "type": "Identifier" + }, + "end": 756, + "optional": false, + "start": 627, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 756, + "start": 591, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 580, + "type": "VariableDeclarator" + } + ], + "end": 756, + "kind": "const", + "start": 580, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 775, + "id": { + "end": 759, + "name": "c2", + "start": 757, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 771, + "raw": "200", + "start": 768, + "type": "Literal", + "type": "Literal", + "value": 200 + }, + { + "end": 774, + "name": "a", + "start": 773, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 767, + "name": "circl", + "start": 762, + "type": "Identifier" + }, + "end": 775, + "optional": false, + "start": 762, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 757, + "type": "VariableDeclarator" + } + ], + "end": 775, + "kind": "const", + "start": 757, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 952, + "id": { + "end": 784, + "name": "plumbus0", + "start": 776, + "type": "Identifier" + }, + "init": { + "body": [ + { + "end": 789, + "name": "c2", + "start": 787, + "type": "Identifier", + "type": "Identifier" + }, + { + "arguments": [ + { + "end": 813, + "name": "plumbusLen", + "start": 803, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 816, + "start": 815, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 802, + "name": "extrude", + "start": 795, + "type": "Identifier" + }, + "end": 817, + "optional": false, + "start": 795, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 948, + "properties": [ + { + "end": 848, + "key": { + "end": 845, + "name": "radius", + "start": 839, + "type": "Identifier" + }, + "start": 839, + "type": "ObjectProperty", + "value": { + "end": 848, + "raw": "5", + "start": 847, + "type": "Literal", + "type": "Literal", + "value": 5 + } + }, + { + "end": 941, + "key": { + "end": 861, + "name": "tags", + "start": 857, + "type": "Identifier" + }, + "start": 857, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "computed": false, + "end": 889, + "object": { + "computed": false, + "end": 881, + "object": { + "end": 876, + "name": "c2", + "start": 874, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 881, + "name": "tags", + "start": 877, + "type": "Identifier", + "type": "Identifier" + }, + "start": 874, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "property": { + "end": 889, + "name": "arc_tag", + "start": 882, + "type": "Identifier", + "type": "Identifier" + }, + "start": 874, + "type": "MemberExpression", + "type": "MemberExpression" + }, + { + "arguments": [ + { + "computed": false, + "end": 931, + "object": { + "computed": false, + "end": 923, + "object": { + "end": 918, + "name": "c2", + "start": 916, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 923, + "name": "tags", + "start": 919, + "type": "Identifier", + "type": "Identifier" + }, + "start": 916, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "property": { + "end": 931, + "name": "arc_tag", + "start": 924, + "type": "Identifier", + "type": "Identifier" + }, + "start": 916, + "type": "MemberExpression", + "type": "MemberExpression" + } + ], + "callee": { + "end": 915, + "name": "getOppositeEdge", + "start": 900, + "type": "Identifier" + }, + "end": 932, + "optional": false, + "start": 900, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 941, + "start": 863, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 830, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 951, + "start": 950, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 829, + "name": "fillet", + "start": 823, + "type": "Identifier" + }, + "end": 952, + "optional": false, + "start": 823, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 952, + "start": 787, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 776, + "type": "VariableDeclarator" + } + ], + "end": 952, + "kind": "const", + "start": 776, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 953, + "nonCodeMeta": { + "nonCodeNodes": { + "3": [ + { + "end": 115, + "start": 113, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "5": [ + { + "end": 400, + "start": 398, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "6": [ + { + "end": 560, + "start": 558, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/input.kcl b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/input.kcl new file mode 100644 index 000000000..362274b56 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/input.kcl @@ -0,0 +1,44 @@ +triangleHeight = 200 +plumbusLen = 100 +radius = 80 +circ = { + angle_start: 0, + angle_end: 360, + radius: radius +} + +triangleLen = 500 +p = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> angledLine({ angle: 60, length: triangleLen }, %, $a) + |> angledLine({ angle: 180, length: triangleLen }, %, $b) + |> angledLine({ angle: 300, length: triangleLen }, %, $c) + |> extrude(triangleHeight, %) + +fn circl = (x, face) => { + return startSketchOn(p, face) + |> startProfileAt([x + radius, triangleHeight / 2], %) + |> arc(circ, %, $arc_tag) + |> close(%) +} + +c1 = circl(-200, c) +plumbus1 = c1 + |> extrude(plumbusLen, %) + |> fillet({ + radius: 5, + tags: [ + c1.tags.arc_tag, + getOppositeEdge(c1.tags.arc_tag) + ] + }, %) +c2 = circl(200, a) +plumbus0 = c2 + |> extrude(plumbusLen, %) + |> fillet({ + radius: 5, + tags: [ + c2.tags.arc_tag, + getOppositeEdge(c2.tags.arc_tag) + ] + }, %) 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 new file mode 100644 index 000000000..8cb8ee517 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap @@ -0,0 +1,4024 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing pentagon_fillet_sugar.kcl +snapshot_kind: text +--- +{ + "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": "TagIdentifier", + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "arc_tag": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ], + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 533, + 541, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + }, + "c1": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 548, + 556, + 0 + ] + }, + "from": [ + -120.0, + 100.0 + ], + "tag": null, + "to": [ + -120.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 162, + 187, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 435, + 457, + 0 + ] + } + ] + }, + "start": { + "from": [ + -120.0, + 100.0 + ], + "to": [ + -120.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 463, + 514, + 0 + ] + } + }, + "tags": { + "arc_tag": { + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ], + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 533, + 541, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 463, + 514, + 0 + ] + } + ] + } + }, + "c2": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 548, + 556, + 0 + ] + }, + "from": [ + 280.0, + 100.0 + ], + "tag": null, + "to": [ + 280.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 162, + 187, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 435, + 457, + 0 + ] + } + ] + }, + "start": { + "from": [ + 280.0, + 100.0 + ], + "to": [ + 280.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 463, + 514, + 0 + ] + } + }, + "tags": { + "arc_tag": { + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ], + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 533, + 541, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 463, + 514, + 0 + ] + } + ] + } + }, + "circ": { + "type": "Object", + "value": { + "angle_end": { + "type": "Int", + "value": 360, + "__meta": [ + { + "sourceRange": [ + 90, + 93, + 0 + ] + } + ] + }, + "angle_start": { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 74, + 75, + 0 + ] + } + ] + }, + "radius": { + "type": "Int", + "value": 80, + "__meta": [ + { + "sourceRange": [ + 47, + 49, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 57, + 113, + 0 + ] + } + ] + }, + "circl": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 450, + "name": "p", + "start": 449, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 456, + "name": "face", + "start": 452, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 448, + "name": "startSketchOn", + "start": 435, + "type": "Identifier" + }, + "end": 457, + "optional": false, + "start": 435, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 489, + "left": { + "end": 480, + "name": "x", + "start": 479, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 489, + "name": "radius", + "start": 483, + "type": "Identifier", + "type": "Identifier" + }, + "start": 479, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 509, + "left": { + "end": 505, + "name": "triangleHeight", + "start": 491, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 509, + "raw": "2", + "start": 508, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 491, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 510, + "start": 478, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 513, + "start": 512, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 477, + "name": "startProfileAt", + "start": 463, + "type": "Identifier" + }, + "end": 514, + "optional": false, + "start": 463, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 528, + "name": "circ", + "start": 524, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 531, + "start": 530, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "arc_tag" + } + ], + "callee": { + "end": 523, + "name": "arc", + "start": 520, + "type": "Identifier" + }, + "end": 542, + "optional": false, + "start": 520, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 555, + "start": 554, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 553, + "name": "close", + "start": 548, + "type": "Identifier" + }, + "end": 556, + "optional": false, + "start": 548, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 556, + "start": 435, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "end": 556, + "start": 428, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 558, + "start": 424 + }, + "end": 558, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 413, + "name": "x", + "start": 412, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 419, + "name": "face", + "start": 415, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 411, + "type": "FunctionExpression" + }, + "memory": { + "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": "TagIdentifier", + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + }, + "circ": { + "type": "Object", + "value": { + "angle_end": { + "type": "Int", + "value": 360, + "__meta": [ + { + "sourceRange": [ + 90, + 93, + 0 + ] + } + ] + }, + "angle_start": { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 74, + 75, + 0 + ] + } + ] + }, + "radius": { + "type": "Int", + "value": 80, + "__meta": [ + { + "sourceRange": [ + 47, + 49, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 57, + 113, + 0 + ] + } + ] + }, + "p": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 162, + 187, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "plumbusLen": { + "type": "Int", + "value": 100, + "__meta": [ + { + "sourceRange": [ + 34, + 37, + 0 + ] + } + ] + }, + "radius": { + "type": "Int", + "value": 80, + "__meta": [ + { + "sourceRange": [ + 47, + 49, + 0 + ] + } + ] + }, + "triangleHeight": { + "type": "Int", + "value": 200, + "__meta": [ + { + "sourceRange": [ + 17, + 20, + 0 + ] + } + ] + }, + "triangleLen": { + "type": "Int", + "value": 500, + "__meta": [ + { + "sourceRange": [ + 129, + 132, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 411, + 558, + 0 + ] + } + ] + }, + "p": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 162, + 187, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "plumbus0": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ], + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 548, + 556, + 0 + ] + }, + "from": [ + 280.0, + 100.0 + ], + "tag": null, + "to": [ + 280.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 162, + 187, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 435, + 457, + 0 + ] + } + ] + }, + "start": { + "from": [ + 280.0, + 100.0 + ], + "to": [ + 280.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 463, + 514, + 0 + ] + } + }, + "tags": { + "arc_tag": { + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ], + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 533, + 541, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 463, + 514, + 0 + ] + } + ] + }, + "height": 100.0, + "startCapId": "[uuid]", + "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 + } + ], + "__meta": [ + { + "sourceRange": [ + 463, + 514, + 0 + ] + } + ] + }, + "plumbus1": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ], + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 548, + 556, + 0 + ] + }, + "from": [ + -120.0, + 100.0 + ], + "tag": null, + "to": [ + -120.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 162, + 187, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 193, + 246, + 0 + ], + "tag": { + "end": 245, + "start": 243, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 243, + 245, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 252, + 306, + 0 + ], + "tag": { + "end": 305, + "start": 303, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 303, + 305, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 312, + 366, + 0 + ], + "tag": { + "end": 365, + "start": 363, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 363, + 365, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 162, + 187, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 435, + 457, + 0 + ] + } + ] + }, + "start": { + "from": [ + -120.0, + 100.0 + ], + "to": [ + -120.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 463, + 514, + 0 + ] + } + }, + "tags": { + "arc_tag": { + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ] + }, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 520, + 542, + 0 + ], + "tag": { + "end": 541, + "start": 533, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 533, + 541, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 463, + 514, + 0 + ] + } + ] + }, + "height": 100.0, + "startCapId": "[uuid]", + "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 + } + ], + "__meta": [ + { + "sourceRange": [ + 463, + 514, + 0 + ] + } + ] + }, + "plumbusLen": { + "type": "Int", + "value": 100, + "__meta": [ + { + "sourceRange": [ + 34, + 37, + 0 + ] + } + ] + }, + "radius": { + "type": "Int", + "value": 80, + "__meta": [ + { + "sourceRange": [ + 47, + 49, + 0 + ] + } + ] + }, + "triangleHeight": { + "type": "Int", + "value": 200, + "__meta": [ + { + "sourceRange": [ + 17, + 20, + 0 + ] + } + ] + }, + "triangleLen": { + "type": "Int", + "value": 500, + "__meta": [ + { + "sourceRange": [ + 129, + 132, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/rendered_model.png b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/rendered_model.png new file mode 100644 index 000000000..b2dbd3895 Binary files /dev/null and b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/tokens.snap b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/tokens.snap new file mode 100644 index 000000000..40da55e03 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/tokens.snap @@ -0,0 +1,2265 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing pentagon_fillet_sugar.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 14, + "value": "triangleHeight" + }, + { + "type": "whitespace", + "start": 14, + "end": 15, + "value": " " + }, + { + "type": "operator", + "start": 15, + "end": 16, + "value": "=" + }, + { + "type": "whitespace", + "start": 16, + "end": 17, + "value": " " + }, + { + "type": "number", + "start": 17, + "end": 20, + "value": "200" + }, + { + "type": "whitespace", + "start": 20, + "end": 21, + "value": "\n" + }, + { + "type": "word", + "start": 21, + "end": 31, + "value": "plumbusLen" + }, + { + "type": "whitespace", + "start": 31, + "end": 32, + "value": " " + }, + { + "type": "operator", + "start": 32, + "end": 33, + "value": "=" + }, + { + "type": "whitespace", + "start": 33, + "end": 34, + "value": " " + }, + { + "type": "number", + "start": 34, + "end": 37, + "value": "100" + }, + { + "type": "whitespace", + "start": 37, + "end": 38, + "value": "\n" + }, + { + "type": "word", + "start": 38, + "end": 44, + "value": "radius" + }, + { + "type": "whitespace", + "start": 44, + "end": 45, + "value": " " + }, + { + "type": "operator", + "start": 45, + "end": 46, + "value": "=" + }, + { + "type": "whitespace", + "start": 46, + "end": 47, + "value": " " + }, + { + "type": "number", + "start": 47, + "end": 49, + "value": "80" + }, + { + "type": "whitespace", + "start": 49, + "end": 50, + "value": "\n" + }, + { + "type": "word", + "start": 50, + "end": 54, + "value": "circ" + }, + { + "type": "whitespace", + "start": 54, + "end": 55, + "value": " " + }, + { + "type": "operator", + "start": 55, + "end": 56, + "value": "=" + }, + { + "type": "whitespace", + "start": 56, + "end": 57, + "value": " " + }, + { + "type": "brace", + "start": 57, + "end": 58, + "value": "{" + }, + { + "type": "whitespace", + "start": 58, + "end": 61, + "value": "\n " + }, + { + "type": "word", + "start": 61, + "end": 72, + "value": "angle_start" + }, + { + "type": "colon", + "start": 72, + "end": 73, + "value": ":" + }, + { + "type": "whitespace", + "start": 73, + "end": 74, + "value": " " + }, + { + "type": "number", + "start": 74, + "end": 75, + "value": "0" + }, + { + "type": "comma", + "start": 75, + "end": 76, + "value": "," + }, + { + "type": "whitespace", + "start": 76, + "end": 79, + "value": "\n " + }, + { + "type": "word", + "start": 79, + "end": 88, + "value": "angle_end" + }, + { + "type": "colon", + "start": 88, + "end": 89, + "value": ":" + }, + { + "type": "whitespace", + "start": 89, + "end": 90, + "value": " " + }, + { + "type": "number", + "start": 90, + "end": 93, + "value": "360" + }, + { + "type": "comma", + "start": 93, + "end": 94, + "value": "," + }, + { + "type": "whitespace", + "start": 94, + "end": 97, + "value": "\n " + }, + { + "type": "word", + "start": 97, + "end": 103, + "value": "radius" + }, + { + "type": "colon", + "start": 103, + "end": 104, + "value": ":" + }, + { + "type": "whitespace", + "start": 104, + "end": 105, + "value": " " + }, + { + "type": "word", + "start": 105, + "end": 111, + "value": "radius" + }, + { + "type": "whitespace", + "start": 111, + "end": 112, + "value": "\n" + }, + { + "type": "brace", + "start": 112, + "end": 113, + "value": "}" + }, + { + "type": "whitespace", + "start": 113, + "end": 115, + "value": "\n\n" + }, + { + "type": "word", + "start": 115, + "end": 126, + "value": "triangleLen" + }, + { + "type": "whitespace", + "start": 126, + "end": 127, + "value": " " + }, + { + "type": "operator", + "start": 127, + "end": 128, + "value": "=" + }, + { + "type": "whitespace", + "start": 128, + "end": 129, + "value": " " + }, + { + "type": "number", + "start": 129, + "end": 132, + "value": "500" + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": "\n" + }, + { + "type": "word", + "start": 133, + "end": 134, + "value": "p" + }, + { + "type": "whitespace", + "start": 134, + "end": 135, + "value": " " + }, + { + "type": "operator", + "start": 135, + "end": 136, + "value": "=" + }, + { + "type": "whitespace", + "start": 136, + "end": 137, + "value": " " + }, + { + "type": "word", + "start": 137, + "end": 150, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 150, + "end": 151, + "value": "(" + }, + { + "type": "string", + "start": 151, + "end": 155, + "value": "'XY'" + }, + { + "type": "brace", + "start": 155, + "end": 156, + "value": ")" + }, + { + "type": "whitespace", + "start": 156, + "end": 159, + "value": "\n " + }, + { + "type": "operator", + "start": 159, + "end": 161, + "value": "|>" + }, + { + "type": "whitespace", + "start": 161, + "end": 162, + "value": " " + }, + { + "type": "word", + "start": 162, + "end": 176, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 176, + "end": 177, + "value": "(" + }, + { + "type": "brace", + "start": 177, + "end": 178, + "value": "[" + }, + { + "type": "number", + "start": 178, + "end": 179, + "value": "0" + }, + { + "type": "comma", + "start": 179, + "end": 180, + "value": "," + }, + { + "type": "whitespace", + "start": 180, + "end": 181, + "value": " " + }, + { + "type": "number", + "start": 181, + "end": 182, + "value": "0" + }, + { + "type": "brace", + "start": 182, + "end": 183, + "value": "]" + }, + { + "type": "comma", + "start": 183, + "end": 184, + "value": "," + }, + { + "type": "whitespace", + "start": 184, + "end": 185, + "value": " " + }, + { + "type": "operator", + "start": 185, + "end": 186, + "value": "%" + }, + { + "type": "brace", + "start": 186, + "end": 187, + "value": ")" + }, + { + "type": "whitespace", + "start": 187, + "end": 190, + "value": "\n " + }, + { + "type": "operator", + "start": 190, + "end": 192, + "value": "|>" + }, + { + "type": "whitespace", + "start": 192, + "end": 193, + "value": " " + }, + { + "type": "word", + "start": 193, + "end": 203, + "value": "angledLine" + }, + { + "type": "brace", + "start": 203, + "end": 204, + "value": "(" + }, + { + "type": "brace", + "start": 204, + "end": 205, + "value": "{" + }, + { + "type": "whitespace", + "start": 205, + "end": 206, + "value": " " + }, + { + "type": "word", + "start": 206, + "end": 211, + "value": "angle" + }, + { + "type": "colon", + "start": 211, + "end": 212, + "value": ":" + }, + { + "type": "whitespace", + "start": 212, + "end": 213, + "value": " " + }, + { + "type": "number", + "start": 213, + "end": 215, + "value": "60" + }, + { + "type": "comma", + "start": 215, + "end": 216, + "value": "," + }, + { + "type": "whitespace", + "start": 216, + "end": 217, + "value": " " + }, + { + "type": "word", + "start": 217, + "end": 223, + "value": "length" + }, + { + "type": "colon", + "start": 223, + "end": 224, + "value": ":" + }, + { + "type": "whitespace", + "start": 224, + "end": 225, + "value": " " + }, + { + "type": "word", + "start": 225, + "end": 236, + "value": "triangleLen" + }, + { + "type": "whitespace", + "start": 236, + "end": 237, + "value": " " + }, + { + "type": "brace", + "start": 237, + "end": 238, + "value": "}" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "operator", + "start": 240, + "end": 241, + "value": "%" + }, + { + "type": "comma", + "start": 241, + "end": 242, + "value": "," + }, + { + "type": "whitespace", + "start": 242, + "end": 243, + "value": " " + }, + { + "type": "dollar", + "start": 243, + "end": 244, + "value": "$" + }, + { + "type": "word", + "start": 244, + "end": 245, + "value": "a" + }, + { + "type": "brace", + "start": 245, + "end": 246, + "value": ")" + }, + { + "type": "whitespace", + "start": 246, + "end": 249, + "value": "\n " + }, + { + "type": "operator", + "start": 249, + "end": 251, + "value": "|>" + }, + { + "type": "whitespace", + "start": 251, + "end": 252, + "value": " " + }, + { + "type": "word", + "start": 252, + "end": 262, + "value": "angledLine" + }, + { + "type": "brace", + "start": 262, + "end": 263, + "value": "(" + }, + { + "type": "brace", + "start": 263, + "end": 264, + "value": "{" + }, + { + "type": "whitespace", + "start": 264, + "end": 265, + "value": " " + }, + { + "type": "word", + "start": 265, + "end": 270, + "value": "angle" + }, + { + "type": "colon", + "start": 270, + "end": 271, + "value": ":" + }, + { + "type": "whitespace", + "start": 271, + "end": 272, + "value": " " + }, + { + "type": "number", + "start": 272, + "end": 275, + "value": "180" + }, + { + "type": "comma", + "start": 275, + "end": 276, + "value": "," + }, + { + "type": "whitespace", + "start": 276, + "end": 277, + "value": " " + }, + { + "type": "word", + "start": 277, + "end": 283, + "value": "length" + }, + { + "type": "colon", + "start": 283, + "end": 284, + "value": ":" + }, + { + "type": "whitespace", + "start": 284, + "end": 285, + "value": " " + }, + { + "type": "word", + "start": 285, + "end": 296, + "value": "triangleLen" + }, + { + "type": "whitespace", + "start": 296, + "end": 297, + "value": " " + }, + { + "type": "brace", + "start": 297, + "end": 298, + "value": "}" + }, + { + "type": "comma", + "start": 298, + "end": 299, + "value": "," + }, + { + "type": "whitespace", + "start": 299, + "end": 300, + "value": " " + }, + { + "type": "operator", + "start": 300, + "end": 301, + "value": "%" + }, + { + "type": "comma", + "start": 301, + "end": 302, + "value": "," + }, + { + "type": "whitespace", + "start": 302, + "end": 303, + "value": " " + }, + { + "type": "dollar", + "start": 303, + "end": 304, + "value": "$" + }, + { + "type": "word", + "start": 304, + "end": 305, + "value": "b" + }, + { + "type": "brace", + "start": 305, + "end": 306, + "value": ")" + }, + { + "type": "whitespace", + "start": 306, + "end": 309, + "value": "\n " + }, + { + "type": "operator", + "start": 309, + "end": 311, + "value": "|>" + }, + { + "type": "whitespace", + "start": 311, + "end": 312, + "value": " " + }, + { + "type": "word", + "start": 312, + "end": 322, + "value": "angledLine" + }, + { + "type": "brace", + "start": 322, + "end": 323, + "value": "(" + }, + { + "type": "brace", + "start": 323, + "end": 324, + "value": "{" + }, + { + "type": "whitespace", + "start": 324, + "end": 325, + "value": " " + }, + { + "type": "word", + "start": 325, + "end": 330, + "value": "angle" + }, + { + "type": "colon", + "start": 330, + "end": 331, + "value": ":" + }, + { + "type": "whitespace", + "start": 331, + "end": 332, + "value": " " + }, + { + "type": "number", + "start": 332, + "end": 335, + "value": "300" + }, + { + "type": "comma", + "start": 335, + "end": 336, + "value": "," + }, + { + "type": "whitespace", + "start": 336, + "end": 337, + "value": " " + }, + { + "type": "word", + "start": 337, + "end": 343, + "value": "length" + }, + { + "type": "colon", + "start": 343, + "end": 344, + "value": ":" + }, + { + "type": "whitespace", + "start": 344, + "end": 345, + "value": " " + }, + { + "type": "word", + "start": 345, + "end": 356, + "value": "triangleLen" + }, + { + "type": "whitespace", + "start": 356, + "end": 357, + "value": " " + }, + { + "type": "brace", + "start": 357, + "end": 358, + "value": "}" + }, + { + "type": "comma", + "start": 358, + "end": 359, + "value": "," + }, + { + "type": "whitespace", + "start": 359, + "end": 360, + "value": " " + }, + { + "type": "operator", + "start": 360, + "end": 361, + "value": "%" + }, + { + "type": "comma", + "start": 361, + "end": 362, + "value": "," + }, + { + "type": "whitespace", + "start": 362, + "end": 363, + "value": " " + }, + { + "type": "dollar", + "start": 363, + "end": 364, + "value": "$" + }, + { + "type": "word", + "start": 364, + "end": 365, + "value": "c" + }, + { + "type": "brace", + "start": 365, + "end": 366, + "value": ")" + }, + { + "type": "whitespace", + "start": 366, + "end": 369, + "value": "\n " + }, + { + "type": "operator", + "start": 369, + "end": 371, + "value": "|>" + }, + { + "type": "whitespace", + "start": 371, + "end": 372, + "value": " " + }, + { + "type": "word", + "start": 372, + "end": 379, + "value": "extrude" + }, + { + "type": "brace", + "start": 379, + "end": 380, + "value": "(" + }, + { + "type": "word", + "start": 380, + "end": 394, + "value": "triangleHeight" + }, + { + "type": "comma", + "start": 394, + "end": 395, + "value": "," + }, + { + "type": "whitespace", + "start": 395, + "end": 396, + "value": " " + }, + { + "type": "operator", + "start": 396, + "end": 397, + "value": "%" + }, + { + "type": "brace", + "start": 397, + "end": 398, + "value": ")" + }, + { + "type": "whitespace", + "start": 398, + "end": 400, + "value": "\n\n" + }, + { + "type": "keyword", + "start": 400, + "end": 402, + "value": "fn" + }, + { + "type": "whitespace", + "start": 402, + "end": 403, + "value": " " + }, + { + "type": "word", + "start": 403, + "end": 408, + "value": "circl" + }, + { + "type": "whitespace", + "start": 408, + "end": 409, + "value": " " + }, + { + "type": "operator", + "start": 409, + "end": 410, + "value": "=" + }, + { + "type": "whitespace", + "start": 410, + "end": 411, + "value": " " + }, + { + "type": "brace", + "start": 411, + "end": 412, + "value": "(" + }, + { + "type": "word", + "start": 412, + "end": 413, + "value": "x" + }, + { + "type": "comma", + "start": 413, + "end": 414, + "value": "," + }, + { + "type": "whitespace", + "start": 414, + "end": 415, + "value": " " + }, + { + "type": "word", + "start": 415, + "end": 419, + "value": "face" + }, + { + "type": "brace", + "start": 419, + "end": 420, + "value": ")" + }, + { + "type": "whitespace", + "start": 420, + "end": 421, + "value": " " + }, + { + "type": "operator", + "start": 421, + "end": 423, + "value": "=>" + }, + { + "type": "whitespace", + "start": 423, + "end": 424, + "value": " " + }, + { + "type": "brace", + "start": 424, + "end": 425, + "value": "{" + }, + { + "type": "whitespace", + "start": 425, + "end": 428, + "value": "\n " + }, + { + "type": "keyword", + "start": 428, + "end": 434, + "value": "return" + }, + { + "type": "whitespace", + "start": 434, + "end": 435, + "value": " " + }, + { + "type": "word", + "start": 435, + "end": 448, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 448, + "end": 449, + "value": "(" + }, + { + "type": "word", + "start": 449, + "end": 450, + "value": "p" + }, + { + "type": "comma", + "start": 450, + "end": 451, + "value": "," + }, + { + "type": "whitespace", + "start": 451, + "end": 452, + "value": " " + }, + { + "type": "word", + "start": 452, + "end": 456, + "value": "face" + }, + { + "type": "brace", + "start": 456, + "end": 457, + "value": ")" + }, + { + "type": "whitespace", + "start": 457, + "end": 460, + "value": "\n " + }, + { + "type": "operator", + "start": 460, + "end": 462, + "value": "|>" + }, + { + "type": "whitespace", + "start": 462, + "end": 463, + "value": " " + }, + { + "type": "word", + "start": 463, + "end": 477, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 477, + "end": 478, + "value": "(" + }, + { + "type": "brace", + "start": 478, + "end": 479, + "value": "[" + }, + { + "type": "word", + "start": 479, + "end": 480, + "value": "x" + }, + { + "type": "whitespace", + "start": 480, + "end": 481, + "value": " " + }, + { + "type": "operator", + "start": 481, + "end": 482, + "value": "+" + }, + { + "type": "whitespace", + "start": 482, + "end": 483, + "value": " " + }, + { + "type": "word", + "start": 483, + "end": 489, + "value": "radius" + }, + { + "type": "comma", + "start": 489, + "end": 490, + "value": "," + }, + { + "type": "whitespace", + "start": 490, + "end": 491, + "value": " " + }, + { + "type": "word", + "start": 491, + "end": 505, + "value": "triangleHeight" + }, + { + "type": "whitespace", + "start": 505, + "end": 506, + "value": " " + }, + { + "type": "operator", + "start": 506, + "end": 507, + "value": "/" + }, + { + "type": "whitespace", + "start": 507, + "end": 508, + "value": " " + }, + { + "type": "number", + "start": 508, + "end": 509, + "value": "2" + }, + { + "type": "brace", + "start": 509, + "end": 510, + "value": "]" + }, + { + "type": "comma", + "start": 510, + "end": 511, + "value": "," + }, + { + "type": "whitespace", + "start": 511, + "end": 512, + "value": " " + }, + { + "type": "operator", + "start": 512, + "end": 513, + "value": "%" + }, + { + "type": "brace", + "start": 513, + "end": 514, + "value": ")" + }, + { + "type": "whitespace", + "start": 514, + "end": 517, + "value": "\n " + }, + { + "type": "operator", + "start": 517, + "end": 519, + "value": "|>" + }, + { + "type": "whitespace", + "start": 519, + "end": 520, + "value": " " + }, + { + "type": "word", + "start": 520, + "end": 523, + "value": "arc" + }, + { + "type": "brace", + "start": 523, + "end": 524, + "value": "(" + }, + { + "type": "word", + "start": 524, + "end": 528, + "value": "circ" + }, + { + "type": "comma", + "start": 528, + "end": 529, + "value": "," + }, + { + "type": "whitespace", + "start": 529, + "end": 530, + "value": " " + }, + { + "type": "operator", + "start": 530, + "end": 531, + "value": "%" + }, + { + "type": "comma", + "start": 531, + "end": 532, + "value": "," + }, + { + "type": "whitespace", + "start": 532, + "end": 533, + "value": " " + }, + { + "type": "dollar", + "start": 533, + "end": 534, + "value": "$" + }, + { + "type": "word", + "start": 534, + "end": 541, + "value": "arc_tag" + }, + { + "type": "brace", + "start": 541, + "end": 542, + "value": ")" + }, + { + "type": "whitespace", + "start": 542, + "end": 545, + "value": "\n " + }, + { + "type": "operator", + "start": 545, + "end": 547, + "value": "|>" + }, + { + "type": "whitespace", + "start": 547, + "end": 548, + "value": " " + }, + { + "type": "word", + "start": 548, + "end": 553, + "value": "close" + }, + { + "type": "brace", + "start": 553, + "end": 554, + "value": "(" + }, + { + "type": "operator", + "start": 554, + "end": 555, + "value": "%" + }, + { + "type": "brace", + "start": 555, + "end": 556, + "value": ")" + }, + { + "type": "whitespace", + "start": 556, + "end": 557, + "value": "\n" + }, + { + "type": "brace", + "start": 557, + "end": 558, + "value": "}" + }, + { + "type": "whitespace", + "start": 558, + "end": 560, + "value": "\n\n" + }, + { + "type": "word", + "start": 560, + "end": 562, + "value": "c1" + }, + { + "type": "whitespace", + "start": 562, + "end": 563, + "value": " " + }, + { + "type": "operator", + "start": 563, + "end": 564, + "value": "=" + }, + { + "type": "whitespace", + "start": 564, + "end": 565, + "value": " " + }, + { + "type": "word", + "start": 565, + "end": 570, + "value": "circl" + }, + { + "type": "brace", + "start": 570, + "end": 571, + "value": "(" + }, + { + "type": "operator", + "start": 571, + "end": 572, + "value": "-" + }, + { + "type": "number", + "start": 572, + "end": 575, + "value": "200" + }, + { + "type": "comma", + "start": 575, + "end": 576, + "value": "," + }, + { + "type": "whitespace", + "start": 576, + "end": 577, + "value": " " + }, + { + "type": "word", + "start": 577, + "end": 578, + "value": "c" + }, + { + "type": "brace", + "start": 578, + "end": 579, + "value": ")" + }, + { + "type": "whitespace", + "start": 579, + "end": 580, + "value": "\n" + }, + { + "type": "word", + "start": 580, + "end": 588, + "value": "plumbus1" + }, + { + "type": "whitespace", + "start": 588, + "end": 589, + "value": " " + }, + { + "type": "operator", + "start": 589, + "end": 590, + "value": "=" + }, + { + "type": "whitespace", + "start": 590, + "end": 591, + "value": " " + }, + { + "type": "word", + "start": 591, + "end": 593, + "value": "c1" + }, + { + "type": "whitespace", + "start": 593, + "end": 596, + "value": "\n " + }, + { + "type": "operator", + "start": 596, + "end": 598, + "value": "|>" + }, + { + "type": "whitespace", + "start": 598, + "end": 599, + "value": " " + }, + { + "type": "word", + "start": 599, + "end": 606, + "value": "extrude" + }, + { + "type": "brace", + "start": 606, + "end": 607, + "value": "(" + }, + { + "type": "word", + "start": 607, + "end": 617, + "value": "plumbusLen" + }, + { + "type": "comma", + "start": 617, + "end": 618, + "value": "," + }, + { + "type": "whitespace", + "start": 618, + "end": 619, + "value": " " + }, + { + "type": "operator", + "start": 619, + "end": 620, + "value": "%" + }, + { + "type": "brace", + "start": 620, + "end": 621, + "value": ")" + }, + { + "type": "whitespace", + "start": 621, + "end": 624, + "value": "\n " + }, + { + "type": "operator", + "start": 624, + "end": 626, + "value": "|>" + }, + { + "type": "whitespace", + "start": 626, + "end": 627, + "value": " " + }, + { + "type": "word", + "start": 627, + "end": 633, + "value": "fillet" + }, + { + "type": "brace", + "start": 633, + "end": 634, + "value": "(" + }, + { + "type": "brace", + "start": 634, + "end": 635, + "value": "{" + }, + { + "type": "whitespace", + "start": 635, + "end": 643, + "value": "\n " + }, + { + "type": "word", + "start": 643, + "end": 649, + "value": "radius" + }, + { + "type": "colon", + "start": 649, + "end": 650, + "value": ":" + }, + { + "type": "whitespace", + "start": 650, + "end": 651, + "value": " " + }, + { + "type": "number", + "start": 651, + "end": 652, + "value": "5" + }, + { + "type": "comma", + "start": 652, + "end": 653, + "value": "," + }, + { + "type": "whitespace", + "start": 653, + "end": 661, + "value": "\n " + }, + { + "type": "word", + "start": 661, + "end": 665, + "value": "tags" + }, + { + "type": "colon", + "start": 665, + "end": 666, + "value": ":" + }, + { + "type": "whitespace", + "start": 666, + "end": 667, + "value": " " + }, + { + "type": "brace", + "start": 667, + "end": 668, + "value": "[" + }, + { + "type": "whitespace", + "start": 668, + "end": 678, + "value": "\n " + }, + { + "type": "word", + "start": 678, + "end": 680, + "value": "c1" + }, + { + "type": "period", + "start": 680, + "end": 681, + "value": "." + }, + { + "type": "word", + "start": 681, + "end": 685, + "value": "tags" + }, + { + "type": "period", + "start": 685, + "end": 686, + "value": "." + }, + { + "type": "word", + "start": 686, + "end": 693, + "value": "arc_tag" + }, + { + "type": "comma", + "start": 693, + "end": 694, + "value": "," + }, + { + "type": "whitespace", + "start": 694, + "end": 704, + "value": "\n " + }, + { + "type": "word", + "start": 704, + "end": 719, + "value": "getOppositeEdge" + }, + { + "type": "brace", + "start": 719, + "end": 720, + "value": "(" + }, + { + "type": "word", + "start": 720, + "end": 722, + "value": "c1" + }, + { + "type": "period", + "start": 722, + "end": 723, + "value": "." + }, + { + "type": "word", + "start": 723, + "end": 727, + "value": "tags" + }, + { + "type": "period", + "start": 727, + "end": 728, + "value": "." + }, + { + "type": "word", + "start": 728, + "end": 735, + "value": "arc_tag" + }, + { + "type": "brace", + "start": 735, + "end": 736, + "value": ")" + }, + { + "type": "whitespace", + "start": 736, + "end": 744, + "value": "\n " + }, + { + "type": "brace", + "start": 744, + "end": 745, + "value": "]" + }, + { + "type": "whitespace", + "start": 745, + "end": 751, + "value": "\n " + }, + { + "type": "brace", + "start": 751, + "end": 752, + "value": "}" + }, + { + "type": "comma", + "start": 752, + "end": 753, + "value": "," + }, + { + "type": "whitespace", + "start": 753, + "end": 754, + "value": " " + }, + { + "type": "operator", + "start": 754, + "end": 755, + "value": "%" + }, + { + "type": "brace", + "start": 755, + "end": 756, + "value": ")" + }, + { + "type": "whitespace", + "start": 756, + "end": 757, + "value": "\n" + }, + { + "type": "word", + "start": 757, + "end": 759, + "value": "c2" + }, + { + "type": "whitespace", + "start": 759, + "end": 760, + "value": " " + }, + { + "type": "operator", + "start": 760, + "end": 761, + "value": "=" + }, + { + "type": "whitespace", + "start": 761, + "end": 762, + "value": " " + }, + { + "type": "word", + "start": 762, + "end": 767, + "value": "circl" + }, + { + "type": "brace", + "start": 767, + "end": 768, + "value": "(" + }, + { + "type": "number", + "start": 768, + "end": 771, + "value": "200" + }, + { + "type": "comma", + "start": 771, + "end": 772, + "value": "," + }, + { + "type": "whitespace", + "start": 772, + "end": 773, + "value": " " + }, + { + "type": "word", + "start": 773, + "end": 774, + "value": "a" + }, + { + "type": "brace", + "start": 774, + "end": 775, + "value": ")" + }, + { + "type": "whitespace", + "start": 775, + "end": 776, + "value": "\n" + }, + { + "type": "word", + "start": 776, + "end": 784, + "value": "plumbus0" + }, + { + "type": "whitespace", + "start": 784, + "end": 785, + "value": " " + }, + { + "type": "operator", + "start": 785, + "end": 786, + "value": "=" + }, + { + "type": "whitespace", + "start": 786, + "end": 787, + "value": " " + }, + { + "type": "word", + "start": 787, + "end": 789, + "value": "c2" + }, + { + "type": "whitespace", + "start": 789, + "end": 792, + "value": "\n " + }, + { + "type": "operator", + "start": 792, + "end": 794, + "value": "|>" + }, + { + "type": "whitespace", + "start": 794, + "end": 795, + "value": " " + }, + { + "type": "word", + "start": 795, + "end": 802, + "value": "extrude" + }, + { + "type": "brace", + "start": 802, + "end": 803, + "value": "(" + }, + { + "type": "word", + "start": 803, + "end": 813, + "value": "plumbusLen" + }, + { + "type": "comma", + "start": 813, + "end": 814, + "value": "," + }, + { + "type": "whitespace", + "start": 814, + "end": 815, + "value": " " + }, + { + "type": "operator", + "start": 815, + "end": 816, + "value": "%" + }, + { + "type": "brace", + "start": 816, + "end": 817, + "value": ")" + }, + { + "type": "whitespace", + "start": 817, + "end": 820, + "value": "\n " + }, + { + "type": "operator", + "start": 820, + "end": 822, + "value": "|>" + }, + { + "type": "whitespace", + "start": 822, + "end": 823, + "value": " " + }, + { + "type": "word", + "start": 823, + "end": 829, + "value": "fillet" + }, + { + "type": "brace", + "start": 829, + "end": 830, + "value": "(" + }, + { + "type": "brace", + "start": 830, + "end": 831, + "value": "{" + }, + { + "type": "whitespace", + "start": 831, + "end": 839, + "value": "\n " + }, + { + "type": "word", + "start": 839, + "end": 845, + "value": "radius" + }, + { + "type": "colon", + "start": 845, + "end": 846, + "value": ":" + }, + { + "type": "whitespace", + "start": 846, + "end": 847, + "value": " " + }, + { + "type": "number", + "start": 847, + "end": 848, + "value": "5" + }, + { + "type": "comma", + "start": 848, + "end": 849, + "value": "," + }, + { + "type": "whitespace", + "start": 849, + "end": 857, + "value": "\n " + }, + { + "type": "word", + "start": 857, + "end": 861, + "value": "tags" + }, + { + "type": "colon", + "start": 861, + "end": 862, + "value": ":" + }, + { + "type": "whitespace", + "start": 862, + "end": 863, + "value": " " + }, + { + "type": "brace", + "start": 863, + "end": 864, + "value": "[" + }, + { + "type": "whitespace", + "start": 864, + "end": 874, + "value": "\n " + }, + { + "type": "word", + "start": 874, + "end": 876, + "value": "c2" + }, + { + "type": "period", + "start": 876, + "end": 877, + "value": "." + }, + { + "type": "word", + "start": 877, + "end": 881, + "value": "tags" + }, + { + "type": "period", + "start": 881, + "end": 882, + "value": "." + }, + { + "type": "word", + "start": 882, + "end": 889, + "value": "arc_tag" + }, + { + "type": "comma", + "start": 889, + "end": 890, + "value": "," + }, + { + "type": "whitespace", + "start": 890, + "end": 900, + "value": "\n " + }, + { + "type": "word", + "start": 900, + "end": 915, + "value": "getOppositeEdge" + }, + { + "type": "brace", + "start": 915, + "end": 916, + "value": "(" + }, + { + "type": "word", + "start": 916, + "end": 918, + "value": "c2" + }, + { + "type": "period", + "start": 918, + "end": 919, + "value": "." + }, + { + "type": "word", + "start": 919, + "end": 923, + "value": "tags" + }, + { + "type": "period", + "start": 923, + "end": 924, + "value": "." + }, + { + "type": "word", + "start": 924, + "end": 931, + "value": "arc_tag" + }, + { + "type": "brace", + "start": 931, + "end": 932, + "value": ")" + }, + { + "type": "whitespace", + "start": 932, + "end": 940, + "value": "\n " + }, + { + "type": "brace", + "start": 940, + "end": 941, + "value": "]" + }, + { + "type": "whitespace", + "start": 941, + "end": 947, + "value": "\n " + }, + { + "type": "brace", + "start": 947, + "end": 948, + "value": "}" + }, + { + "type": "comma", + "start": 948, + "end": 949, + "value": "," + }, + { + "type": "whitespace", + "start": 949, + "end": 950, + "value": " " + }, + { + "type": "operator", + "start": 950, + "end": 951, + "value": "%" + }, + { + "type": "brace", + "start": 951, + "end": 952, + "value": ")" + }, + { + "type": "whitespace", + "start": 952, + "end": 953, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/ast.snap b/src/wasm-lib/kcl/tests/pipe_as_arg/ast.snap new file mode 100644 index 000000000..f696986d4 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/ast.snap @@ -0,0 +1,953 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing pipe_as_arg.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 316, + "id": { + "end": 7, + "name": "cube", + "start": 3, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "declarations": [ + { + "end": 48, + "id": { + "end": 35, + "name": "l", + "start": 34, + "type": "Identifier" + }, + "init": { + "end": 48, + "left": { + "end": 44, + "name": "length", + "start": 38, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 48, + "raw": "2", + "start": 47, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 38, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 34, + "type": "VariableDeclarator" + } + ], + "end": 48, + "kind": "const", + "start": 34, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 64, + "id": { + "end": 52, + "name": "x", + "start": 51, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 64, + "object": { + "end": 61, + "name": "center", + "start": 55, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 63, + "raw": "0", + "start": 62, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 55, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 51, + "type": "VariableDeclarator" + } + ], + "end": 64, + "kind": "const", + "start": 51, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 80, + "id": { + "end": 68, + "name": "y", + "start": 67, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 80, + "object": { + "end": 77, + "name": "center", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 79, + "raw": "1", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 71, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 67, + "type": "VariableDeclarator" + } + ], + "end": 80, + "kind": "const", + "start": 67, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 104, + "id": { + "end": 85, + "name": "p0", + "start": 83, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 95, + "left": { + "argument": { + "end": 91, + "name": "l", + "start": 90, + "type": "Identifier", + "type": "Identifier" + }, + "end": 91, + "operator": "-", + "start": 89, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 95, + "name": "x", + "start": 94, + "type": "Identifier", + "type": "Identifier" + }, + "start": 89, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 103, + "left": { + "argument": { + "end": 99, + "name": "l", + "start": 98, + "type": "Identifier", + "type": "Identifier" + }, + "end": 99, + "operator": "-", + "start": 97, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 103, + "name": "y", + "start": 102, + "type": "Identifier", + "type": "Identifier" + }, + "start": 97, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 104, + "start": 88, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 83, + "type": "VariableDeclarator" + } + ], + "end": 104, + "kind": "const", + "start": 83, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 127, + "id": { + "end": 109, + "name": "p1", + "start": 107, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 119, + "left": { + "argument": { + "end": 115, + "name": "l", + "start": 114, + "type": "Identifier", + "type": "Identifier" + }, + "end": 115, + "operator": "-", + "start": 113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 119, + "name": "x", + "start": 118, + "type": "Identifier", + "type": "Identifier" + }, + "start": 113, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 126, + "left": { + "end": 122, + "name": "l", + "start": 121, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 126, + "name": "y", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + "start": 121, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 127, + "start": 112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 107, + "type": "VariableDeclarator" + } + ], + "end": 127, + "kind": "const", + "start": 107, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 149, + "id": { + "end": 132, + "name": "p2", + "start": 130, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 141, + "left": { + "end": 137, + "name": "l", + "start": 136, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 141, + "name": "x", + "start": 140, + "type": "Identifier", + "type": "Identifier" + }, + "start": 136, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 148, + "left": { + "end": 144, + "name": "l", + "start": 143, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 148, + "name": "y", + "start": 147, + "type": "Identifier", + "type": "Identifier" + }, + "start": 143, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 149, + "start": 135, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 130, + "type": "VariableDeclarator" + } + ], + "end": 149, + "kind": "const", + "start": 130, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 172, + "id": { + "end": 154, + "name": "p3", + "start": 152, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 163, + "left": { + "end": 159, + "name": "l", + "start": 158, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 163, + "name": "x", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "start": 158, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 171, + "left": { + "argument": { + "end": 167, + "name": "l", + "start": 166, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 165, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 171, + "name": "y", + "start": 170, + "type": "Identifier", + "type": "Identifier" + }, + "start": 165, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 172, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 152, + "type": "VariableDeclarator" + } + ], + "end": 172, + "kind": "const", + "start": 152, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 199, + "name": "p0", + "start": 197, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 196, + "name": "startSketchAt", + "start": 183, + "type": "Identifier" + }, + "end": 200, + "optional": false, + "start": 183, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 215, + "name": "p1", + "start": 213, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 218, + "start": 217, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 212, + "name": "lineTo", + "start": 206, + "type": "Identifier" + }, + "end": 219, + "optional": false, + "start": 206, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 234, + "name": "p2", + "start": 232, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 237, + "start": 236, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 231, + "name": "lineTo", + "start": 225, + "type": "Identifier" + }, + "end": 238, + "optional": false, + "start": 225, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 253, + "name": "p3", + "start": 251, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 256, + "start": 255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 250, + "name": "lineTo", + "start": 244, + "type": "Identifier" + }, + "end": 257, + "optional": false, + "start": 244, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 272, + "name": "p0", + "start": 270, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 275, + "start": 274, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 269, + "name": "lineTo", + "start": 263, + "type": "Identifier" + }, + "end": 276, + "optional": false, + "start": 263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 289, + "start": 288, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 287, + "name": "close", + "start": 282, + "type": "Identifier" + }, + "end": 290, + "optional": false, + "start": 282, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 310, + "name": "length", + "start": 304, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 313, + "start": 312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 303, + "name": "extrude", + "start": 296, + "type": "Identifier" + }, + "end": 314, + "optional": false, + "start": 296, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 314, + "start": 183, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "end": 314, + "start": 176, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 316, + "nonCodeMeta": { + "nonCodeNodes": { + "6": [ + { + "end": 176, + "start": 172, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 30 + }, + "end": 316, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 17, + "name": "length", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 25, + "name": "center", + "start": 19, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 3, + "type": "VariableDeclarator" + } + ], + "end": 316, + "kind": "fn", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 355, + "id": { + "end": 327, + "name": "double", + "start": 321, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "argument": { + "end": 353, + "left": { + "end": 349, + "name": "x", + "start": 348, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 353, + "raw": "2", + "start": 352, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 348, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 353, + "start": 341, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 355, + "start": 337 + }, + "end": 355, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 332, + "name": "x", + "start": 331, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 330, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 321, + "type": "VariableDeclarator" + } + ], + "end": 355, + "kind": "fn", + "start": 318, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 389, + "id": { + "end": 364, + "name": "width", + "start": 359, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "argument": { + "end": 387, + "raw": "200", + "start": 384, + "type": "Literal", + "type": "Literal", + "value": 200 + }, + "end": 387, + "start": 377, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 389, + "start": 373 + }, + "end": 389, + "params": [], + "start": 367, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 359, + "type": "VariableDeclarator" + } + ], + "end": 389, + "kind": "fn", + "start": 356, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 432, + "id": { + "end": 397, + "name": "myCube", + "start": 391, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "body": [ + { + "end": 408, + "raw": "200", + "start": 405, + "type": "Literal", + "type": "Literal", + "value": 200 + }, + { + "arguments": [ + { + "end": 422, + "start": 421, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 420, + "name": "double", + "start": 414, + "type": "Identifier" + }, + "end": 423, + "optional": false, + "start": 414, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 423, + "start": 405, + "type": "PipeExpression", + "type": "PipeExpression" + }, + { + "elements": [ + { + "end": 427, + "raw": "0", + "start": 426, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 430, + "raw": "0", + "start": 429, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 431, + "start": 425, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + ], + "callee": { + "end": 404, + "name": "cube", + "start": 400, + "type": "Identifier" + }, + "end": 432, + "optional": false, + "start": 400, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 391, + "type": "VariableDeclarator" + } + ], + "end": 432, + "kind": "const", + "start": 391, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 433, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 318, + "start": 316, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "2": [ + { + "end": 391, + "start": 389, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/input.kcl b/src/wasm-lib/kcl/tests/pipe_as_arg/input.kcl new file mode 100644 index 000000000..e3dd58a75 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/input.kcl @@ -0,0 +1,27 @@ +fn cube = (length, center) => { + l = length / 2 + x = center[0] + y = center[1] + p0 = [-l + x, -l + y] + p1 = [-l + x, l + y] + p2 = [l + x, l + y] + p3 = [l + x, -l + y] + + return startSketchAt(p0) + |> lineTo(p1, %) + |> lineTo(p2, %) + |> lineTo(p3, %) + |> lineTo(p0, %) + |> close(%) + |> extrude(length, %) +} + +fn double = (x) => { + return x * 2 +} +fn width = () => { + return 200 +} + +myCube = cube(200 + |> double(%), [0, 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 new file mode 100644 index 000000000..a03ca586a --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap @@ -0,0 +1,3404 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing pipe_as_arg.kcl +snapshot_kind: text +--- +{ + "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": [ + { + "declarations": [ + { + "end": 48, + "id": { + "end": 35, + "name": "l", + "start": 34, + "type": "Identifier" + }, + "init": { + "end": 48, + "left": { + "end": 44, + "name": "length", + "start": 38, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 48, + "raw": "2", + "start": 47, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 38, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 34, + "type": "VariableDeclarator" + } + ], + "end": 48, + "kind": "const", + "start": 34, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 64, + "id": { + "end": 52, + "name": "x", + "start": 51, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 64, + "object": { + "end": 61, + "name": "center", + "start": 55, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 63, + "raw": "0", + "start": 62, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 55, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 51, + "type": "VariableDeclarator" + } + ], + "end": 64, + "kind": "const", + "start": 51, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 80, + "id": { + "end": 68, + "name": "y", + "start": 67, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 80, + "object": { + "end": 77, + "name": "center", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 79, + "raw": "1", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 71, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 67, + "type": "VariableDeclarator" + } + ], + "end": 80, + "kind": "const", + "start": 67, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 104, + "id": { + "end": 85, + "name": "p0", + "start": 83, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 95, + "left": { + "argument": { + "end": 91, + "name": "l", + "start": 90, + "type": "Identifier", + "type": "Identifier" + }, + "end": 91, + "operator": "-", + "start": 89, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 95, + "name": "x", + "start": 94, + "type": "Identifier", + "type": "Identifier" + }, + "start": 89, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 103, + "left": { + "argument": { + "end": 99, + "name": "l", + "start": 98, + "type": "Identifier", + "type": "Identifier" + }, + "end": 99, + "operator": "-", + "start": 97, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 103, + "name": "y", + "start": 102, + "type": "Identifier", + "type": "Identifier" + }, + "start": 97, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 104, + "start": 88, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 83, + "type": "VariableDeclarator" + } + ], + "end": 104, + "kind": "const", + "start": 83, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 127, + "id": { + "end": 109, + "name": "p1", + "start": 107, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 119, + "left": { + "argument": { + "end": 115, + "name": "l", + "start": 114, + "type": "Identifier", + "type": "Identifier" + }, + "end": 115, + "operator": "-", + "start": 113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 119, + "name": "x", + "start": 118, + "type": "Identifier", + "type": "Identifier" + }, + "start": 113, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 126, + "left": { + "end": 122, + "name": "l", + "start": 121, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 126, + "name": "y", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + "start": 121, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 127, + "start": 112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 107, + "type": "VariableDeclarator" + } + ], + "end": 127, + "kind": "const", + "start": 107, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 149, + "id": { + "end": 132, + "name": "p2", + "start": 130, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 141, + "left": { + "end": 137, + "name": "l", + "start": 136, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 141, + "name": "x", + "start": 140, + "type": "Identifier", + "type": "Identifier" + }, + "start": 136, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 148, + "left": { + "end": 144, + "name": "l", + "start": 143, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 148, + "name": "y", + "start": 147, + "type": "Identifier", + "type": "Identifier" + }, + "start": 143, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 149, + "start": 135, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 130, + "type": "VariableDeclarator" + } + ], + "end": 149, + "kind": "const", + "start": 130, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 172, + "id": { + "end": 154, + "name": "p3", + "start": 152, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 163, + "left": { + "end": 159, + "name": "l", + "start": 158, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 163, + "name": "x", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "start": 158, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 171, + "left": { + "argument": { + "end": 167, + "name": "l", + "start": 166, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 165, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 171, + "name": "y", + "start": 170, + "type": "Identifier", + "type": "Identifier" + }, + "start": 165, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 172, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 152, + "type": "VariableDeclarator" + } + ], + "end": 172, + "kind": "const", + "start": 152, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 199, + "name": "p0", + "start": 197, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 196, + "name": "startSketchAt", + "start": 183, + "type": "Identifier" + }, + "end": 200, + "optional": false, + "start": 183, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 215, + "name": "p1", + "start": 213, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 218, + "start": 217, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 212, + "name": "lineTo", + "start": 206, + "type": "Identifier" + }, + "end": 219, + "optional": false, + "start": 206, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 234, + "name": "p2", + "start": 232, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 237, + "start": 236, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 231, + "name": "lineTo", + "start": 225, + "type": "Identifier" + }, + "end": 238, + "optional": false, + "start": 225, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 253, + "name": "p3", + "start": 251, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 256, + "start": 255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 250, + "name": "lineTo", + "start": 244, + "type": "Identifier" + }, + "end": 257, + "optional": false, + "start": 244, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 272, + "name": "p0", + "start": 270, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 275, + "start": 274, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 269, + "name": "lineTo", + "start": 263, + "type": "Identifier" + }, + "end": 276, + "optional": false, + "start": 263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 289, + "start": 288, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 287, + "name": "close", + "start": 282, + "type": "Identifier" + }, + "end": 290, + "optional": false, + "start": 282, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 310, + "name": "length", + "start": 304, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 313, + "start": 312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 303, + "name": "extrude", + "start": 296, + "type": "Identifier" + }, + "end": 314, + "optional": false, + "start": 296, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 314, + "start": 183, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "end": 314, + "start": 176, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 316, + "nonCodeMeta": { + "nonCodeNodes": { + "6": [ + { + "end": 176, + "start": 172, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 30 + }, + "end": 316, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 17, + "name": "length", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 25, + "name": "center", + "start": 19, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 316, + 0 + ] + } + ] + }, + "double": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 353, + "left": { + "end": 349, + "name": "x", + "start": 348, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 353, + "raw": "2", + "start": 352, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 348, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 353, + "start": 341, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 355, + "start": 337 + }, + "end": 355, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 332, + "name": "x", + "start": 331, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 330, + "type": "FunctionExpression" + }, + "memory": { + "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": [ + { + "declarations": [ + { + "end": 48, + "id": { + "end": 35, + "name": "l", + "start": 34, + "type": "Identifier" + }, + "init": { + "end": 48, + "left": { + "end": 44, + "name": "length", + "start": 38, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 48, + "raw": "2", + "start": 47, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 38, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 34, + "type": "VariableDeclarator" + } + ], + "end": 48, + "kind": "const", + "start": 34, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 64, + "id": { + "end": 52, + "name": "x", + "start": 51, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 64, + "object": { + "end": 61, + "name": "center", + "start": 55, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 63, + "raw": "0", + "start": 62, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 55, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 51, + "type": "VariableDeclarator" + } + ], + "end": 64, + "kind": "const", + "start": 51, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 80, + "id": { + "end": 68, + "name": "y", + "start": 67, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 80, + "object": { + "end": 77, + "name": "center", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 79, + "raw": "1", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 71, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 67, + "type": "VariableDeclarator" + } + ], + "end": 80, + "kind": "const", + "start": 67, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 104, + "id": { + "end": 85, + "name": "p0", + "start": 83, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 95, + "left": { + "argument": { + "end": 91, + "name": "l", + "start": 90, + "type": "Identifier", + "type": "Identifier" + }, + "end": 91, + "operator": "-", + "start": 89, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 95, + "name": "x", + "start": 94, + "type": "Identifier", + "type": "Identifier" + }, + "start": 89, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 103, + "left": { + "argument": { + "end": 99, + "name": "l", + "start": 98, + "type": "Identifier", + "type": "Identifier" + }, + "end": 99, + "operator": "-", + "start": 97, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 103, + "name": "y", + "start": 102, + "type": "Identifier", + "type": "Identifier" + }, + "start": 97, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 104, + "start": 88, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 83, + "type": "VariableDeclarator" + } + ], + "end": 104, + "kind": "const", + "start": 83, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 127, + "id": { + "end": 109, + "name": "p1", + "start": 107, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 119, + "left": { + "argument": { + "end": 115, + "name": "l", + "start": 114, + "type": "Identifier", + "type": "Identifier" + }, + "end": 115, + "operator": "-", + "start": 113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 119, + "name": "x", + "start": 118, + "type": "Identifier", + "type": "Identifier" + }, + "start": 113, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 126, + "left": { + "end": 122, + "name": "l", + "start": 121, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 126, + "name": "y", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + "start": 121, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 127, + "start": 112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 107, + "type": "VariableDeclarator" + } + ], + "end": 127, + "kind": "const", + "start": 107, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 149, + "id": { + "end": 132, + "name": "p2", + "start": 130, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 141, + "left": { + "end": 137, + "name": "l", + "start": 136, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 141, + "name": "x", + "start": 140, + "type": "Identifier", + "type": "Identifier" + }, + "start": 136, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 148, + "left": { + "end": 144, + "name": "l", + "start": 143, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 148, + "name": "y", + "start": 147, + "type": "Identifier", + "type": "Identifier" + }, + "start": 143, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 149, + "start": 135, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 130, + "type": "VariableDeclarator" + } + ], + "end": 149, + "kind": "const", + "start": 130, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 172, + "id": { + "end": 154, + "name": "p3", + "start": 152, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 163, + "left": { + "end": 159, + "name": "l", + "start": 158, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 163, + "name": "x", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "start": 158, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 171, + "left": { + "argument": { + "end": 167, + "name": "l", + "start": 166, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 165, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 171, + "name": "y", + "start": 170, + "type": "Identifier", + "type": "Identifier" + }, + "start": 165, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 172, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 152, + "type": "VariableDeclarator" + } + ], + "end": 172, + "kind": "const", + "start": 152, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 199, + "name": "p0", + "start": 197, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 196, + "name": "startSketchAt", + "start": 183, + "type": "Identifier" + }, + "end": 200, + "optional": false, + "start": 183, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 215, + "name": "p1", + "start": 213, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 218, + "start": 217, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 212, + "name": "lineTo", + "start": 206, + "type": "Identifier" + }, + "end": 219, + "optional": false, + "start": 206, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 234, + "name": "p2", + "start": 232, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 237, + "start": 236, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 231, + "name": "lineTo", + "start": 225, + "type": "Identifier" + }, + "end": 238, + "optional": false, + "start": 225, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 253, + "name": "p3", + "start": 251, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 256, + "start": 255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 250, + "name": "lineTo", + "start": 244, + "type": "Identifier" + }, + "end": 257, + "optional": false, + "start": 244, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 272, + "name": "p0", + "start": 270, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 275, + "start": 274, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 269, + "name": "lineTo", + "start": 263, + "type": "Identifier" + }, + "end": 276, + "optional": false, + "start": 263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 289, + "start": 288, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 287, + "name": "close", + "start": 282, + "type": "Identifier" + }, + "end": 290, + "optional": false, + "start": 282, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 310, + "name": "length", + "start": 304, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 313, + "start": 312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 303, + "name": "extrude", + "start": 296, + "type": "Identifier" + }, + "end": 314, + "optional": false, + "start": 296, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 314, + "start": 183, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "end": 314, + "start": 176, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 316, + "nonCodeMeta": { + "nonCodeNodes": { + "6": [ + { + "end": 176, + "start": 172, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 30 + }, + "end": 316, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 17, + "name": "length", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 25, + "name": "center", + "start": 19, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 316, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 330, + 355, + 0 + ] + } + ] + }, + "myCube": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 206, + 219, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 225, + 238, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 244, + 257, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 263, + 276, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 206, + 219, + 0 + ] + }, + "from": [ + -200.0, + -200.0 + ], + "tag": null, + "to": [ + -200.0, + 200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 225, + 238, + 0 + ] + }, + "from": [ + -200.0, + 200.0 + ], + "tag": null, + "to": [ + 200.0, + 200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 244, + 257, + 0 + ] + }, + "from": [ + 200.0, + 200.0 + ], + "tag": null, + "to": [ + 200.0, + -200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 263, + 276, + 0 + ] + }, + "from": [ + 200.0, + -200.0 + ], + "tag": null, + "to": [ + -200.0, + -200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 282, + 290, + 0 + ] + }, + "from": [ + -200.0, + -200.0 + ], + "tag": null, + "to": [ + -200.0, + -200.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + -200.0, + -200.0 + ], + "to": [ + -200.0, + -200.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 183, + 200, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 183, + 200, + 0 + ] + } + ] + }, + "height": 400.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 183, + 200, + 0 + ] + } + ] + }, + "width": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 387, + "raw": "200", + "start": 384, + "type": "Literal", + "type": "Literal", + "value": 200 + }, + "end": 387, + "start": 377, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 389, + "start": 373 + }, + "end": 389, + "params": [], + "start": 367, + "type": "FunctionExpression" + }, + "memory": { + "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": [ + { + "declarations": [ + { + "end": 48, + "id": { + "end": 35, + "name": "l", + "start": 34, + "type": "Identifier" + }, + "init": { + "end": 48, + "left": { + "end": 44, + "name": "length", + "start": 38, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 48, + "raw": "2", + "start": 47, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 38, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 34, + "type": "VariableDeclarator" + } + ], + "end": 48, + "kind": "const", + "start": 34, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 64, + "id": { + "end": 52, + "name": "x", + "start": 51, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 64, + "object": { + "end": 61, + "name": "center", + "start": 55, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 63, + "raw": "0", + "start": 62, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 55, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 51, + "type": "VariableDeclarator" + } + ], + "end": 64, + "kind": "const", + "start": 51, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 80, + "id": { + "end": 68, + "name": "y", + "start": 67, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 80, + "object": { + "end": 77, + "name": "center", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 79, + "raw": "1", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 71, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 67, + "type": "VariableDeclarator" + } + ], + "end": 80, + "kind": "const", + "start": 67, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 104, + "id": { + "end": 85, + "name": "p0", + "start": 83, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 95, + "left": { + "argument": { + "end": 91, + "name": "l", + "start": 90, + "type": "Identifier", + "type": "Identifier" + }, + "end": 91, + "operator": "-", + "start": 89, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 95, + "name": "x", + "start": 94, + "type": "Identifier", + "type": "Identifier" + }, + "start": 89, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 103, + "left": { + "argument": { + "end": 99, + "name": "l", + "start": 98, + "type": "Identifier", + "type": "Identifier" + }, + "end": 99, + "operator": "-", + "start": 97, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 103, + "name": "y", + "start": 102, + "type": "Identifier", + "type": "Identifier" + }, + "start": 97, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 104, + "start": 88, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 83, + "type": "VariableDeclarator" + } + ], + "end": 104, + "kind": "const", + "start": 83, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 127, + "id": { + "end": 109, + "name": "p1", + "start": 107, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 119, + "left": { + "argument": { + "end": 115, + "name": "l", + "start": 114, + "type": "Identifier", + "type": "Identifier" + }, + "end": 115, + "operator": "-", + "start": 113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 119, + "name": "x", + "start": 118, + "type": "Identifier", + "type": "Identifier" + }, + "start": 113, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 126, + "left": { + "end": 122, + "name": "l", + "start": 121, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 126, + "name": "y", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + "start": 121, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 127, + "start": 112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 107, + "type": "VariableDeclarator" + } + ], + "end": 127, + "kind": "const", + "start": 107, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 149, + "id": { + "end": 132, + "name": "p2", + "start": 130, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 141, + "left": { + "end": 137, + "name": "l", + "start": 136, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 141, + "name": "x", + "start": 140, + "type": "Identifier", + "type": "Identifier" + }, + "start": 136, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 148, + "left": { + "end": 144, + "name": "l", + "start": 143, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 148, + "name": "y", + "start": 147, + "type": "Identifier", + "type": "Identifier" + }, + "start": 143, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 149, + "start": 135, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 130, + "type": "VariableDeclarator" + } + ], + "end": 149, + "kind": "const", + "start": 130, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 172, + "id": { + "end": 154, + "name": "p3", + "start": 152, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 163, + "left": { + "end": 159, + "name": "l", + "start": 158, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 163, + "name": "x", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "start": 158, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 171, + "left": { + "argument": { + "end": 167, + "name": "l", + "start": 166, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 165, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 171, + "name": "y", + "start": 170, + "type": "Identifier", + "type": "Identifier" + }, + "start": 165, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 172, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 152, + "type": "VariableDeclarator" + } + ], + "end": 172, + "kind": "const", + "start": 152, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 199, + "name": "p0", + "start": 197, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 196, + "name": "startSketchAt", + "start": 183, + "type": "Identifier" + }, + "end": 200, + "optional": false, + "start": 183, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 215, + "name": "p1", + "start": 213, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 218, + "start": 217, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 212, + "name": "lineTo", + "start": 206, + "type": "Identifier" + }, + "end": 219, + "optional": false, + "start": 206, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 234, + "name": "p2", + "start": 232, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 237, + "start": 236, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 231, + "name": "lineTo", + "start": 225, + "type": "Identifier" + }, + "end": 238, + "optional": false, + "start": 225, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 253, + "name": "p3", + "start": 251, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 256, + "start": 255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 250, + "name": "lineTo", + "start": 244, + "type": "Identifier" + }, + "end": 257, + "optional": false, + "start": 244, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 272, + "name": "p0", + "start": 270, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 275, + "start": 274, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 269, + "name": "lineTo", + "start": 263, + "type": "Identifier" + }, + "end": 276, + "optional": false, + "start": 263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 289, + "start": 288, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 287, + "name": "close", + "start": 282, + "type": "Identifier" + }, + "end": 290, + "optional": false, + "start": 282, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 310, + "name": "length", + "start": 304, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 313, + "start": 312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 303, + "name": "extrude", + "start": 296, + "type": "Identifier" + }, + "end": 314, + "optional": false, + "start": 296, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 314, + "start": 183, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "end": 314, + "start": 176, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 316, + "nonCodeMeta": { + "nonCodeNodes": { + "6": [ + { + "end": 176, + "start": 172, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 30 + }, + "end": 316, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 17, + "name": "length", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 25, + "name": "center", + "start": 19, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 316, + 0 + ] + } + ] + }, + "double": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 353, + "left": { + "end": 349, + "name": "x", + "start": 348, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 353, + "raw": "2", + "start": 352, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 348, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 353, + "start": 341, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 355, + "start": 337 + }, + "end": 355, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 332, + "name": "x", + "start": 331, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 330, + "type": "FunctionExpression" + }, + "memory": { + "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": [ + { + "declarations": [ + { + "end": 48, + "id": { + "end": 35, + "name": "l", + "start": 34, + "type": "Identifier" + }, + "init": { + "end": 48, + "left": { + "end": 44, + "name": "length", + "start": 38, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 48, + "raw": "2", + "start": 47, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 38, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 34, + "type": "VariableDeclarator" + } + ], + "end": 48, + "kind": "const", + "start": 34, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 64, + "id": { + "end": 52, + "name": "x", + "start": 51, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 64, + "object": { + "end": 61, + "name": "center", + "start": 55, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 63, + "raw": "0", + "start": 62, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 55, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 51, + "type": "VariableDeclarator" + } + ], + "end": 64, + "kind": "const", + "start": 51, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 80, + "id": { + "end": 68, + "name": "y", + "start": 67, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 80, + "object": { + "end": 77, + "name": "center", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 79, + "raw": "1", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 71, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 67, + "type": "VariableDeclarator" + } + ], + "end": 80, + "kind": "const", + "start": 67, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 104, + "id": { + "end": 85, + "name": "p0", + "start": 83, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 95, + "left": { + "argument": { + "end": 91, + "name": "l", + "start": 90, + "type": "Identifier", + "type": "Identifier" + }, + "end": 91, + "operator": "-", + "start": 89, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 95, + "name": "x", + "start": 94, + "type": "Identifier", + "type": "Identifier" + }, + "start": 89, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 103, + "left": { + "argument": { + "end": 99, + "name": "l", + "start": 98, + "type": "Identifier", + "type": "Identifier" + }, + "end": 99, + "operator": "-", + "start": 97, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 103, + "name": "y", + "start": 102, + "type": "Identifier", + "type": "Identifier" + }, + "start": 97, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 104, + "start": 88, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 83, + "type": "VariableDeclarator" + } + ], + "end": 104, + "kind": "const", + "start": 83, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 127, + "id": { + "end": 109, + "name": "p1", + "start": 107, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 119, + "left": { + "argument": { + "end": 115, + "name": "l", + "start": 114, + "type": "Identifier", + "type": "Identifier" + }, + "end": 115, + "operator": "-", + "start": 113, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 119, + "name": "x", + "start": 118, + "type": "Identifier", + "type": "Identifier" + }, + "start": 113, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 126, + "left": { + "end": 122, + "name": "l", + "start": 121, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 126, + "name": "y", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + "start": 121, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 127, + "start": 112, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 107, + "type": "VariableDeclarator" + } + ], + "end": 127, + "kind": "const", + "start": 107, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 149, + "id": { + "end": 132, + "name": "p2", + "start": 130, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 141, + "left": { + "end": 137, + "name": "l", + "start": 136, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 141, + "name": "x", + "start": 140, + "type": "Identifier", + "type": "Identifier" + }, + "start": 136, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 148, + "left": { + "end": 144, + "name": "l", + "start": 143, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 148, + "name": "y", + "start": 147, + "type": "Identifier", + "type": "Identifier" + }, + "start": 143, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 149, + "start": 135, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 130, + "type": "VariableDeclarator" + } + ], + "end": 149, + "kind": "const", + "start": 130, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 172, + "id": { + "end": 154, + "name": "p3", + "start": 152, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 163, + "left": { + "end": 159, + "name": "l", + "start": 158, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 163, + "name": "x", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "start": 158, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 171, + "left": { + "argument": { + "end": 167, + "name": "l", + "start": 166, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 165, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 171, + "name": "y", + "start": 170, + "type": "Identifier", + "type": "Identifier" + }, + "start": 165, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 172, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 152, + "type": "VariableDeclarator" + } + ], + "end": 172, + "kind": "const", + "start": 152, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 199, + "name": "p0", + "start": 197, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 196, + "name": "startSketchAt", + "start": 183, + "type": "Identifier" + }, + "end": 200, + "optional": false, + "start": 183, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 215, + "name": "p1", + "start": 213, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 218, + "start": 217, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 212, + "name": "lineTo", + "start": 206, + "type": "Identifier" + }, + "end": 219, + "optional": false, + "start": 206, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 234, + "name": "p2", + "start": 232, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 237, + "start": 236, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 231, + "name": "lineTo", + "start": 225, + "type": "Identifier" + }, + "end": 238, + "optional": false, + "start": 225, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 253, + "name": "p3", + "start": 251, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 256, + "start": 255, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 250, + "name": "lineTo", + "start": 244, + "type": "Identifier" + }, + "end": 257, + "optional": false, + "start": 244, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 272, + "name": "p0", + "start": 270, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 275, + "start": 274, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 269, + "name": "lineTo", + "start": 263, + "type": "Identifier" + }, + "end": 276, + "optional": false, + "start": 263, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 289, + "start": 288, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 287, + "name": "close", + "start": 282, + "type": "Identifier" + }, + "end": 290, + "optional": false, + "start": 282, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 310, + "name": "length", + "start": 304, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 313, + "start": 312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 303, + "name": "extrude", + "start": 296, + "type": "Identifier" + }, + "end": 314, + "optional": false, + "start": 296, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 314, + "start": 183, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "end": 314, + "start": 176, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 316, + "nonCodeMeta": { + "nonCodeNodes": { + "6": [ + { + "end": 176, + "start": 172, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 30 + }, + "end": 316, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 17, + "name": "length", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 25, + "name": "center", + "start": 19, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 316, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 330, + 355, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 367, + 389, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/rendered_model.png b/src/wasm-lib/kcl/tests/pipe_as_arg/rendered_model.png new file mode 100644 index 000000000..33b50b88c Binary files /dev/null and b/src/wasm-lib/kcl/tests/pipe_as_arg/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/tokens.snap b/src/wasm-lib/kcl/tests/pipe_as_arg/tokens.snap new file mode 100644 index 000000000..c360fe4b5 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/tokens.snap @@ -0,0 +1,1557 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing pipe_as_arg.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 2, + "value": "fn" + }, + { + "type": "whitespace", + "start": 2, + "end": 3, + "value": " " + }, + { + "type": "word", + "start": 3, + "end": 7, + "value": "cube" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "brace", + "start": 10, + "end": 11, + "value": "(" + }, + { + "type": "word", + "start": 11, + "end": 17, + "value": "length" + }, + { + "type": "comma", + "start": 17, + "end": 18, + "value": "," + }, + { + "type": "whitespace", + "start": 18, + "end": 19, + "value": " " + }, + { + "type": "word", + "start": 19, + "end": 25, + "value": "center" + }, + { + "type": "brace", + "start": 25, + "end": 26, + "value": ")" + }, + { + "type": "whitespace", + "start": 26, + "end": 27, + "value": " " + }, + { + "type": "operator", + "start": 27, + "end": 29, + "value": "=>" + }, + { + "type": "whitespace", + "start": 29, + "end": 30, + "value": " " + }, + { + "type": "brace", + "start": 30, + "end": 31, + "value": "{" + }, + { + "type": "whitespace", + "start": 31, + "end": 34, + "value": "\n " + }, + { + "type": "word", + "start": 34, + "end": 35, + "value": "l" + }, + { + "type": "whitespace", + "start": 35, + "end": 36, + "value": " " + }, + { + "type": "operator", + "start": 36, + "end": 37, + "value": "=" + }, + { + "type": "whitespace", + "start": 37, + "end": 38, + "value": " " + }, + { + "type": "word", + "start": 38, + "end": 44, + "value": "length" + }, + { + "type": "whitespace", + "start": 44, + "end": 45, + "value": " " + }, + { + "type": "operator", + "start": 45, + "end": 46, + "value": "/" + }, + { + "type": "whitespace", + "start": 46, + "end": 47, + "value": " " + }, + { + "type": "number", + "start": 47, + "end": 48, + "value": "2" + }, + { + "type": "whitespace", + "start": 48, + "end": 51, + "value": "\n " + }, + { + "type": "word", + "start": 51, + "end": 52, + "value": "x" + }, + { + "type": "whitespace", + "start": 52, + "end": 53, + "value": " " + }, + { + "type": "operator", + "start": 53, + "end": 54, + "value": "=" + }, + { + "type": "whitespace", + "start": 54, + "end": 55, + "value": " " + }, + { + "type": "word", + "start": 55, + "end": 61, + "value": "center" + }, + { + "type": "brace", + "start": 61, + "end": 62, + "value": "[" + }, + { + "type": "number", + "start": 62, + "end": 63, + "value": "0" + }, + { + "type": "brace", + "start": 63, + "end": 64, + "value": "]" + }, + { + "type": "whitespace", + "start": 64, + "end": 67, + "value": "\n " + }, + { + "type": "word", + "start": 67, + "end": 68, + "value": "y" + }, + { + "type": "whitespace", + "start": 68, + "end": 69, + "value": " " + }, + { + "type": "operator", + "start": 69, + "end": 70, + "value": "=" + }, + { + "type": "whitespace", + "start": 70, + "end": 71, + "value": " " + }, + { + "type": "word", + "start": 71, + "end": 77, + "value": "center" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "[" + }, + { + "type": "number", + "start": 78, + "end": 79, + "value": "1" + }, + { + "type": "brace", + "start": 79, + "end": 80, + "value": "]" + }, + { + "type": "whitespace", + "start": 80, + "end": 83, + "value": "\n " + }, + { + "type": "word", + "start": 83, + "end": 85, + "value": "p0" + }, + { + "type": "whitespace", + "start": 85, + "end": 86, + "value": " " + }, + { + "type": "operator", + "start": 86, + "end": 87, + "value": "=" + }, + { + "type": "whitespace", + "start": 87, + "end": 88, + "value": " " + }, + { + "type": "brace", + "start": 88, + "end": 89, + "value": "[" + }, + { + "type": "operator", + "start": 89, + "end": 90, + "value": "-" + }, + { + "type": "word", + "start": 90, + "end": 91, + "value": "l" + }, + { + "type": "whitespace", + "start": 91, + "end": 92, + "value": " " + }, + { + "type": "operator", + "start": 92, + "end": 93, + "value": "+" + }, + { + "type": "whitespace", + "start": 93, + "end": 94, + "value": " " + }, + { + "type": "word", + "start": 94, + "end": 95, + "value": "x" + }, + { + "type": "comma", + "start": 95, + "end": 96, + "value": "," + }, + { + "type": "whitespace", + "start": 96, + "end": 97, + "value": " " + }, + { + "type": "operator", + "start": 97, + "end": 98, + "value": "-" + }, + { + "type": "word", + "start": 98, + "end": 99, + "value": "l" + }, + { + "type": "whitespace", + "start": 99, + "end": 100, + "value": " " + }, + { + "type": "operator", + "start": 100, + "end": 101, + "value": "+" + }, + { + "type": "whitespace", + "start": 101, + "end": 102, + "value": " " + }, + { + "type": "word", + "start": 102, + "end": 103, + "value": "y" + }, + { + "type": "brace", + "start": 103, + "end": 104, + "value": "]" + }, + { + "type": "whitespace", + "start": 104, + "end": 107, + "value": "\n " + }, + { + "type": "word", + "start": 107, + "end": 109, + "value": "p1" + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "operator", + "start": 110, + "end": 111, + "value": "=" + }, + { + "type": "whitespace", + "start": 111, + "end": 112, + "value": " " + }, + { + "type": "brace", + "start": 112, + "end": 113, + "value": "[" + }, + { + "type": "operator", + "start": 113, + "end": 114, + "value": "-" + }, + { + "type": "word", + "start": 114, + "end": 115, + "value": "l" + }, + { + "type": "whitespace", + "start": 115, + "end": 116, + "value": " " + }, + { + "type": "operator", + "start": 116, + "end": 117, + "value": "+" + }, + { + "type": "whitespace", + "start": 117, + "end": 118, + "value": " " + }, + { + "type": "word", + "start": 118, + "end": 119, + "value": "x" + }, + { + "type": "comma", + "start": 119, + "end": 120, + "value": "," + }, + { + "type": "whitespace", + "start": 120, + "end": 121, + "value": " " + }, + { + "type": "word", + "start": 121, + "end": 122, + "value": "l" + }, + { + "type": "whitespace", + "start": 122, + "end": 123, + "value": " " + }, + { + "type": "operator", + "start": 123, + "end": 124, + "value": "+" + }, + { + "type": "whitespace", + "start": 124, + "end": 125, + "value": " " + }, + { + "type": "word", + "start": 125, + "end": 126, + "value": "y" + }, + { + "type": "brace", + "start": 126, + "end": 127, + "value": "]" + }, + { + "type": "whitespace", + "start": 127, + "end": 130, + "value": "\n " + }, + { + "type": "word", + "start": 130, + "end": 132, + "value": "p2" + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "operator", + "start": 133, + "end": 134, + "value": "=" + }, + { + "type": "whitespace", + "start": 134, + "end": 135, + "value": " " + }, + { + "type": "brace", + "start": 135, + "end": 136, + "value": "[" + }, + { + "type": "word", + "start": 136, + "end": 137, + "value": "l" + }, + { + "type": "whitespace", + "start": 137, + "end": 138, + "value": " " + }, + { + "type": "operator", + "start": 138, + "end": 139, + "value": "+" + }, + { + "type": "whitespace", + "start": 139, + "end": 140, + "value": " " + }, + { + "type": "word", + "start": 140, + "end": 141, + "value": "x" + }, + { + "type": "comma", + "start": 141, + "end": 142, + "value": "," + }, + { + "type": "whitespace", + "start": 142, + "end": 143, + "value": " " + }, + { + "type": "word", + "start": 143, + "end": 144, + "value": "l" + }, + { + "type": "whitespace", + "start": 144, + "end": 145, + "value": " " + }, + { + "type": "operator", + "start": 145, + "end": 146, + "value": "+" + }, + { + "type": "whitespace", + "start": 146, + "end": 147, + "value": " " + }, + { + "type": "word", + "start": 147, + "end": 148, + "value": "y" + }, + { + "type": "brace", + "start": 148, + "end": 149, + "value": "]" + }, + { + "type": "whitespace", + "start": 149, + "end": 152, + "value": "\n " + }, + { + "type": "word", + "start": 152, + "end": 154, + "value": "p3" + }, + { + "type": "whitespace", + "start": 154, + "end": 155, + "value": " " + }, + { + "type": "operator", + "start": 155, + "end": 156, + "value": "=" + }, + { + "type": "whitespace", + "start": 156, + "end": 157, + "value": " " + }, + { + "type": "brace", + "start": 157, + "end": 158, + "value": "[" + }, + { + "type": "word", + "start": 158, + "end": 159, + "value": "l" + }, + { + "type": "whitespace", + "start": 159, + "end": 160, + "value": " " + }, + { + "type": "operator", + "start": 160, + "end": 161, + "value": "+" + }, + { + "type": "whitespace", + "start": 161, + "end": 162, + "value": " " + }, + { + "type": "word", + "start": 162, + "end": 163, + "value": "x" + }, + { + "type": "comma", + "start": 163, + "end": 164, + "value": "," + }, + { + "type": "whitespace", + "start": 164, + "end": 165, + "value": " " + }, + { + "type": "operator", + "start": 165, + "end": 166, + "value": "-" + }, + { + "type": "word", + "start": 166, + "end": 167, + "value": "l" + }, + { + "type": "whitespace", + "start": 167, + "end": 168, + "value": " " + }, + { + "type": "operator", + "start": 168, + "end": 169, + "value": "+" + }, + { + "type": "whitespace", + "start": 169, + "end": 170, + "value": " " + }, + { + "type": "word", + "start": 170, + "end": 171, + "value": "y" + }, + { + "type": "brace", + "start": 171, + "end": 172, + "value": "]" + }, + { + "type": "whitespace", + "start": 172, + "end": 176, + "value": "\n\n " + }, + { + "type": "keyword", + "start": 176, + "end": 182, + "value": "return" + }, + { + "type": "whitespace", + "start": 182, + "end": 183, + "value": " " + }, + { + "type": "word", + "start": 183, + "end": 196, + "value": "startSketchAt" + }, + { + "type": "brace", + "start": 196, + "end": 197, + "value": "(" + }, + { + "type": "word", + "start": 197, + "end": 199, + "value": "p0" + }, + { + "type": "brace", + "start": 199, + "end": 200, + "value": ")" + }, + { + "type": "whitespace", + "start": 200, + "end": 203, + "value": "\n " + }, + { + "type": "operator", + "start": 203, + "end": 205, + "value": "|>" + }, + { + "type": "whitespace", + "start": 205, + "end": 206, + "value": " " + }, + { + "type": "word", + "start": 206, + "end": 212, + "value": "lineTo" + }, + { + "type": "brace", + "start": 212, + "end": 213, + "value": "(" + }, + { + "type": "word", + "start": 213, + "end": 215, + "value": "p1" + }, + { + "type": "comma", + "start": 215, + "end": 216, + "value": "," + }, + { + "type": "whitespace", + "start": 216, + "end": 217, + "value": " " + }, + { + "type": "operator", + "start": 217, + "end": 218, + "value": "%" + }, + { + "type": "brace", + "start": 218, + "end": 219, + "value": ")" + }, + { + "type": "whitespace", + "start": 219, + "end": 222, + "value": "\n " + }, + { + "type": "operator", + "start": 222, + "end": 224, + "value": "|>" + }, + { + "type": "whitespace", + "start": 224, + "end": 225, + "value": " " + }, + { + "type": "word", + "start": 225, + "end": 231, + "value": "lineTo" + }, + { + "type": "brace", + "start": 231, + "end": 232, + "value": "(" + }, + { + "type": "word", + "start": 232, + "end": 234, + "value": "p2" + }, + { + "type": "comma", + "start": 234, + "end": 235, + "value": "," + }, + { + "type": "whitespace", + "start": 235, + "end": 236, + "value": " " + }, + { + "type": "operator", + "start": 236, + "end": 237, + "value": "%" + }, + { + "type": "brace", + "start": 237, + "end": 238, + "value": ")" + }, + { + "type": "whitespace", + "start": 238, + "end": 241, + "value": "\n " + }, + { + "type": "operator", + "start": 241, + "end": 243, + "value": "|>" + }, + { + "type": "whitespace", + "start": 243, + "end": 244, + "value": " " + }, + { + "type": "word", + "start": 244, + "end": 250, + "value": "lineTo" + }, + { + "type": "brace", + "start": 250, + "end": 251, + "value": "(" + }, + { + "type": "word", + "start": 251, + "end": 253, + "value": "p3" + }, + { + "type": "comma", + "start": 253, + "end": 254, + "value": "," + }, + { + "type": "whitespace", + "start": 254, + "end": 255, + "value": " " + }, + { + "type": "operator", + "start": 255, + "end": 256, + "value": "%" + }, + { + "type": "brace", + "start": 256, + "end": 257, + "value": ")" + }, + { + "type": "whitespace", + "start": 257, + "end": 260, + "value": "\n " + }, + { + "type": "operator", + "start": 260, + "end": 262, + "value": "|>" + }, + { + "type": "whitespace", + "start": 262, + "end": 263, + "value": " " + }, + { + "type": "word", + "start": 263, + "end": 269, + "value": "lineTo" + }, + { + "type": "brace", + "start": 269, + "end": 270, + "value": "(" + }, + { + "type": "word", + "start": 270, + "end": 272, + "value": "p0" + }, + { + "type": "comma", + "start": 272, + "end": 273, + "value": "," + }, + { + "type": "whitespace", + "start": 273, + "end": 274, + "value": " " + }, + { + "type": "operator", + "start": 274, + "end": 275, + "value": "%" + }, + { + "type": "brace", + "start": 275, + "end": 276, + "value": ")" + }, + { + "type": "whitespace", + "start": 276, + "end": 279, + "value": "\n " + }, + { + "type": "operator", + "start": 279, + "end": 281, + "value": "|>" + }, + { + "type": "whitespace", + "start": 281, + "end": 282, + "value": " " + }, + { + "type": "word", + "start": 282, + "end": 287, + "value": "close" + }, + { + "type": "brace", + "start": 287, + "end": 288, + "value": "(" + }, + { + "type": "operator", + "start": 288, + "end": 289, + "value": "%" + }, + { + "type": "brace", + "start": 289, + "end": 290, + "value": ")" + }, + { + "type": "whitespace", + "start": 290, + "end": 293, + "value": "\n " + }, + { + "type": "operator", + "start": 293, + "end": 295, + "value": "|>" + }, + { + "type": "whitespace", + "start": 295, + "end": 296, + "value": " " + }, + { + "type": "word", + "start": 296, + "end": 303, + "value": "extrude" + }, + { + "type": "brace", + "start": 303, + "end": 304, + "value": "(" + }, + { + "type": "word", + "start": 304, + "end": 310, + "value": "length" + }, + { + "type": "comma", + "start": 310, + "end": 311, + "value": "," + }, + { + "type": "whitespace", + "start": 311, + "end": 312, + "value": " " + }, + { + "type": "operator", + "start": 312, + "end": 313, + "value": "%" + }, + { + "type": "brace", + "start": 313, + "end": 314, + "value": ")" + }, + { + "type": "whitespace", + "start": 314, + "end": 315, + "value": "\n" + }, + { + "type": "brace", + "start": 315, + "end": 316, + "value": "}" + }, + { + "type": "whitespace", + "start": 316, + "end": 318, + "value": "\n\n" + }, + { + "type": "keyword", + "start": 318, + "end": 320, + "value": "fn" + }, + { + "type": "whitespace", + "start": 320, + "end": 321, + "value": " " + }, + { + "type": "word", + "start": 321, + "end": 327, + "value": "double" + }, + { + "type": "whitespace", + "start": 327, + "end": 328, + "value": " " + }, + { + "type": "operator", + "start": 328, + "end": 329, + "value": "=" + }, + { + "type": "whitespace", + "start": 329, + "end": 330, + "value": " " + }, + { + "type": "brace", + "start": 330, + "end": 331, + "value": "(" + }, + { + "type": "word", + "start": 331, + "end": 332, + "value": "x" + }, + { + "type": "brace", + "start": 332, + "end": 333, + "value": ")" + }, + { + "type": "whitespace", + "start": 333, + "end": 334, + "value": " " + }, + { + "type": "operator", + "start": 334, + "end": 336, + "value": "=>" + }, + { + "type": "whitespace", + "start": 336, + "end": 337, + "value": " " + }, + { + "type": "brace", + "start": 337, + "end": 338, + "value": "{" + }, + { + "type": "whitespace", + "start": 338, + "end": 341, + "value": "\n " + }, + { + "type": "keyword", + "start": 341, + "end": 347, + "value": "return" + }, + { + "type": "whitespace", + "start": 347, + "end": 348, + "value": " " + }, + { + "type": "word", + "start": 348, + "end": 349, + "value": "x" + }, + { + "type": "whitespace", + "start": 349, + "end": 350, + "value": " " + }, + { + "type": "operator", + "start": 350, + "end": 351, + "value": "*" + }, + { + "type": "whitespace", + "start": 351, + "end": 352, + "value": " " + }, + { + "type": "number", + "start": 352, + "end": 353, + "value": "2" + }, + { + "type": "whitespace", + "start": 353, + "end": 354, + "value": "\n" + }, + { + "type": "brace", + "start": 354, + "end": 355, + "value": "}" + }, + { + "type": "whitespace", + "start": 355, + "end": 356, + "value": "\n" + }, + { + "type": "keyword", + "start": 356, + "end": 358, + "value": "fn" + }, + { + "type": "whitespace", + "start": 358, + "end": 359, + "value": " " + }, + { + "type": "word", + "start": 359, + "end": 364, + "value": "width" + }, + { + "type": "whitespace", + "start": 364, + "end": 365, + "value": " " + }, + { + "type": "operator", + "start": 365, + "end": 366, + "value": "=" + }, + { + "type": "whitespace", + "start": 366, + "end": 367, + "value": " " + }, + { + "type": "brace", + "start": 367, + "end": 368, + "value": "(" + }, + { + "type": "brace", + "start": 368, + "end": 369, + "value": ")" + }, + { + "type": "whitespace", + "start": 369, + "end": 370, + "value": " " + }, + { + "type": "operator", + "start": 370, + "end": 372, + "value": "=>" + }, + { + "type": "whitespace", + "start": 372, + "end": 373, + "value": " " + }, + { + "type": "brace", + "start": 373, + "end": 374, + "value": "{" + }, + { + "type": "whitespace", + "start": 374, + "end": 377, + "value": "\n " + }, + { + "type": "keyword", + "start": 377, + "end": 383, + "value": "return" + }, + { + "type": "whitespace", + "start": 383, + "end": 384, + "value": " " + }, + { + "type": "number", + "start": 384, + "end": 387, + "value": "200" + }, + { + "type": "whitespace", + "start": 387, + "end": 388, + "value": "\n" + }, + { + "type": "brace", + "start": 388, + "end": 389, + "value": "}" + }, + { + "type": "whitespace", + "start": 389, + "end": 391, + "value": "\n\n" + }, + { + "type": "word", + "start": 391, + "end": 397, + "value": "myCube" + }, + { + "type": "whitespace", + "start": 397, + "end": 398, + "value": " " + }, + { + "type": "operator", + "start": 398, + "end": 399, + "value": "=" + }, + { + "type": "whitespace", + "start": 399, + "end": 400, + "value": " " + }, + { + "type": "word", + "start": 400, + "end": 404, + "value": "cube" + }, + { + "type": "brace", + "start": 404, + "end": 405, + "value": "(" + }, + { + "type": "number", + "start": 405, + "end": 408, + "value": "200" + }, + { + "type": "whitespace", + "start": 408, + "end": 411, + "value": "\n " + }, + { + "type": "operator", + "start": 411, + "end": 413, + "value": "|>" + }, + { + "type": "whitespace", + "start": 413, + "end": 414, + "value": " " + }, + { + "type": "word", + "start": 414, + "end": 420, + "value": "double" + }, + { + "type": "brace", + "start": 420, + "end": 421, + "value": "(" + }, + { + "type": "operator", + "start": 421, + "end": 422, + "value": "%" + }, + { + "type": "brace", + "start": 422, + "end": 423, + "value": ")" + }, + { + "type": "comma", + "start": 423, + "end": 424, + "value": "," + }, + { + "type": "whitespace", + "start": 424, + "end": 425, + "value": " " + }, + { + "type": "brace", + "start": 425, + "end": 426, + "value": "[" + }, + { + "type": "number", + "start": 426, + "end": 427, + "value": "0" + }, + { + "type": "comma", + "start": 427, + "end": 428, + "value": "," + }, + { + "type": "whitespace", + "start": 428, + "end": 429, + "value": " " + }, + { + "type": "number", + "start": 429, + "end": 430, + "value": "0" + }, + { + "type": "brace", + "start": 430, + "end": 431, + "value": "]" + }, + { + "type": "brace", + "start": 431, + "end": 432, + "value": ")" + }, + { + "type": "whitespace", + "start": 432, + "end": 433, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/ast.snap b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/ast.snap new file mode 100644 index 000000000..7228aee14 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/ast.snap @@ -0,0 +1,150 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing pipe_substitution_inside_function_called_from_pipeline.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 95, + "id": { + "end": 65, + "name": "f", + "start": 64, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "argument": { + "end": 93, + "start": 92, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + "end": 93, + "start": 85, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 95, + "start": 81 + }, + "end": 95, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 76, + "name": "ignored", + "start": 69, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 68, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 64, + "type": "VariableDeclarator" + } + ], + "end": 95, + "kind": "fn", + "start": 61, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 117, + "id": { + "end": 103, + "name": "answer", + "start": 97, + "type": "Identifier" + }, + "init": { + "body": [ + { + "end": 107, + "start": 106, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "arguments": [ + { + "end": 116, + "start": 115, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 114, + "name": "f", + "start": 113, + "type": "Identifier" + }, + "end": 117, + "optional": false, + "start": 113, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 117, + "start": 106, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 97, + "type": "VariableDeclarator" + } + ], + "end": 117, + "kind": "const", + "start": 97, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 118, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 97, + "start": 95, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [ + { + "end": 60, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Make sure pipe value doesn't leak into the function call.", + "style": "line" + } + } + ] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/execution_error.snap b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/execution_error.snap new file mode 100644 index 000000000..ddd7dda7a --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/execution_error.snap @@ -0,0 +1,6 @@ +--- +source: kcl/src/simulation_tests.rs +description: Error from executing pipe_substitution_inside_function_called_from_pipeline.kcl +snapshot_kind: text +--- +semantic: KclErrorDetails { source_ranges: [SourceRange([106, 107, 0])], message: "cannot use % outside a pipe expression" } diff --git a/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/input.kcl b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/input.kcl new file mode 100644 index 000000000..379bc2700 --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/input.kcl @@ -0,0 +1,7 @@ +// Make sure pipe value doesn't leak into the function call. +fn f = (ignored) => { + return % +} + +answer = % + |> f(%) diff --git a/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/tokens.snap b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/tokens.snap new file mode 100644 index 000000000..bb7f1f83c --- /dev/null +++ b/src/wasm-lib/kcl/tests/pipe_substitution_inside_function_called_from_pipeline/tokens.snap @@ -0,0 +1,219 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing pipe_substitution_inside_function_called_from_pipeline.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "lineComment", + "start": 0, + "end": 60, + "value": "// Make sure pipe value doesn't leak into the function call." + }, + { + "type": "whitespace", + "start": 60, + "end": 61, + "value": "\n" + }, + { + "type": "keyword", + "start": 61, + "end": 63, + "value": "fn" + }, + { + "type": "whitespace", + "start": 63, + "end": 64, + "value": " " + }, + { + "type": "word", + "start": 64, + "end": 65, + "value": "f" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "operator", + "start": 66, + "end": 67, + "value": "=" + }, + { + "type": "whitespace", + "start": 67, + "end": 68, + "value": " " + }, + { + "type": "brace", + "start": 68, + "end": 69, + "value": "(" + }, + { + "type": "word", + "start": 69, + "end": 76, + "value": "ignored" + }, + { + "type": "brace", + "start": 76, + "end": 77, + "value": ")" + }, + { + "type": "whitespace", + "start": 77, + "end": 78, + "value": " " + }, + { + "type": "operator", + "start": 78, + "end": 80, + "value": "=>" + }, + { + "type": "whitespace", + "start": 80, + "end": 81, + "value": " " + }, + { + "type": "brace", + "start": 81, + "end": 82, + "value": "{" + }, + { + "type": "whitespace", + "start": 82, + "end": 85, + "value": "\n " + }, + { + "type": "keyword", + "start": 85, + "end": 91, + "value": "return" + }, + { + "type": "whitespace", + "start": 91, + "end": 92, + "value": " " + }, + { + "type": "operator", + "start": 92, + "end": 93, + "value": "%" + }, + { + "type": "whitespace", + "start": 93, + "end": 94, + "value": "\n" + }, + { + "type": "brace", + "start": 94, + "end": 95, + "value": "}" + }, + { + "type": "whitespace", + "start": 95, + "end": 97, + "value": "\n\n" + }, + { + "type": "word", + "start": 97, + "end": 103, + "value": "answer" + }, + { + "type": "whitespace", + "start": 103, + "end": 104, + "value": " " + }, + { + "type": "operator", + "start": 104, + "end": 105, + "value": "=" + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "operator", + "start": 106, + "end": 107, + "value": "%" + }, + { + "type": "whitespace", + "start": 107, + "end": 110, + "value": "\n " + }, + { + "type": "operator", + "start": 110, + "end": 112, + "value": "|>" + }, + { + "type": "whitespace", + "start": 112, + "end": 113, + "value": " " + }, + { + "type": "word", + "start": 113, + "end": 114, + "value": "f" + }, + { + "type": "brace", + "start": 114, + "end": 115, + "value": "(" + }, + { + "type": "operator", + "start": 115, + "end": 116, + "value": "%" + }, + { + "type": "brace", + "start": 116, + "end": 117, + "value": ")" + }, + { + "type": "whitespace", + "start": 117, + "end": 118, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/poop_chute/ast.snap b/src/wasm-lib/kcl/tests/poop_chute/ast.snap new file mode 100644 index 000000000..ab047e466 --- /dev/null +++ b/src/wasm-lib/kcl/tests/poop_chute/ast.snap @@ -0,0 +1,2073 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing poop_chute.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 22, + "id": { + "end": 14, + "name": "wall_thickness", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 22, + "raw": "0.125", + "start": 17, + "type": "Literal", + "type": "Literal", + "value": 0.125 + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 22, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 43, + "id": { + "end": 39, + "name": "back_walls_width", + "start": 23, + "type": "Identifier" + }, + "init": { + "end": 43, + "raw": "2", + "start": 42, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 23, + "type": "VariableDeclarator" + } + ], + "end": 43, + "kind": "const", + "start": 23, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 67, + "id": { + "end": 61, + "name": "front_walls_width", + "start": 44, + "type": "Identifier" + }, + "init": { + "end": 67, + "raw": "2.5", + "start": 64, + "type": "Literal", + "type": "Literal", + "value": 2.5 + }, + "start": 44, + "type": "VariableDeclarator" + } + ], + "end": 67, + "kind": "const", + "start": 44, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 80, + "id": { + "end": 74, + "name": "height", + "start": 68, + "type": "Identifier" + }, + "init": { + "end": 80, + "raw": "5.5", + "start": 77, + "type": "Literal", + "type": "Literal", + "value": 5.5 + }, + "start": 68, + "type": "VariableDeclarator" + } + ], + "end": 80, + "kind": "const", + "start": 68, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 101, + "id": { + "end": 93, + "name": "filletRadius", + "start": 81, + "type": "Identifier" + }, + "init": { + "end": 101, + "raw": "0.050", + "start": 96, + "type": "Literal", + "type": "Literal", + "value": 0.05 + }, + "start": 81, + "type": "VariableDeclarator" + } + ], + "end": 101, + "kind": "const", + "start": 81, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 117, + "id": { + "end": 113, + "name": "back_length", + "start": 102, + "type": "Identifier" + }, + "init": { + "end": 117, + "raw": "7", + "start": 116, + "type": "Literal", + "type": "Literal", + "value": 7 + }, + "start": 102, + "type": "VariableDeclarator" + } + ], + "end": 117, + "kind": "const", + "start": 102, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 133, + "id": { + "end": 129, + "name": "exit_height", + "start": 118, + "type": "Identifier" + }, + "init": { + "end": 133, + "raw": "1", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 118, + "type": "VariableDeclarator" + } + ], + "end": 133, + "kind": "const", + "start": 118, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 150, + "id": { + "end": 146, + "name": "front_length", + "start": 134, + "type": "Identifier" + }, + "init": { + "end": 150, + "raw": "6", + "start": 149, + "type": "Literal", + "type": "Literal", + "value": 6 + }, + "start": 134, + "type": "VariableDeclarator" + } + ], + "end": 150, + "kind": "const", + "start": 134, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 159, + "id": { + "end": 153, + "name": "Fx", + "start": 151, + "type": "Identifier" + }, + "init": { + "end": 159, + "raw": "0.5", + "start": 156, + "type": "Literal", + "type": "Literal", + "value": 0.5 + }, + "start": 151, + "type": "VariableDeclarator" + } + ], + "end": 159, + "kind": "const", + "start": 151, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 168, + "id": { + "end": 162, + "name": "Fy", + "start": 160, + "type": "Identifier" + }, + "init": { + "end": 168, + "raw": "0.5", + "start": 165, + "type": "Literal", + "type": "Literal", + "value": 0.5 + }, + "start": 160, + "type": "VariableDeclarator" + } + ], + "end": 168, + "kind": "const", + "start": 160, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 776, + "id": { + "end": 179, + "name": "sketch001", + "start": 170, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 201, + "raw": "'-YZ'", + "start": 196, + "type": "Literal", + "type": "Literal", + "value": "-YZ" + } + ], + "callee": { + "end": 195, + "name": "startSketchOn", + "start": 182, + "type": "Identifier" + }, + "end": 202, + "optional": false, + "start": 182, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 244, + "left": { + "end": 240, + "name": "back_walls_width", + "start": 224, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 244, + "raw": "2", + "start": 243, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 224, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 247, + "raw": "0", + "start": 246, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 248, + "start": 223, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 251, + "start": 250, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 222, + "name": "startProfileAt", + "start": 208, + "type": "Identifier" + }, + "end": 252, + "optional": false, + "start": 208, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 282, + "left": { + "end": 278, + "name": "wall_thickness", + "start": 264, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 282, + "raw": "2", + "start": 281, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 264, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 285, + "start": 284, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 263, + "name": "xLine", + "start": 258, + "type": "Identifier" + }, + "end": 286, + "optional": false, + "start": 258, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 341, + "properties": [ + { + "end": 317, + "key": { + "end": 313, + "name": "angle", + "start": 308, + "type": "Identifier" + }, + "start": 308, + "type": "ObjectProperty", + "value": { + "end": 317, + "raw": "45", + "start": 315, + "type": "Literal", + "type": "Literal", + "value": 45 + } + }, + { + "end": 339, + "key": { + "end": 321, + "name": "to", + "start": 319, + "type": "Identifier" + }, + "start": 319, + "type": "ObjectProperty", + "value": { + "end": 339, + "name": "back_walls_width", + "start": 323, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 306, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 344, + "start": 343, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + ], + "callee": { + "end": 305, + "name": "angledLineToX", + "start": 292, + "type": "Identifier" + }, + "end": 353, + "optional": false, + "start": 292, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 373, + "name": "height", + "start": 367, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 376, + "start": 375, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 366, + "name": "yLineTo", + "start": 359, + "type": "Identifier" + }, + "end": 377, + "optional": false, + "start": 359, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "argument": { + "end": 404, + "name": "wall_thickness", + "start": 390, + "type": "Identifier", + "type": "Identifier" + }, + "end": 404, + "operator": "-", + "start": 389, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 407, + "start": 406, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 388, + "name": "xLine", + "start": 383, + "type": "Identifier" + }, + "end": 408, + "optional": false, + "start": 383, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "arguments": [ + { + "end": 435, + "name": "seg01", + "start": 430, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 429, + "name": "segEndY", + "start": 422, + "type": "Identifier" + }, + "end": 436, + "optional": false, + "start": 422, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "end": 439, + "start": 438, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 421, + "name": "yLineTo", + "start": 414, + "type": "Identifier" + }, + "end": 440, + "optional": false, + "start": 414, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 539, + "properties": [ + { + "end": 478, + "key": { + "end": 474, + "name": "angle", + "start": 469, + "type": "Identifier" + }, + "start": 469, + "type": "ObjectProperty", + "value": { + "end": 478, + "raw": "45", + "start": 476, + "type": "Literal", + "type": "Literal", + "value": 45 + } + }, + { + "end": 532, + "key": { + "end": 489, + "name": "to", + "start": 487, + "type": "Identifier" + }, + "start": 487, + "type": "ObjectProperty", + "value": { + "end": 532, + "left": { + "end": 511, + "left": { + "end": 507, + "name": "back_walls_width", + "start": 491, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 511, + "raw": "2", + "start": 510, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 491, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 532, + "left": { + "end": 528, + "name": "wall_thickness", + "start": 514, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 532, + "raw": "2", + "start": 531, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 514, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 491, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "start": 460, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 542, + "start": 541, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 459, + "name": "angledLineToX", + "start": 446, + "type": "Identifier" + }, + "end": 543, + "optional": false, + "start": 446, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "argument": { + "end": 570, + "name": "wall_thickness", + "start": 556, + "type": "Identifier", + "type": "Identifier" + }, + "end": 570, + "operator": "-", + "start": 555, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 573, + "start": 572, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 554, + "name": "xLine", + "start": 549, + "type": "Identifier" + }, + "end": 574, + "optional": false, + "start": 549, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 633, + "properties": [ + { + "end": 611, + "key": { + "end": 601, + "name": "angle", + "start": 596, + "type": "Identifier" + }, + "start": 596, + "type": "ObjectProperty", + "value": { + "end": 611, + "left": { + "end": 606, + "raw": "180", + "start": 603, + "type": "Literal", + "type": "Literal", + "value": 180 + }, + "operator": "-", + "right": { + "end": 611, + "raw": "45", + "start": 609, + "type": "Literal", + "type": "Literal", + "value": 45 + }, + "start": 603, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "end": 631, + "key": { + "end": 615, + "name": "to", + "start": 613, + "type": "Identifier" + }, + "start": 613, + "type": "ObjectProperty", + "value": { + "end": 631, + "name": "wall_thickness", + "start": 617, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 594, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 636, + "start": 635, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 593, + "name": "angledLineToX", + "start": 580, + "type": "Identifier" + }, + "end": 637, + "optional": false, + "start": 580, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 657, + "name": "height", + "start": 651, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 660, + "start": 659, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 650, + "name": "yLineTo", + "start": 643, + "type": "Identifier" + }, + "end": 661, + "optional": false, + "start": 643, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 676, + "raw": "0", + "start": 675, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 679, + "start": 678, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 674, + "name": "xLineTo", + "start": 667, + "type": "Identifier" + }, + "end": 680, + "optional": false, + "start": 667, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "arguments": [ + { + "end": 707, + "name": "seg01", + "start": 702, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 701, + "name": "segEndY", + "start": 694, + "type": "Identifier" + }, + "end": 708, + "optional": false, + "start": 694, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "end": 711, + "start": 710, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 693, + "name": "yLineTo", + "start": 686, + "type": "Identifier" + }, + "end": 712, + "optional": false, + "start": 686, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 758, + "properties": [ + { + "end": 749, + "key": { + "end": 739, + "name": "angle", + "start": 734, + "type": "Identifier" + }, + "start": 734, + "type": "ObjectProperty", + "value": { + "end": 749, + "left": { + "end": 744, + "raw": "180", + "start": 741, + "type": "Literal", + "type": "Literal", + "value": 180 + }, + "operator": "-", + "right": { + "end": 749, + "raw": "45", + "start": 747, + "type": "Literal", + "type": "Literal", + "value": 45 + }, + "start": 741, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "end": 756, + "key": { + "end": 753, + "name": "to", + "start": 751, + "type": "Identifier" + }, + "start": 751, + "type": "ObjectProperty", + "value": { + "end": 756, + "raw": "0", + "start": 755, + "type": "Literal", + "type": "Literal", + "value": 0 + } + } + ], + "start": 732, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 761, + "start": 760, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 731, + "name": "angledLineToY", + "start": 718, + "type": "Identifier" + }, + "end": 762, + "optional": false, + "start": 718, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 775, + "start": 774, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 773, + "name": "close", + "start": 768, + "type": "Identifier" + }, + "end": 776, + "optional": false, + "start": 768, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 776, + "start": 182, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 170, + "type": "VariableDeclarator" + } + ], + "end": 776, + "kind": "const", + "start": 170, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 920, + "id": { + "end": 784, + "name": "part001", + "start": 777, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 908, + "properties": [ + { + "end": 808, + "key": { + "end": 804, + "name": "angle", + "start": 799, + "type": "Identifier" + }, + "start": 799, + "type": "ObjectProperty", + "value": { + "end": 808, + "raw": "90", + "start": 806, + "type": "Literal", + "type": "Literal", + "value": 90 + } + }, + { + "end": 906, + "key": { + "end": 816, + "name": "axis", + "start": 812, + "type": "Identifier" + }, + "start": 812, + "type": "ObjectProperty", + "value": { + "end": 906, + "properties": [ + { + "end": 902, + "key": { + "end": 830, + "name": "custom", + "start": 824, + "type": "Identifier" + }, + "start": 824, + "type": "ObjectProperty", + "value": { + "end": 902, + "properties": [ + { + "end": 856, + "key": { + "end": 844, + "name": "axis", + "start": 840, + "type": "Identifier" + }, + "start": 840, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 850, + "raw": "1.0", + "start": 847, + "type": "Literal", + "type": "Literal", + "value": 1.0 + }, + { + "end": 855, + "raw": "0.0", + "start": 852, + "type": "Literal", + "type": "Literal", + "value": 0.0 + } + ], + "end": 856, + "start": 846, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 896, + "key": { + "end": 870, + "name": "origin", + "start": 864, + "type": "Identifier" + }, + "start": 864, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 876, + "raw": "0.0", + "start": 873, + "type": "Literal", + "type": "Literal", + "value": 0.0 + }, + { + "end": 895, + "left": { + "end": 884, + "name": "height", + "start": 878, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 895, + "raw": ".0000001", + "start": 887, + "type": "Literal", + "type": "Literal", + "value": 0.0000001 + }, + "start": 878, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 896, + "start": 872, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 832, + "type": "ObjectExpression", + "type": "ObjectExpression" + } + } + ], + "start": 818, + "type": "ObjectExpression", + "type": "ObjectExpression" + } + } + ], + "start": 795, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 919, + "name": "sketch001", + "start": 910, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 794, + "name": "revolve", + "start": 787, + "type": "Identifier" + }, + "end": 920, + "optional": false, + "start": 787, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 777, + "type": "VariableDeclarator" + } + ], + "end": 920, + "kind": "const", + "start": 777, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1566, + "id": { + "end": 931, + "name": "sketch002", + "start": 922, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 953, + "raw": "'-YZ'", + "start": 948, + "type": "Literal", + "type": "Literal", + "value": "-YZ" + } + ], + "callee": { + "end": 947, + "name": "startSketchOn", + "start": 934, + "type": "Identifier" + }, + "end": 954, + "optional": false, + "start": 934, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 996, + "left": { + "end": 992, + "name": "back_walls_width", + "start": 976, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 996, + "raw": "2", + "start": 995, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 976, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 999, + "raw": "0", + "start": 998, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 1000, + "start": 975, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1003, + "start": 1002, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 974, + "name": "startProfileAt", + "start": 960, + "type": "Identifier" + }, + "end": 1004, + "optional": false, + "start": 960, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1034, + "left": { + "end": 1030, + "name": "wall_thickness", + "start": 1016, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1034, + "raw": "2", + "start": 1033, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1016, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1037, + "start": 1036, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1015, + "name": "xLine", + "start": 1010, + "type": "Identifier" + }, + "end": 1038, + "optional": false, + "start": 1010, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1093, + "properties": [ + { + "end": 1069, + "key": { + "end": 1065, + "name": "angle", + "start": 1060, + "type": "Identifier" + }, + "start": 1060, + "type": "ObjectProperty", + "value": { + "end": 1069, + "raw": "45", + "start": 1067, + "type": "Literal", + "type": "Literal", + "value": 45 + } + }, + { + "end": 1091, + "key": { + "end": 1073, + "name": "to", + "start": 1071, + "type": "Identifier" + }, + "start": 1071, + "type": "ObjectProperty", + "value": { + "end": 1091, + "name": "back_walls_width", + "start": 1075, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 1058, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1096, + "start": 1095, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1104, + "start": 1098, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg02" + } + ], + "callee": { + "end": 1057, + "name": "angledLineToX", + "start": 1044, + "type": "Identifier" + }, + "end": 1105, + "optional": false, + "start": 1044, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1125, + "name": "height", + "start": 1119, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1128, + "start": 1127, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1118, + "name": "yLineTo", + "start": 1111, + "type": "Identifier" + }, + "end": 1129, + "optional": false, + "start": 1111, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "argument": { + "end": 1156, + "name": "wall_thickness", + "start": 1142, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1156, + "operator": "-", + "start": 1141, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 1159, + "start": 1158, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1140, + "name": "xLine", + "start": 1135, + "type": "Identifier" + }, + "end": 1160, + "optional": false, + "start": 1135, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "arguments": [ + { + "end": 1187, + "name": "seg01", + "start": 1182, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1181, + "name": "segEndY", + "start": 1174, + "type": "Identifier" + }, + "end": 1188, + "optional": false, + "start": 1174, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "end": 1191, + "start": 1190, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1173, + "name": "yLineTo", + "start": 1166, + "type": "Identifier" + }, + "end": 1192, + "optional": false, + "start": 1166, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1291, + "properties": [ + { + "end": 1230, + "key": { + "end": 1226, + "name": "angle", + "start": 1221, + "type": "Identifier" + }, + "start": 1221, + "type": "ObjectProperty", + "value": { + "end": 1230, + "raw": "45", + "start": 1228, + "type": "Literal", + "type": "Literal", + "value": 45 + } + }, + { + "end": 1284, + "key": { + "end": 1241, + "name": "to", + "start": 1239, + "type": "Identifier" + }, + "start": 1239, + "type": "ObjectProperty", + "value": { + "end": 1284, + "left": { + "end": 1263, + "left": { + "end": 1259, + "name": "back_walls_width", + "start": 1243, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1263, + "raw": "2", + "start": 1262, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1243, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 1284, + "left": { + "end": 1280, + "name": "wall_thickness", + "start": 1266, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 1284, + "raw": "2", + "start": 1283, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 1266, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 1243, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "start": 1212, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1294, + "start": 1293, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1211, + "name": "angledLineToX", + "start": 1198, + "type": "Identifier" + }, + "end": 1295, + "optional": false, + "start": 1198, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "argument": { + "end": 1322, + "name": "wall_thickness", + "start": 1308, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1322, + "operator": "-", + "start": 1307, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 1325, + "start": 1324, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1306, + "name": "xLine", + "start": 1301, + "type": "Identifier" + }, + "end": 1326, + "optional": false, + "start": 1301, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1385, + "properties": [ + { + "end": 1363, + "key": { + "end": 1353, + "name": "angle", + "start": 1348, + "type": "Identifier" + }, + "start": 1348, + "type": "ObjectProperty", + "value": { + "end": 1363, + "left": { + "end": 1358, + "raw": "180", + "start": 1355, + "type": "Literal", + "type": "Literal", + "value": 180 + }, + "operator": "-", + "right": { + "end": 1363, + "raw": "45", + "start": 1361, + "type": "Literal", + "type": "Literal", + "value": 45 + }, + "start": 1355, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "end": 1383, + "key": { + "end": 1367, + "name": "to", + "start": 1365, + "type": "Identifier" + }, + "start": 1365, + "type": "ObjectProperty", + "value": { + "end": 1383, + "name": "wall_thickness", + "start": 1369, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 1346, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1388, + "start": 1387, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1345, + "name": "angledLineToX", + "start": 1332, + "type": "Identifier" + }, + "end": 1389, + "optional": false, + "start": 1332, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1409, + "name": "height", + "start": 1403, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1412, + "start": 1411, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1402, + "name": "yLineTo", + "start": 1395, + "type": "Identifier" + }, + "end": 1413, + "optional": false, + "start": 1395, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1428, + "raw": "0", + "start": 1427, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1431, + "start": 1430, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1426, + "name": "xLineTo", + "start": 1419, + "type": "Identifier" + }, + "end": 1432, + "optional": false, + "start": 1419, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "arguments": [ + { + "end": 1459, + "name": "seg02", + "start": 1454, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1453, + "name": "segEndY", + "start": 1446, + "type": "Identifier" + }, + "end": 1460, + "optional": false, + "start": 1446, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "end": 1463, + "start": 1462, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1445, + "name": "yLineTo", + "start": 1438, + "type": "Identifier" + }, + "end": 1464, + "optional": false, + "start": 1438, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1510, + "properties": [ + { + "end": 1501, + "key": { + "end": 1491, + "name": "angle", + "start": 1486, + "type": "Identifier" + }, + "start": 1486, + "type": "ObjectProperty", + "value": { + "end": 1501, + "left": { + "end": 1496, + "raw": "180", + "start": 1493, + "type": "Literal", + "type": "Literal", + "value": 180 + }, + "operator": "-", + "right": { + "end": 1501, + "raw": "45", + "start": 1499, + "type": "Literal", + "type": "Literal", + "value": 45 + }, + "start": 1493, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "end": 1508, + "key": { + "end": 1505, + "name": "to", + "start": 1503, + "type": "Identifier" + }, + "start": 1503, + "type": "ObjectProperty", + "value": { + "end": 1508, + "raw": "0", + "start": 1507, + "type": "Literal", + "type": "Literal", + "value": 0 + } + } + ], + "start": 1484, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1513, + "start": 1512, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1483, + "name": "angledLineToY", + "start": 1470, + "type": "Identifier" + }, + "end": 1514, + "optional": false, + "start": 1470, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1527, + "start": 1526, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1525, + "name": "close", + "start": 1520, + "type": "Identifier" + }, + "end": 1528, + "optional": false, + "start": 1520, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1562, + "left": { + "end": 1553, + "name": "back_length", + "start": 1542, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "-", + "right": { + "end": 1562, + "name": "height", + "start": 1556, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1542, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1565, + "start": 1564, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1541, + "name": "extrude", + "start": 1534, + "type": "Identifier" + }, + "end": 1566, + "optional": false, + "start": 1534, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1566, + "start": 934, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 922, + "type": "VariableDeclarator" + } + ], + "end": 1566, + "kind": "const", + "start": 922, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 1567, + "nonCodeMeta": { + "nonCodeNodes": { + "9": [ + { + "end": 170, + "start": 168, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "11": [ + { + "end": 922, + "start": 920, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/poop_chute/input.kcl b/src/wasm-lib/kcl/tests/poop_chute/input.kcl new file mode 100644 index 000000000..669d05057 --- /dev/null +++ b/src/wasm-lib/kcl/tests/poop_chute/input.kcl @@ -0,0 +1,58 @@ +wall_thickness = 0.125 +back_walls_width = 2 +front_walls_width = 2.5 +height = 5.5 +filletRadius = 0.050 +back_length = 7 +exit_height = 1 +front_length = 6 +Fx = 0.5 +Fy = 0.5 + +sketch001 = startSketchOn('-YZ') + |> startProfileAt([back_walls_width / 2, 0], %) + |> xLine(wall_thickness / 2, %) + |> angledLineToX({ angle: 45, to: back_walls_width }, %, $seg01) + |> yLineTo(height, %) + |> xLine(-wall_thickness, %) + |> yLineTo(segEndY(seg01), %) + |> angledLineToX({ + angle: 45, + to: back_walls_width / 2 + wall_thickness / 2 + }, %) + |> xLine(-wall_thickness, %) + |> angledLineToX({ angle: 180 - 45, to: wall_thickness }, %) + |> yLineTo(height, %) + |> xLineTo(0, %) + |> yLineTo(segEndY(seg01), %) + |> angledLineToY({ angle: 180 - 45, to: 0 }, %) + |> close(%) +part001 = revolve({ + angle: 90, + axis: { + custom: { + axis: [1.0, 0.0], + origin: [0.0, height + .0000001] + } + } +}, sketch001) + +sketch002 = startSketchOn('-YZ') + |> startProfileAt([back_walls_width / 2, 0], %) + |> xLine(wall_thickness / 2, %) + |> angledLineToX({ angle: 45, to: back_walls_width }, %, $seg02) + |> yLineTo(height, %) + |> xLine(-wall_thickness, %) + |> yLineTo(segEndY(seg01), %) + |> angledLineToX({ + angle: 45, + to: back_walls_width / 2 + wall_thickness / 2 + }, %) + |> xLine(-wall_thickness, %) + |> angledLineToX({ angle: 180 - 45, to: wall_thickness }, %) + |> yLineTo(height, %) + |> xLineTo(0, %) + |> yLineTo(segEndY(seg02), %) + |> angledLineToY({ angle: 180 - 45, to: 0 }, %) + |> close(%) + |> extrude(back_length - height, %) diff --git a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap new file mode 100644 index 000000000..fd2f8e3d9 --- /dev/null +++ b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap @@ -0,0 +1,1781 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing poop_chute.kcl +snapshot_kind: text +--- +{ + "environments": [ + { + "bindings": { + "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": "Int", + "value": 7, + "__meta": [ + { + "sourceRange": [ + 116, + 117, + 0 + ] + } + ] + }, + "back_walls_width": { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 42, + 43, + 0 + ] + } + ] + }, + "exit_height": { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 132, + 133, + 0 + ] + } + ] + }, + "filletRadius": { + "type": "Number", + "value": 0.05, + "__meta": [ + { + "sourceRange": [ + 96, + 101, + 0 + ] + } + ] + }, + "front_length": { + "type": "Int", + "value": 6, + "__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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 258, + 286, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 292, + 353, + 0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 359, + 377, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 383, + 408, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 414, + 440, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 446, + 543, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 549, + 574, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 580, + 637, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 643, + 661, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 667, + 680, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 686, + 712, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 718, + 762, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 768, + 776, + 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, + 353, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 359, + 377, + 0 + ] + }, + "from": [ + 2.0, + 0.9375 + ], + "tag": null, + "to": [ + 2.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 383, + 408, + 0 + ] + }, + "from": [ + 2.0, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 414, + 440, + 0 + ] + }, + "from": [ + 1.875, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 446, + 543, + 0 + ] + }, + "from": [ + 1.875, + 0.9375 + ], + "tag": null, + "to": [ + 1.0625, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 549, + 574, + 0 + ] + }, + "from": [ + 1.0625, + 0.125 + ], + "tag": null, + "to": [ + 0.9375, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 580, + 637, + 0 + ] + }, + "from": [ + 0.9375, + 0.125 + ], + "tag": null, + "to": [ + 0.125, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 643, + 661, + 0 + ] + }, + "from": [ + 0.125, + 0.9375 + ], + "tag": null, + "to": [ + 0.125, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 667, + 680, + 0 + ] + }, + "from": [ + 0.125, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 686, + 712, + 0 + ] + }, + "from": [ + 0.0, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 718, + 762, + 0 + ] + }, + "from": [ + 0.0, + 0.9375 + ], + "tag": null, + "to": [ + 0.9375, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 768, + 776, + 0 + ] + }, + "from": [ + 0.9375, + 0.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 353, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 292, + 353, + 0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 346, + 352, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 208, + 252, + 0 + ] + } + ] + }, + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__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, + 353, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 292, + 353, + 0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 346, + 352, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1044, + 1105, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 1104, + "start": 1098, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1044, + 1105, + 0 + ], + "tag": { + "end": 1104, + "start": 1098, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1098, + 1104, + 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, + 353, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 359, + 377, + 0 + ] + }, + "from": [ + 2.0, + 0.9375 + ], + "tag": null, + "to": [ + 2.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 383, + 408, + 0 + ] + }, + "from": [ + 2.0, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 414, + 440, + 0 + ] + }, + "from": [ + 1.875, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 446, + 543, + 0 + ] + }, + "from": [ + 1.875, + 0.9375 + ], + "tag": null, + "to": [ + 1.0625, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 549, + 574, + 0 + ] + }, + "from": [ + 1.0625, + 0.125 + ], + "tag": null, + "to": [ + 0.9375, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 580, + 637, + 0 + ] + }, + "from": [ + 0.9375, + 0.125 + ], + "tag": null, + "to": [ + 0.125, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 643, + 661, + 0 + ] + }, + "from": [ + 0.125, + 0.9375 + ], + "tag": null, + "to": [ + 0.125, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 667, + 680, + 0 + ] + }, + "from": [ + 0.125, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 686, + 712, + 0 + ] + }, + "from": [ + 0.0, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 718, + 762, + 0 + ] + }, + "from": [ + 0.0, + 0.9375 + ], + "tag": null, + "to": [ + 0.9375, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 768, + 776, + 0 + ] + }, + "from": [ + 0.9375, + 0.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 353, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 292, + 353, + 0 + ], + "tag": { + "end": 352, + "start": 346, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 346, + 352, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 208, + 252, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1010, + 1038, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1044, + 1105, + 0 + ], + "tag": { + "end": 1104, + "start": 1098, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1111, + 1129, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1135, + 1160, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1166, + 1192, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1198, + 1295, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1301, + 1326, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1332, + 1389, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1395, + 1413, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1419, + 1432, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1438, + 1464, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1470, + 1514, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1520, + 1528, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1010, + 1038, + 0 + ] + }, + "from": [ + 1.0, + 0.0 + ], + "tag": null, + "to": [ + 1.0625, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1044, + 1105, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 1104, + "start": 1098, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 2.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1111, + 1129, + 0 + ] + }, + "from": [ + 2.0, + 0.9375 + ], + "tag": null, + "to": [ + 2.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1135, + 1160, + 0 + ] + }, + "from": [ + 2.0, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1166, + 1192, + 0 + ] + }, + "from": [ + 1.875, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1198, + 1295, + 0 + ] + }, + "from": [ + 1.875, + 0.9375 + ], + "tag": null, + "to": [ + 1.0625, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1301, + 1326, + 0 + ] + }, + "from": [ + 1.0625, + 0.125 + ], + "tag": null, + "to": [ + 0.9375, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1332, + 1389, + 0 + ] + }, + "from": [ + 0.9375, + 0.125 + ], + "tag": null, + "to": [ + 0.125, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1395, + 1413, + 0 + ] + }, + "from": [ + 0.125, + 0.9375 + ], + "tag": null, + "to": [ + 0.125, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1419, + 1432, + 0 + ] + }, + "from": [ + 0.125, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1438, + 1464, + 0 + ] + }, + "from": [ + 0.0, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1470, + 1514, + 0 + ] + }, + "from": [ + 0.0, + 0.9375 + ], + "tag": null, + "to": [ + 0.9375, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1520, + 1528, + 0 + ] + }, + "from": [ + 0.9375, + 0.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 1.0, + 0.0 + ], + "to": [ + 1.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 960, + 1004, + 0 + ] + } + }, + "tags": { + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1044, + 1105, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 1104, + "start": 1098, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1044, + 1105, + 0 + ], + "tag": { + "end": 1104, + "start": 1098, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1098, + 1104, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 960, + 1004, + 0 + ] + } + ] + }, + "height": 1.5, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 960, + 1004, + 0 + ] + } + ] + }, + "wall_thickness": { + "type": "Number", + "value": 0.125, + "__meta": [ + { + "sourceRange": [ + 17, + 22, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/poop_chute/rendered_model.png b/src/wasm-lib/kcl/tests/poop_chute/rendered_model.png new file mode 100644 index 000000000..63f3ec192 Binary files /dev/null and b/src/wasm-lib/kcl/tests/poop_chute/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/poop_chute/tokens.snap b/src/wasm-lib/kcl/tests/poop_chute/tokens.snap new file mode 100644 index 000000000..b6b725e4e --- /dev/null +++ b/src/wasm-lib/kcl/tests/poop_chute/tokens.snap @@ -0,0 +1,3723 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing poop_chute.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 14, + "value": "wall_thickness" + }, + { + "type": "whitespace", + "start": 14, + "end": 15, + "value": " " + }, + { + "type": "operator", + "start": 15, + "end": 16, + "value": "=" + }, + { + "type": "whitespace", + "start": 16, + "end": 17, + "value": " " + }, + { + "type": "number", + "start": 17, + "end": 22, + "value": "0.125" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": "\n" + }, + { + "type": "word", + "start": 23, + "end": 39, + "value": "back_walls_width" + }, + { + "type": "whitespace", + "start": 39, + "end": 40, + "value": " " + }, + { + "type": "operator", + "start": 40, + "end": 41, + "value": "=" + }, + { + "type": "whitespace", + "start": 41, + "end": 42, + "value": " " + }, + { + "type": "number", + "start": 42, + "end": 43, + "value": "2" + }, + { + "type": "whitespace", + "start": 43, + "end": 44, + "value": "\n" + }, + { + "type": "word", + "start": 44, + "end": 61, + "value": "front_walls_width" + }, + { + "type": "whitespace", + "start": 61, + "end": 62, + "value": " " + }, + { + "type": "operator", + "start": 62, + "end": 63, + "value": "=" + }, + { + "type": "whitespace", + "start": 63, + "end": 64, + "value": " " + }, + { + "type": "number", + "start": 64, + "end": 67, + "value": "2.5" + }, + { + "type": "whitespace", + "start": 67, + "end": 68, + "value": "\n" + }, + { + "type": "word", + "start": 68, + "end": 74, + "value": "height" + }, + { + "type": "whitespace", + "start": 74, + "end": 75, + "value": " " + }, + { + "type": "operator", + "start": 75, + "end": 76, + "value": "=" + }, + { + "type": "whitespace", + "start": 76, + "end": 77, + "value": " " + }, + { + "type": "number", + "start": 77, + "end": 80, + "value": "5.5" + }, + { + "type": "whitespace", + "start": 80, + "end": 81, + "value": "\n" + }, + { + "type": "word", + "start": 81, + "end": 93, + "value": "filletRadius" + }, + { + "type": "whitespace", + "start": 93, + "end": 94, + "value": " " + }, + { + "type": "operator", + "start": 94, + "end": 95, + "value": "=" + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "number", + "start": 96, + "end": 101, + "value": "0.050" + }, + { + "type": "whitespace", + "start": 101, + "end": 102, + "value": "\n" + }, + { + "type": "word", + "start": 102, + "end": 113, + "value": "back_length" + }, + { + "type": "whitespace", + "start": 113, + "end": 114, + "value": " " + }, + { + "type": "operator", + "start": 114, + "end": 115, + "value": "=" + }, + { + "type": "whitespace", + "start": 115, + "end": 116, + "value": " " + }, + { + "type": "number", + "start": 116, + "end": 117, + "value": "7" + }, + { + "type": "whitespace", + "start": 117, + "end": 118, + "value": "\n" + }, + { + "type": "word", + "start": 118, + "end": 129, + "value": "exit_height" + }, + { + "type": "whitespace", + "start": 129, + "end": 130, + "value": " " + }, + { + "type": "operator", + "start": 130, + "end": 131, + "value": "=" + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "number", + "start": 132, + "end": 133, + "value": "1" + }, + { + "type": "whitespace", + "start": 133, + "end": 134, + "value": "\n" + }, + { + "type": "word", + "start": 134, + "end": 146, + "value": "front_length" + }, + { + "type": "whitespace", + "start": 146, + "end": 147, + "value": " " + }, + { + "type": "operator", + "start": 147, + "end": 148, + "value": "=" + }, + { + "type": "whitespace", + "start": 148, + "end": 149, + "value": " " + }, + { + "type": "number", + "start": 149, + "end": 150, + "value": "6" + }, + { + "type": "whitespace", + "start": 150, + "end": 151, + "value": "\n" + }, + { + "type": "word", + "start": 151, + "end": 153, + "value": "Fx" + }, + { + "type": "whitespace", + "start": 153, + "end": 154, + "value": " " + }, + { + "type": "operator", + "start": 154, + "end": 155, + "value": "=" + }, + { + "type": "whitespace", + "start": 155, + "end": 156, + "value": " " + }, + { + "type": "number", + "start": 156, + "end": 159, + "value": "0.5" + }, + { + "type": "whitespace", + "start": 159, + "end": 160, + "value": "\n" + }, + { + "type": "word", + "start": 160, + "end": 162, + "value": "Fy" + }, + { + "type": "whitespace", + "start": 162, + "end": 163, + "value": " " + }, + { + "type": "operator", + "start": 163, + "end": 164, + "value": "=" + }, + { + "type": "whitespace", + "start": 164, + "end": 165, + "value": " " + }, + { + "type": "number", + "start": 165, + "end": 168, + "value": "0.5" + }, + { + "type": "whitespace", + "start": 168, + "end": 170, + "value": "\n\n" + }, + { + "type": "word", + "start": 170, + "end": 179, + "value": "sketch001" + }, + { + "type": "whitespace", + "start": 179, + "end": 180, + "value": " " + }, + { + "type": "operator", + "start": 180, + "end": 181, + "value": "=" + }, + { + "type": "whitespace", + "start": 181, + "end": 182, + "value": " " + }, + { + "type": "word", + "start": 182, + "end": 195, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 195, + "end": 196, + "value": "(" + }, + { + "type": "string", + "start": 196, + "end": 201, + "value": "'-YZ'" + }, + { + "type": "brace", + "start": 201, + "end": 202, + "value": ")" + }, + { + "type": "whitespace", + "start": 202, + "end": 205, + "value": "\n " + }, + { + "type": "operator", + "start": 205, + "end": 207, + "value": "|>" + }, + { + "type": "whitespace", + "start": 207, + "end": 208, + "value": " " + }, + { + "type": "word", + "start": 208, + "end": 222, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 222, + "end": 223, + "value": "(" + }, + { + "type": "brace", + "start": 223, + "end": 224, + "value": "[" + }, + { + "type": "word", + "start": 224, + "end": 240, + "value": "back_walls_width" + }, + { + "type": "whitespace", + "start": 240, + "end": 241, + "value": " " + }, + { + "type": "operator", + "start": 241, + "end": 242, + "value": "/" + }, + { + "type": "whitespace", + "start": 242, + "end": 243, + "value": " " + }, + { + "type": "number", + "start": 243, + "end": 244, + "value": "2" + }, + { + "type": "comma", + "start": 244, + "end": 245, + "value": "," + }, + { + "type": "whitespace", + "start": 245, + "end": 246, + "value": " " + }, + { + "type": "number", + "start": 246, + "end": 247, + "value": "0" + }, + { + "type": "brace", + "start": 247, + "end": 248, + "value": "]" + }, + { + "type": "comma", + "start": 248, + "end": 249, + "value": "," + }, + { + "type": "whitespace", + "start": 249, + "end": 250, + "value": " " + }, + { + "type": "operator", + "start": 250, + "end": 251, + "value": "%" + }, + { + "type": "brace", + "start": 251, + "end": 252, + "value": ")" + }, + { + "type": "whitespace", + "start": 252, + "end": 255, + "value": "\n " + }, + { + "type": "operator", + "start": 255, + "end": 257, + "value": "|>" + }, + { + "type": "whitespace", + "start": 257, + "end": 258, + "value": " " + }, + { + "type": "word", + "start": 258, + "end": 263, + "value": "xLine" + }, + { + "type": "brace", + "start": 263, + "end": 264, + "value": "(" + }, + { + "type": "word", + "start": 264, + "end": 278, + "value": "wall_thickness" + }, + { + "type": "whitespace", + "start": 278, + "end": 279, + "value": " " + }, + { + "type": "operator", + "start": 279, + "end": 280, + "value": "/" + }, + { + "type": "whitespace", + "start": 280, + "end": 281, + "value": " " + }, + { + "type": "number", + "start": 281, + "end": 282, + "value": "2" + }, + { + "type": "comma", + "start": 282, + "end": 283, + "value": "," + }, + { + "type": "whitespace", + "start": 283, + "end": 284, + "value": " " + }, + { + "type": "operator", + "start": 284, + "end": 285, + "value": "%" + }, + { + "type": "brace", + "start": 285, + "end": 286, + "value": ")" + }, + { + "type": "whitespace", + "start": 286, + "end": 289, + "value": "\n " + }, + { + "type": "operator", + "start": 289, + "end": 291, + "value": "|>" + }, + { + "type": "whitespace", + "start": 291, + "end": 292, + "value": " " + }, + { + "type": "word", + "start": 292, + "end": 305, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 305, + "end": 306, + "value": "(" + }, + { + "type": "brace", + "start": 306, + "end": 307, + "value": "{" + }, + { + "type": "whitespace", + "start": 307, + "end": 308, + "value": " " + }, + { + "type": "word", + "start": 308, + "end": 313, + "value": "angle" + }, + { + "type": "colon", + "start": 313, + "end": 314, + "value": ":" + }, + { + "type": "whitespace", + "start": 314, + "end": 315, + "value": " " + }, + { + "type": "number", + "start": 315, + "end": 317, + "value": "45" + }, + { + "type": "comma", + "start": 317, + "end": 318, + "value": "," + }, + { + "type": "whitespace", + "start": 318, + "end": 319, + "value": " " + }, + { + "type": "word", + "start": 319, + "end": 321, + "value": "to" + }, + { + "type": "colon", + "start": 321, + "end": 322, + "value": ":" + }, + { + "type": "whitespace", + "start": 322, + "end": 323, + "value": " " + }, + { + "type": "word", + "start": 323, + "end": 339, + "value": "back_walls_width" + }, + { + "type": "whitespace", + "start": 339, + "end": 340, + "value": " " + }, + { + "type": "brace", + "start": 340, + "end": 341, + "value": "}" + }, + { + "type": "comma", + "start": 341, + "end": 342, + "value": "," + }, + { + "type": "whitespace", + "start": 342, + "end": 343, + "value": " " + }, + { + "type": "operator", + "start": 343, + "end": 344, + "value": "%" + }, + { + "type": "comma", + "start": 344, + "end": 345, + "value": "," + }, + { + "type": "whitespace", + "start": 345, + "end": 346, + "value": " " + }, + { + "type": "dollar", + "start": 346, + "end": 347, + "value": "$" + }, + { + "type": "word", + "start": 347, + "end": 352, + "value": "seg01" + }, + { + "type": "brace", + "start": 352, + "end": 353, + "value": ")" + }, + { + "type": "whitespace", + "start": 353, + "end": 356, + "value": "\n " + }, + { + "type": "operator", + "start": 356, + "end": 358, + "value": "|>" + }, + { + "type": "whitespace", + "start": 358, + "end": 359, + "value": " " + }, + { + "type": "word", + "start": 359, + "end": 366, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 366, + "end": 367, + "value": "(" + }, + { + "type": "word", + "start": 367, + "end": 373, + "value": "height" + }, + { + "type": "comma", + "start": 373, + "end": 374, + "value": "," + }, + { + "type": "whitespace", + "start": 374, + "end": 375, + "value": " " + }, + { + "type": "operator", + "start": 375, + "end": 376, + "value": "%" + }, + { + "type": "brace", + "start": 376, + "end": 377, + "value": ")" + }, + { + "type": "whitespace", + "start": 377, + "end": 380, + "value": "\n " + }, + { + "type": "operator", + "start": 380, + "end": 382, + "value": "|>" + }, + { + "type": "whitespace", + "start": 382, + "end": 383, + "value": " " + }, + { + "type": "word", + "start": 383, + "end": 388, + "value": "xLine" + }, + { + "type": "brace", + "start": 388, + "end": 389, + "value": "(" + }, + { + "type": "operator", + "start": 389, + "end": 390, + "value": "-" + }, + { + "type": "word", + "start": 390, + "end": 404, + "value": "wall_thickness" + }, + { + "type": "comma", + "start": 404, + "end": 405, + "value": "," + }, + { + "type": "whitespace", + "start": 405, + "end": 406, + "value": " " + }, + { + "type": "operator", + "start": 406, + "end": 407, + "value": "%" + }, + { + "type": "brace", + "start": 407, + "end": 408, + "value": ")" + }, + { + "type": "whitespace", + "start": 408, + "end": 411, + "value": "\n " + }, + { + "type": "operator", + "start": 411, + "end": 413, + "value": "|>" + }, + { + "type": "whitespace", + "start": 413, + "end": 414, + "value": " " + }, + { + "type": "word", + "start": 414, + "end": 421, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 421, + "end": 422, + "value": "(" + }, + { + "type": "word", + "start": 422, + "end": 429, + "value": "segEndY" + }, + { + "type": "brace", + "start": 429, + "end": 430, + "value": "(" + }, + { + "type": "word", + "start": 430, + "end": 435, + "value": "seg01" + }, + { + "type": "brace", + "start": 435, + "end": 436, + "value": ")" + }, + { + "type": "comma", + "start": 436, + "end": 437, + "value": "," + }, + { + "type": "whitespace", + "start": 437, + "end": 438, + "value": " " + }, + { + "type": "operator", + "start": 438, + "end": 439, + "value": "%" + }, + { + "type": "brace", + "start": 439, + "end": 440, + "value": ")" + }, + { + "type": "whitespace", + "start": 440, + "end": 443, + "value": "\n " + }, + { + "type": "operator", + "start": 443, + "end": 445, + "value": "|>" + }, + { + "type": "whitespace", + "start": 445, + "end": 446, + "value": " " + }, + { + "type": "word", + "start": 446, + "end": 459, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 459, + "end": 460, + "value": "(" + }, + { + "type": "brace", + "start": 460, + "end": 461, + "value": "{" + }, + { + "type": "whitespace", + "start": 461, + "end": 469, + "value": "\n " + }, + { + "type": "word", + "start": 469, + "end": 474, + "value": "angle" + }, + { + "type": "colon", + "start": 474, + "end": 475, + "value": ":" + }, + { + "type": "whitespace", + "start": 475, + "end": 476, + "value": " " + }, + { + "type": "number", + "start": 476, + "end": 478, + "value": "45" + }, + { + "type": "comma", + "start": 478, + "end": 479, + "value": "," + }, + { + "type": "whitespace", + "start": 479, + "end": 487, + "value": "\n " + }, + { + "type": "word", + "start": 487, + "end": 489, + "value": "to" + }, + { + "type": "colon", + "start": 489, + "end": 490, + "value": ":" + }, + { + "type": "whitespace", + "start": 490, + "end": 491, + "value": " " + }, + { + "type": "word", + "start": 491, + "end": 507, + "value": "back_walls_width" + }, + { + "type": "whitespace", + "start": 507, + "end": 508, + "value": " " + }, + { + "type": "operator", + "start": 508, + "end": 509, + "value": "/" + }, + { + "type": "whitespace", + "start": 509, + "end": 510, + "value": " " + }, + { + "type": "number", + "start": 510, + "end": 511, + "value": "2" + }, + { + "type": "whitespace", + "start": 511, + "end": 512, + "value": " " + }, + { + "type": "operator", + "start": 512, + "end": 513, + "value": "+" + }, + { + "type": "whitespace", + "start": 513, + "end": 514, + "value": " " + }, + { + "type": "word", + "start": 514, + "end": 528, + "value": "wall_thickness" + }, + { + "type": "whitespace", + "start": 528, + "end": 529, + "value": " " + }, + { + "type": "operator", + "start": 529, + "end": 530, + "value": "/" + }, + { + "type": "whitespace", + "start": 530, + "end": 531, + "value": " " + }, + { + "type": "number", + "start": 531, + "end": 532, + "value": "2" + }, + { + "type": "whitespace", + "start": 532, + "end": 538, + "value": "\n " + }, + { + "type": "brace", + "start": 538, + "end": 539, + "value": "}" + }, + { + "type": "comma", + "start": 539, + "end": 540, + "value": "," + }, + { + "type": "whitespace", + "start": 540, + "end": 541, + "value": " " + }, + { + "type": "operator", + "start": 541, + "end": 542, + "value": "%" + }, + { + "type": "brace", + "start": 542, + "end": 543, + "value": ")" + }, + { + "type": "whitespace", + "start": 543, + "end": 546, + "value": "\n " + }, + { + "type": "operator", + "start": 546, + "end": 548, + "value": "|>" + }, + { + "type": "whitespace", + "start": 548, + "end": 549, + "value": " " + }, + { + "type": "word", + "start": 549, + "end": 554, + "value": "xLine" + }, + { + "type": "brace", + "start": 554, + "end": 555, + "value": "(" + }, + { + "type": "operator", + "start": 555, + "end": 556, + "value": "-" + }, + { + "type": "word", + "start": 556, + "end": 570, + "value": "wall_thickness" + }, + { + "type": "comma", + "start": 570, + "end": 571, + "value": "," + }, + { + "type": "whitespace", + "start": 571, + "end": 572, + "value": " " + }, + { + "type": "operator", + "start": 572, + "end": 573, + "value": "%" + }, + { + "type": "brace", + "start": 573, + "end": 574, + "value": ")" + }, + { + "type": "whitespace", + "start": 574, + "end": 577, + "value": "\n " + }, + { + "type": "operator", + "start": 577, + "end": 579, + "value": "|>" + }, + { + "type": "whitespace", + "start": 579, + "end": 580, + "value": " " + }, + { + "type": "word", + "start": 580, + "end": 593, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 593, + "end": 594, + "value": "(" + }, + { + "type": "brace", + "start": 594, + "end": 595, + "value": "{" + }, + { + "type": "whitespace", + "start": 595, + "end": 596, + "value": " " + }, + { + "type": "word", + "start": 596, + "end": 601, + "value": "angle" + }, + { + "type": "colon", + "start": 601, + "end": 602, + "value": ":" + }, + { + "type": "whitespace", + "start": 602, + "end": 603, + "value": " " + }, + { + "type": "number", + "start": 603, + "end": 606, + "value": "180" + }, + { + "type": "whitespace", + "start": 606, + "end": 607, + "value": " " + }, + { + "type": "operator", + "start": 607, + "end": 608, + "value": "-" + }, + { + "type": "whitespace", + "start": 608, + "end": 609, + "value": " " + }, + { + "type": "number", + "start": 609, + "end": 611, + "value": "45" + }, + { + "type": "comma", + "start": 611, + "end": 612, + "value": "," + }, + { + "type": "whitespace", + "start": 612, + "end": 613, + "value": " " + }, + { + "type": "word", + "start": 613, + "end": 615, + "value": "to" + }, + { + "type": "colon", + "start": 615, + "end": 616, + "value": ":" + }, + { + "type": "whitespace", + "start": 616, + "end": 617, + "value": " " + }, + { + "type": "word", + "start": 617, + "end": 631, + "value": "wall_thickness" + }, + { + "type": "whitespace", + "start": 631, + "end": 632, + "value": " " + }, + { + "type": "brace", + "start": 632, + "end": 633, + "value": "}" + }, + { + "type": "comma", + "start": 633, + "end": 634, + "value": "," + }, + { + "type": "whitespace", + "start": 634, + "end": 635, + "value": " " + }, + { + "type": "operator", + "start": 635, + "end": 636, + "value": "%" + }, + { + "type": "brace", + "start": 636, + "end": 637, + "value": ")" + }, + { + "type": "whitespace", + "start": 637, + "end": 640, + "value": "\n " + }, + { + "type": "operator", + "start": 640, + "end": 642, + "value": "|>" + }, + { + "type": "whitespace", + "start": 642, + "end": 643, + "value": " " + }, + { + "type": "word", + "start": 643, + "end": 650, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 650, + "end": 651, + "value": "(" + }, + { + "type": "word", + "start": 651, + "end": 657, + "value": "height" + }, + { + "type": "comma", + "start": 657, + "end": 658, + "value": "," + }, + { + "type": "whitespace", + "start": 658, + "end": 659, + "value": " " + }, + { + "type": "operator", + "start": 659, + "end": 660, + "value": "%" + }, + { + "type": "brace", + "start": 660, + "end": 661, + "value": ")" + }, + { + "type": "whitespace", + "start": 661, + "end": 664, + "value": "\n " + }, + { + "type": "operator", + "start": 664, + "end": 666, + "value": "|>" + }, + { + "type": "whitespace", + "start": 666, + "end": 667, + "value": " " + }, + { + "type": "word", + "start": 667, + "end": 674, + "value": "xLineTo" + }, + { + "type": "brace", + "start": 674, + "end": 675, + "value": "(" + }, + { + "type": "number", + "start": 675, + "end": 676, + "value": "0" + }, + { + "type": "comma", + "start": 676, + "end": 677, + "value": "," + }, + { + "type": "whitespace", + "start": 677, + "end": 678, + "value": " " + }, + { + "type": "operator", + "start": 678, + "end": 679, + "value": "%" + }, + { + "type": "brace", + "start": 679, + "end": 680, + "value": ")" + }, + { + "type": "whitespace", + "start": 680, + "end": 683, + "value": "\n " + }, + { + "type": "operator", + "start": 683, + "end": 685, + "value": "|>" + }, + { + "type": "whitespace", + "start": 685, + "end": 686, + "value": " " + }, + { + "type": "word", + "start": 686, + "end": 693, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 693, + "end": 694, + "value": "(" + }, + { + "type": "word", + "start": 694, + "end": 701, + "value": "segEndY" + }, + { + "type": "brace", + "start": 701, + "end": 702, + "value": "(" + }, + { + "type": "word", + "start": 702, + "end": 707, + "value": "seg01" + }, + { + "type": "brace", + "start": 707, + "end": 708, + "value": ")" + }, + { + "type": "comma", + "start": 708, + "end": 709, + "value": "," + }, + { + "type": "whitespace", + "start": 709, + "end": 710, + "value": " " + }, + { + "type": "operator", + "start": 710, + "end": 711, + "value": "%" + }, + { + "type": "brace", + "start": 711, + "end": 712, + "value": ")" + }, + { + "type": "whitespace", + "start": 712, + "end": 715, + "value": "\n " + }, + { + "type": "operator", + "start": 715, + "end": 717, + "value": "|>" + }, + { + "type": "whitespace", + "start": 717, + "end": 718, + "value": " " + }, + { + "type": "word", + "start": 718, + "end": 731, + "value": "angledLineToY" + }, + { + "type": "brace", + "start": 731, + "end": 732, + "value": "(" + }, + { + "type": "brace", + "start": 732, + "end": 733, + "value": "{" + }, + { + "type": "whitespace", + "start": 733, + "end": 734, + "value": " " + }, + { + "type": "word", + "start": 734, + "end": 739, + "value": "angle" + }, + { + "type": "colon", + "start": 739, + "end": 740, + "value": ":" + }, + { + "type": "whitespace", + "start": 740, + "end": 741, + "value": " " + }, + { + "type": "number", + "start": 741, + "end": 744, + "value": "180" + }, + { + "type": "whitespace", + "start": 744, + "end": 745, + "value": " " + }, + { + "type": "operator", + "start": 745, + "end": 746, + "value": "-" + }, + { + "type": "whitespace", + "start": 746, + "end": 747, + "value": " " + }, + { + "type": "number", + "start": 747, + "end": 749, + "value": "45" + }, + { + "type": "comma", + "start": 749, + "end": 750, + "value": "," + }, + { + "type": "whitespace", + "start": 750, + "end": 751, + "value": " " + }, + { + "type": "word", + "start": 751, + "end": 753, + "value": "to" + }, + { + "type": "colon", + "start": 753, + "end": 754, + "value": ":" + }, + { + "type": "whitespace", + "start": 754, + "end": 755, + "value": " " + }, + { + "type": "number", + "start": 755, + "end": 756, + "value": "0" + }, + { + "type": "whitespace", + "start": 756, + "end": 757, + "value": " " + }, + { + "type": "brace", + "start": 757, + "end": 758, + "value": "}" + }, + { + "type": "comma", + "start": 758, + "end": 759, + "value": "," + }, + { + "type": "whitespace", + "start": 759, + "end": 760, + "value": " " + }, + { + "type": "operator", + "start": 760, + "end": 761, + "value": "%" + }, + { + "type": "brace", + "start": 761, + "end": 762, + "value": ")" + }, + { + "type": "whitespace", + "start": 762, + "end": 765, + "value": "\n " + }, + { + "type": "operator", + "start": 765, + "end": 767, + "value": "|>" + }, + { + "type": "whitespace", + "start": 767, + "end": 768, + "value": " " + }, + { + "type": "word", + "start": 768, + "end": 773, + "value": "close" + }, + { + "type": "brace", + "start": 773, + "end": 774, + "value": "(" + }, + { + "type": "operator", + "start": 774, + "end": 775, + "value": "%" + }, + { + "type": "brace", + "start": 775, + "end": 776, + "value": ")" + }, + { + "type": "whitespace", + "start": 776, + "end": 777, + "value": "\n" + }, + { + "type": "word", + "start": 777, + "end": 784, + "value": "part001" + }, + { + "type": "whitespace", + "start": 784, + "end": 785, + "value": " " + }, + { + "type": "operator", + "start": 785, + "end": 786, + "value": "=" + }, + { + "type": "whitespace", + "start": 786, + "end": 787, + "value": " " + }, + { + "type": "word", + "start": 787, + "end": 794, + "value": "revolve" + }, + { + "type": "brace", + "start": 794, + "end": 795, + "value": "(" + }, + { + "type": "brace", + "start": 795, + "end": 796, + "value": "{" + }, + { + "type": "whitespace", + "start": 796, + "end": 799, + "value": "\n " + }, + { + "type": "word", + "start": 799, + "end": 804, + "value": "angle" + }, + { + "type": "colon", + "start": 804, + "end": 805, + "value": ":" + }, + { + "type": "whitespace", + "start": 805, + "end": 806, + "value": " " + }, + { + "type": "number", + "start": 806, + "end": 808, + "value": "90" + }, + { + "type": "comma", + "start": 808, + "end": 809, + "value": "," + }, + { + "type": "whitespace", + "start": 809, + "end": 812, + "value": "\n " + }, + { + "type": "word", + "start": 812, + "end": 816, + "value": "axis" + }, + { + "type": "colon", + "start": 816, + "end": 817, + "value": ":" + }, + { + "type": "whitespace", + "start": 817, + "end": 818, + "value": " " + }, + { + "type": "brace", + "start": 818, + "end": 819, + "value": "{" + }, + { + "type": "whitespace", + "start": 819, + "end": 824, + "value": "\n " + }, + { + "type": "word", + "start": 824, + "end": 830, + "value": "custom" + }, + { + "type": "colon", + "start": 830, + "end": 831, + "value": ":" + }, + { + "type": "whitespace", + "start": 831, + "end": 832, + "value": " " + }, + { + "type": "brace", + "start": 832, + "end": 833, + "value": "{" + }, + { + "type": "whitespace", + "start": 833, + "end": 840, + "value": "\n " + }, + { + "type": "word", + "start": 840, + "end": 844, + "value": "axis" + }, + { + "type": "colon", + "start": 844, + "end": 845, + "value": ":" + }, + { + "type": "whitespace", + "start": 845, + "end": 846, + "value": " " + }, + { + "type": "brace", + "start": 846, + "end": 847, + "value": "[" + }, + { + "type": "number", + "start": 847, + "end": 850, + "value": "1.0" + }, + { + "type": "comma", + "start": 850, + "end": 851, + "value": "," + }, + { + "type": "whitespace", + "start": 851, + "end": 852, + "value": " " + }, + { + "type": "number", + "start": 852, + "end": 855, + "value": "0.0" + }, + { + "type": "brace", + "start": 855, + "end": 856, + "value": "]" + }, + { + "type": "comma", + "start": 856, + "end": 857, + "value": "," + }, + { + "type": "whitespace", + "start": 857, + "end": 864, + "value": "\n " + }, + { + "type": "word", + "start": 864, + "end": 870, + "value": "origin" + }, + { + "type": "colon", + "start": 870, + "end": 871, + "value": ":" + }, + { + "type": "whitespace", + "start": 871, + "end": 872, + "value": " " + }, + { + "type": "brace", + "start": 872, + "end": 873, + "value": "[" + }, + { + "type": "number", + "start": 873, + "end": 876, + "value": "0.0" + }, + { + "type": "comma", + "start": 876, + "end": 877, + "value": "," + }, + { + "type": "whitespace", + "start": 877, + "end": 878, + "value": " " + }, + { + "type": "word", + "start": 878, + "end": 884, + "value": "height" + }, + { + "type": "whitespace", + "start": 884, + "end": 885, + "value": " " + }, + { + "type": "operator", + "start": 885, + "end": 886, + "value": "+" + }, + { + "type": "whitespace", + "start": 886, + "end": 887, + "value": " " + }, + { + "type": "number", + "start": 887, + "end": 895, + "value": ".0000001" + }, + { + "type": "brace", + "start": 895, + "end": 896, + "value": "]" + }, + { + "type": "whitespace", + "start": 896, + "end": 901, + "value": "\n " + }, + { + "type": "brace", + "start": 901, + "end": 902, + "value": "}" + }, + { + "type": "whitespace", + "start": 902, + "end": 905, + "value": "\n " + }, + { + "type": "brace", + "start": 905, + "end": 906, + "value": "}" + }, + { + "type": "whitespace", + "start": 906, + "end": 907, + "value": "\n" + }, + { + "type": "brace", + "start": 907, + "end": 908, + "value": "}" + }, + { + "type": "comma", + "start": 908, + "end": 909, + "value": "," + }, + { + "type": "whitespace", + "start": 909, + "end": 910, + "value": " " + }, + { + "type": "word", + "start": 910, + "end": 919, + "value": "sketch001" + }, + { + "type": "brace", + "start": 919, + "end": 920, + "value": ")" + }, + { + "type": "whitespace", + "start": 920, + "end": 922, + "value": "\n\n" + }, + { + "type": "word", + "start": 922, + "end": 931, + "value": "sketch002" + }, + { + "type": "whitespace", + "start": 931, + "end": 932, + "value": " " + }, + { + "type": "operator", + "start": 932, + "end": 933, + "value": "=" + }, + { + "type": "whitespace", + "start": 933, + "end": 934, + "value": " " + }, + { + "type": "word", + "start": 934, + "end": 947, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 947, + "end": 948, + "value": "(" + }, + { + "type": "string", + "start": 948, + "end": 953, + "value": "'-YZ'" + }, + { + "type": "brace", + "start": 953, + "end": 954, + "value": ")" + }, + { + "type": "whitespace", + "start": 954, + "end": 957, + "value": "\n " + }, + { + "type": "operator", + "start": 957, + "end": 959, + "value": "|>" + }, + { + "type": "whitespace", + "start": 959, + "end": 960, + "value": " " + }, + { + "type": "word", + "start": 960, + "end": 974, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 974, + "end": 975, + "value": "(" + }, + { + "type": "brace", + "start": 975, + "end": 976, + "value": "[" + }, + { + "type": "word", + "start": 976, + "end": 992, + "value": "back_walls_width" + }, + { + "type": "whitespace", + "start": 992, + "end": 993, + "value": " " + }, + { + "type": "operator", + "start": 993, + "end": 994, + "value": "/" + }, + { + "type": "whitespace", + "start": 994, + "end": 995, + "value": " " + }, + { + "type": "number", + "start": 995, + "end": 996, + "value": "2" + }, + { + "type": "comma", + "start": 996, + "end": 997, + "value": "," + }, + { + "type": "whitespace", + "start": 997, + "end": 998, + "value": " " + }, + { + "type": "number", + "start": 998, + "end": 999, + "value": "0" + }, + { + "type": "brace", + "start": 999, + "end": 1000, + "value": "]" + }, + { + "type": "comma", + "start": 1000, + "end": 1001, + "value": "," + }, + { + "type": "whitespace", + "start": 1001, + "end": 1002, + "value": " " + }, + { + "type": "operator", + "start": 1002, + "end": 1003, + "value": "%" + }, + { + "type": "brace", + "start": 1003, + "end": 1004, + "value": ")" + }, + { + "type": "whitespace", + "start": 1004, + "end": 1007, + "value": "\n " + }, + { + "type": "operator", + "start": 1007, + "end": 1009, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1009, + "end": 1010, + "value": " " + }, + { + "type": "word", + "start": 1010, + "end": 1015, + "value": "xLine" + }, + { + "type": "brace", + "start": 1015, + "end": 1016, + "value": "(" + }, + { + "type": "word", + "start": 1016, + "end": 1030, + "value": "wall_thickness" + }, + { + "type": "whitespace", + "start": 1030, + "end": 1031, + "value": " " + }, + { + "type": "operator", + "start": 1031, + "end": 1032, + "value": "/" + }, + { + "type": "whitespace", + "start": 1032, + "end": 1033, + "value": " " + }, + { + "type": "number", + "start": 1033, + "end": 1034, + "value": "2" + }, + { + "type": "comma", + "start": 1034, + "end": 1035, + "value": "," + }, + { + "type": "whitespace", + "start": 1035, + "end": 1036, + "value": " " + }, + { + "type": "operator", + "start": 1036, + "end": 1037, + "value": "%" + }, + { + "type": "brace", + "start": 1037, + "end": 1038, + "value": ")" + }, + { + "type": "whitespace", + "start": 1038, + "end": 1041, + "value": "\n " + }, + { + "type": "operator", + "start": 1041, + "end": 1043, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1043, + "end": 1044, + "value": " " + }, + { + "type": "word", + "start": 1044, + "end": 1057, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 1057, + "end": 1058, + "value": "(" + }, + { + "type": "brace", + "start": 1058, + "end": 1059, + "value": "{" + }, + { + "type": "whitespace", + "start": 1059, + "end": 1060, + "value": " " + }, + { + "type": "word", + "start": 1060, + "end": 1065, + "value": "angle" + }, + { + "type": "colon", + "start": 1065, + "end": 1066, + "value": ":" + }, + { + "type": "whitespace", + "start": 1066, + "end": 1067, + "value": " " + }, + { + "type": "number", + "start": 1067, + "end": 1069, + "value": "45" + }, + { + "type": "comma", + "start": 1069, + "end": 1070, + "value": "," + }, + { + "type": "whitespace", + "start": 1070, + "end": 1071, + "value": " " + }, + { + "type": "word", + "start": 1071, + "end": 1073, + "value": "to" + }, + { + "type": "colon", + "start": 1073, + "end": 1074, + "value": ":" + }, + { + "type": "whitespace", + "start": 1074, + "end": 1075, + "value": " " + }, + { + "type": "word", + "start": 1075, + "end": 1091, + "value": "back_walls_width" + }, + { + "type": "whitespace", + "start": 1091, + "end": 1092, + "value": " " + }, + { + "type": "brace", + "start": 1092, + "end": 1093, + "value": "}" + }, + { + "type": "comma", + "start": 1093, + "end": 1094, + "value": "," + }, + { + "type": "whitespace", + "start": 1094, + "end": 1095, + "value": " " + }, + { + "type": "operator", + "start": 1095, + "end": 1096, + "value": "%" + }, + { + "type": "comma", + "start": 1096, + "end": 1097, + "value": "," + }, + { + "type": "whitespace", + "start": 1097, + "end": 1098, + "value": " " + }, + { + "type": "dollar", + "start": 1098, + "end": 1099, + "value": "$" + }, + { + "type": "word", + "start": 1099, + "end": 1104, + "value": "seg02" + }, + { + "type": "brace", + "start": 1104, + "end": 1105, + "value": ")" + }, + { + "type": "whitespace", + "start": 1105, + "end": 1108, + "value": "\n " + }, + { + "type": "operator", + "start": 1108, + "end": 1110, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1110, + "end": 1111, + "value": " " + }, + { + "type": "word", + "start": 1111, + "end": 1118, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 1118, + "end": 1119, + "value": "(" + }, + { + "type": "word", + "start": 1119, + "end": 1125, + "value": "height" + }, + { + "type": "comma", + "start": 1125, + "end": 1126, + "value": "," + }, + { + "type": "whitespace", + "start": 1126, + "end": 1127, + "value": " " + }, + { + "type": "operator", + "start": 1127, + "end": 1128, + "value": "%" + }, + { + "type": "brace", + "start": 1128, + "end": 1129, + "value": ")" + }, + { + "type": "whitespace", + "start": 1129, + "end": 1132, + "value": "\n " + }, + { + "type": "operator", + "start": 1132, + "end": 1134, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1134, + "end": 1135, + "value": " " + }, + { + "type": "word", + "start": 1135, + "end": 1140, + "value": "xLine" + }, + { + "type": "brace", + "start": 1140, + "end": 1141, + "value": "(" + }, + { + "type": "operator", + "start": 1141, + "end": 1142, + "value": "-" + }, + { + "type": "word", + "start": 1142, + "end": 1156, + "value": "wall_thickness" + }, + { + "type": "comma", + "start": 1156, + "end": 1157, + "value": "," + }, + { + "type": "whitespace", + "start": 1157, + "end": 1158, + "value": " " + }, + { + "type": "operator", + "start": 1158, + "end": 1159, + "value": "%" + }, + { + "type": "brace", + "start": 1159, + "end": 1160, + "value": ")" + }, + { + "type": "whitespace", + "start": 1160, + "end": 1163, + "value": "\n " + }, + { + "type": "operator", + "start": 1163, + "end": 1165, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1165, + "end": 1166, + "value": " " + }, + { + "type": "word", + "start": 1166, + "end": 1173, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 1173, + "end": 1174, + "value": "(" + }, + { + "type": "word", + "start": 1174, + "end": 1181, + "value": "segEndY" + }, + { + "type": "brace", + "start": 1181, + "end": 1182, + "value": "(" + }, + { + "type": "word", + "start": 1182, + "end": 1187, + "value": "seg01" + }, + { + "type": "brace", + "start": 1187, + "end": 1188, + "value": ")" + }, + { + "type": "comma", + "start": 1188, + "end": 1189, + "value": "," + }, + { + "type": "whitespace", + "start": 1189, + "end": 1190, + "value": " " + }, + { + "type": "operator", + "start": 1190, + "end": 1191, + "value": "%" + }, + { + "type": "brace", + "start": 1191, + "end": 1192, + "value": ")" + }, + { + "type": "whitespace", + "start": 1192, + "end": 1195, + "value": "\n " + }, + { + "type": "operator", + "start": 1195, + "end": 1197, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1197, + "end": 1198, + "value": " " + }, + { + "type": "word", + "start": 1198, + "end": 1211, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 1211, + "end": 1212, + "value": "(" + }, + { + "type": "brace", + "start": 1212, + "end": 1213, + "value": "{" + }, + { + "type": "whitespace", + "start": 1213, + "end": 1221, + "value": "\n " + }, + { + "type": "word", + "start": 1221, + "end": 1226, + "value": "angle" + }, + { + "type": "colon", + "start": 1226, + "end": 1227, + "value": ":" + }, + { + "type": "whitespace", + "start": 1227, + "end": 1228, + "value": " " + }, + { + "type": "number", + "start": 1228, + "end": 1230, + "value": "45" + }, + { + "type": "comma", + "start": 1230, + "end": 1231, + "value": "," + }, + { + "type": "whitespace", + "start": 1231, + "end": 1239, + "value": "\n " + }, + { + "type": "word", + "start": 1239, + "end": 1241, + "value": "to" + }, + { + "type": "colon", + "start": 1241, + "end": 1242, + "value": ":" + }, + { + "type": "whitespace", + "start": 1242, + "end": 1243, + "value": " " + }, + { + "type": "word", + "start": 1243, + "end": 1259, + "value": "back_walls_width" + }, + { + "type": "whitespace", + "start": 1259, + "end": 1260, + "value": " " + }, + { + "type": "operator", + "start": 1260, + "end": 1261, + "value": "/" + }, + { + "type": "whitespace", + "start": 1261, + "end": 1262, + "value": " " + }, + { + "type": "number", + "start": 1262, + "end": 1263, + "value": "2" + }, + { + "type": "whitespace", + "start": 1263, + "end": 1264, + "value": " " + }, + { + "type": "operator", + "start": 1264, + "end": 1265, + "value": "+" + }, + { + "type": "whitespace", + "start": 1265, + "end": 1266, + "value": " " + }, + { + "type": "word", + "start": 1266, + "end": 1280, + "value": "wall_thickness" + }, + { + "type": "whitespace", + "start": 1280, + "end": 1281, + "value": " " + }, + { + "type": "operator", + "start": 1281, + "end": 1282, + "value": "/" + }, + { + "type": "whitespace", + "start": 1282, + "end": 1283, + "value": " " + }, + { + "type": "number", + "start": 1283, + "end": 1284, + "value": "2" + }, + { + "type": "whitespace", + "start": 1284, + "end": 1290, + "value": "\n " + }, + { + "type": "brace", + "start": 1290, + "end": 1291, + "value": "}" + }, + { + "type": "comma", + "start": 1291, + "end": 1292, + "value": "," + }, + { + "type": "whitespace", + "start": 1292, + "end": 1293, + "value": " " + }, + { + "type": "operator", + "start": 1293, + "end": 1294, + "value": "%" + }, + { + "type": "brace", + "start": 1294, + "end": 1295, + "value": ")" + }, + { + "type": "whitespace", + "start": 1295, + "end": 1298, + "value": "\n " + }, + { + "type": "operator", + "start": 1298, + "end": 1300, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1300, + "end": 1301, + "value": " " + }, + { + "type": "word", + "start": 1301, + "end": 1306, + "value": "xLine" + }, + { + "type": "brace", + "start": 1306, + "end": 1307, + "value": "(" + }, + { + "type": "operator", + "start": 1307, + "end": 1308, + "value": "-" + }, + { + "type": "word", + "start": 1308, + "end": 1322, + "value": "wall_thickness" + }, + { + "type": "comma", + "start": 1322, + "end": 1323, + "value": "," + }, + { + "type": "whitespace", + "start": 1323, + "end": 1324, + "value": " " + }, + { + "type": "operator", + "start": 1324, + "end": 1325, + "value": "%" + }, + { + "type": "brace", + "start": 1325, + "end": 1326, + "value": ")" + }, + { + "type": "whitespace", + "start": 1326, + "end": 1329, + "value": "\n " + }, + { + "type": "operator", + "start": 1329, + "end": 1331, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1331, + "end": 1332, + "value": " " + }, + { + "type": "word", + "start": 1332, + "end": 1345, + "value": "angledLineToX" + }, + { + "type": "brace", + "start": 1345, + "end": 1346, + "value": "(" + }, + { + "type": "brace", + "start": 1346, + "end": 1347, + "value": "{" + }, + { + "type": "whitespace", + "start": 1347, + "end": 1348, + "value": " " + }, + { + "type": "word", + "start": 1348, + "end": 1353, + "value": "angle" + }, + { + "type": "colon", + "start": 1353, + "end": 1354, + "value": ":" + }, + { + "type": "whitespace", + "start": 1354, + "end": 1355, + "value": " " + }, + { + "type": "number", + "start": 1355, + "end": 1358, + "value": "180" + }, + { + "type": "whitespace", + "start": 1358, + "end": 1359, + "value": " " + }, + { + "type": "operator", + "start": 1359, + "end": 1360, + "value": "-" + }, + { + "type": "whitespace", + "start": 1360, + "end": 1361, + "value": " " + }, + { + "type": "number", + "start": 1361, + "end": 1363, + "value": "45" + }, + { + "type": "comma", + "start": 1363, + "end": 1364, + "value": "," + }, + { + "type": "whitespace", + "start": 1364, + "end": 1365, + "value": " " + }, + { + "type": "word", + "start": 1365, + "end": 1367, + "value": "to" + }, + { + "type": "colon", + "start": 1367, + "end": 1368, + "value": ":" + }, + { + "type": "whitespace", + "start": 1368, + "end": 1369, + "value": " " + }, + { + "type": "word", + "start": 1369, + "end": 1383, + "value": "wall_thickness" + }, + { + "type": "whitespace", + "start": 1383, + "end": 1384, + "value": " " + }, + { + "type": "brace", + "start": 1384, + "end": 1385, + "value": "}" + }, + { + "type": "comma", + "start": 1385, + "end": 1386, + "value": "," + }, + { + "type": "whitespace", + "start": 1386, + "end": 1387, + "value": " " + }, + { + "type": "operator", + "start": 1387, + "end": 1388, + "value": "%" + }, + { + "type": "brace", + "start": 1388, + "end": 1389, + "value": ")" + }, + { + "type": "whitespace", + "start": 1389, + "end": 1392, + "value": "\n " + }, + { + "type": "operator", + "start": 1392, + "end": 1394, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1394, + "end": 1395, + "value": " " + }, + { + "type": "word", + "start": 1395, + "end": 1402, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 1402, + "end": 1403, + "value": "(" + }, + { + "type": "word", + "start": 1403, + "end": 1409, + "value": "height" + }, + { + "type": "comma", + "start": 1409, + "end": 1410, + "value": "," + }, + { + "type": "whitespace", + "start": 1410, + "end": 1411, + "value": " " + }, + { + "type": "operator", + "start": 1411, + "end": 1412, + "value": "%" + }, + { + "type": "brace", + "start": 1412, + "end": 1413, + "value": ")" + }, + { + "type": "whitespace", + "start": 1413, + "end": 1416, + "value": "\n " + }, + { + "type": "operator", + "start": 1416, + "end": 1418, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1418, + "end": 1419, + "value": " " + }, + { + "type": "word", + "start": 1419, + "end": 1426, + "value": "xLineTo" + }, + { + "type": "brace", + "start": 1426, + "end": 1427, + "value": "(" + }, + { + "type": "number", + "start": 1427, + "end": 1428, + "value": "0" + }, + { + "type": "comma", + "start": 1428, + "end": 1429, + "value": "," + }, + { + "type": "whitespace", + "start": 1429, + "end": 1430, + "value": " " + }, + { + "type": "operator", + "start": 1430, + "end": 1431, + "value": "%" + }, + { + "type": "brace", + "start": 1431, + "end": 1432, + "value": ")" + }, + { + "type": "whitespace", + "start": 1432, + "end": 1435, + "value": "\n " + }, + { + "type": "operator", + "start": 1435, + "end": 1437, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1437, + "end": 1438, + "value": " " + }, + { + "type": "word", + "start": 1438, + "end": 1445, + "value": "yLineTo" + }, + { + "type": "brace", + "start": 1445, + "end": 1446, + "value": "(" + }, + { + "type": "word", + "start": 1446, + "end": 1453, + "value": "segEndY" + }, + { + "type": "brace", + "start": 1453, + "end": 1454, + "value": "(" + }, + { + "type": "word", + "start": 1454, + "end": 1459, + "value": "seg02" + }, + { + "type": "brace", + "start": 1459, + "end": 1460, + "value": ")" + }, + { + "type": "comma", + "start": 1460, + "end": 1461, + "value": "," + }, + { + "type": "whitespace", + "start": 1461, + "end": 1462, + "value": " " + }, + { + "type": "operator", + "start": 1462, + "end": 1463, + "value": "%" + }, + { + "type": "brace", + "start": 1463, + "end": 1464, + "value": ")" + }, + { + "type": "whitespace", + "start": 1464, + "end": 1467, + "value": "\n " + }, + { + "type": "operator", + "start": 1467, + "end": 1469, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1469, + "end": 1470, + "value": " " + }, + { + "type": "word", + "start": 1470, + "end": 1483, + "value": "angledLineToY" + }, + { + "type": "brace", + "start": 1483, + "end": 1484, + "value": "(" + }, + { + "type": "brace", + "start": 1484, + "end": 1485, + "value": "{" + }, + { + "type": "whitespace", + "start": 1485, + "end": 1486, + "value": " " + }, + { + "type": "word", + "start": 1486, + "end": 1491, + "value": "angle" + }, + { + "type": "colon", + "start": 1491, + "end": 1492, + "value": ":" + }, + { + "type": "whitespace", + "start": 1492, + "end": 1493, + "value": " " + }, + { + "type": "number", + "start": 1493, + "end": 1496, + "value": "180" + }, + { + "type": "whitespace", + "start": 1496, + "end": 1497, + "value": " " + }, + { + "type": "operator", + "start": 1497, + "end": 1498, + "value": "-" + }, + { + "type": "whitespace", + "start": 1498, + "end": 1499, + "value": " " + }, + { + "type": "number", + "start": 1499, + "end": 1501, + "value": "45" + }, + { + "type": "comma", + "start": 1501, + "end": 1502, + "value": "," + }, + { + "type": "whitespace", + "start": 1502, + "end": 1503, + "value": " " + }, + { + "type": "word", + "start": 1503, + "end": 1505, + "value": "to" + }, + { + "type": "colon", + "start": 1505, + "end": 1506, + "value": ":" + }, + { + "type": "whitespace", + "start": 1506, + "end": 1507, + "value": " " + }, + { + "type": "number", + "start": 1507, + "end": 1508, + "value": "0" + }, + { + "type": "whitespace", + "start": 1508, + "end": 1509, + "value": " " + }, + { + "type": "brace", + "start": 1509, + "end": 1510, + "value": "}" + }, + { + "type": "comma", + "start": 1510, + "end": 1511, + "value": "," + }, + { + "type": "whitespace", + "start": 1511, + "end": 1512, + "value": " " + }, + { + "type": "operator", + "start": 1512, + "end": 1513, + "value": "%" + }, + { + "type": "brace", + "start": 1513, + "end": 1514, + "value": ")" + }, + { + "type": "whitespace", + "start": 1514, + "end": 1517, + "value": "\n " + }, + { + "type": "operator", + "start": 1517, + "end": 1519, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1519, + "end": 1520, + "value": " " + }, + { + "type": "word", + "start": 1520, + "end": 1525, + "value": "close" + }, + { + "type": "brace", + "start": 1525, + "end": 1526, + "value": "(" + }, + { + "type": "operator", + "start": 1526, + "end": 1527, + "value": "%" + }, + { + "type": "brace", + "start": 1527, + "end": 1528, + "value": ")" + }, + { + "type": "whitespace", + "start": 1528, + "end": 1531, + "value": "\n " + }, + { + "type": "operator", + "start": 1531, + "end": 1533, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1533, + "end": 1534, + "value": " " + }, + { + "type": "word", + "start": 1534, + "end": 1541, + "value": "extrude" + }, + { + "type": "brace", + "start": 1541, + "end": 1542, + "value": "(" + }, + { + "type": "word", + "start": 1542, + "end": 1553, + "value": "back_length" + }, + { + "type": "whitespace", + "start": 1553, + "end": 1554, + "value": " " + }, + { + "type": "operator", + "start": 1554, + "end": 1555, + "value": "-" + }, + { + "type": "whitespace", + "start": 1555, + "end": 1556, + "value": " " + }, + { + "type": "word", + "start": 1556, + "end": 1562, + "value": "height" + }, + { + "type": "comma", + "start": 1562, + "end": 1563, + "value": "," + }, + { + "type": "whitespace", + "start": 1563, + "end": 1564, + "value": " " + }, + { + "type": "operator", + "start": 1564, + "end": 1565, + "value": "%" + }, + { + "type": "brace", + "start": 1565, + "end": 1566, + "value": ")" + }, + { + "type": "whitespace", + "start": 1566, + "end": 1567, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/riddle_small/ast.snap b/src/wasm-lib/kcl/tests/riddle_small/ast.snap new file mode 100644 index 000000000..05f58bf33 --- /dev/null +++ b/src/wasm-lib/kcl/tests/riddle_small/ast.snap @@ -0,0 +1,660 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing riddle_small.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 14, + "id": { + "end": 6, + "name": "ANSWER", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 14, + "raw": "41803", + "start": 9, + "type": "Literal", + "type": "Literal", + "value": 41803 + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 14, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 72, + "id": { + "end": 20, + "name": "t", + "start": 19, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "argument": { + "end": 70, + "left": { + "end": 60, + "left": { + "end": 52, + "left": { + "end": 48, + "name": "ANSWER", + "start": 42, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 52, + "name": "s", + "start": 51, + "type": "Identifier", + "type": "Identifier" + }, + "start": 42, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 60, + "raw": "12345", + "start": 55, + "type": "Literal", + "type": "Literal", + "value": 12345 + }, + "start": 42, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "%", + "right": { + "end": 70, + "raw": "214748", + "start": 64, + "type": "Literal", + "type": "Literal", + "value": 214748 + }, + "start": 42, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 70, + "start": 34, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 72, + "start": 30 + }, + "end": 72, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 25, + "name": "s", + "start": 24, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 23, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 19, + "type": "VariableDeclarator" + } + ], + "end": 72, + "kind": "fn", + "start": 16, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 85, + "id": { + "end": 76, + "name": "xs", + "start": 74, + "type": "Identifier" + }, + "init": { + "end": 85, + "raw": "205804", + "start": 79, + "type": "Literal", + "type": "Literal", + "value": 205804 + }, + "start": 74, + "type": "VariableDeclarator" + } + ], + "end": 85, + "kind": "const", + "start": 74, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 96, + "id": { + "end": 88, + "name": "ys", + "start": 86, + "type": "Identifier" + }, + "init": { + "end": 96, + "raw": "71816", + "start": 91, + "type": "Literal", + "type": "Literal", + "value": 71816 + }, + "start": 86, + "type": "VariableDeclarator" + } + ], + "end": 96, + "kind": "const", + "start": 86, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 118, + "id": { + "end": 99, + "name": "ox", + "start": 97, + "type": "Identifier" + }, + "init": { + "end": 118, + "left": { + "end": 104, + "raw": "35", + "start": 102, + "type": "Literal", + "type": "Literal", + "value": 35 + }, + "operator": "-", + "right": { + "end": 118, + "left": { + "arguments": [ + { + "end": 112, + "name": "xs", + "start": 110, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 109, + "name": "t", + "start": 108, + "type": "Identifier" + }, + "end": 113, + "optional": false, + "start": 108, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "%", + "right": { + "end": 118, + "raw": "70", + "start": 116, + "type": "Literal", + "type": "Literal", + "value": 70 + }, + "start": 108, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 102, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 97, + "type": "VariableDeclarator" + } + ], + "end": 118, + "kind": "const", + "start": 97, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 141, + "id": { + "end": 122, + "name": "oy", + "start": 120, + "type": "Identifier" + }, + "init": { + "end": 141, + "left": { + "end": 127, + "raw": "35", + "start": 125, + "type": "Literal", + "type": "Literal", + "value": 35 + }, + "operator": "-", + "right": { + "end": 141, + "left": { + "arguments": [ + { + "end": 135, + "name": "ys", + "start": 133, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 132, + "name": "t", + "start": 131, + "type": "Identifier" + }, + "end": 136, + "optional": false, + "start": 131, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "%", + "right": { + "end": 141, + "raw": "70", + "start": 139, + "type": "Literal", + "type": "Literal", + "value": 70 + }, + "start": 131, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 125, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 120, + "type": "VariableDeclarator" + } + ], + "end": 141, + "kind": "const", + "start": 120, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 297, + "id": { + "end": 144, + "name": "r", + "start": 143, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 165, + "raw": "'XZ'", + "start": 161, + "type": "Literal", + "type": "Literal", + "value": "XZ" + } + ], + "callee": { + "end": 160, + "name": "startSketchOn", + "start": 147, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 147, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 190, + "name": "ox", + "start": 188, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 194, + "name": "oy", + "start": 192, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 195, + "start": 187, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 198, + "start": 197, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 186, + "name": "startProfileAt", + "start": 172, + "type": "Identifier" + }, + "end": 199, + "optional": false, + "start": 172, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 212, + "raw": "1", + "start": 211, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 215, + "raw": "0", + "start": 214, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 216, + "start": 210, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 219, + "start": 218, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 209, + "name": "line", + "start": 205, + "type": "Identifier" + }, + "end": 220, + "optional": false, + "start": 205, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 233, + "raw": "0", + "start": 232, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 237, + "raw": "1", + "start": 236, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "end": 237, + "operator": "-", + "start": 235, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 238, + "start": 231, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 241, + "start": 240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 230, + "name": "line", + "start": 226, + "type": "Identifier" + }, + "end": 242, + "optional": false, + "start": 226, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 256, + "raw": "1", + "start": 255, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "end": 256, + "operator": "-", + "start": 254, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 259, + "raw": "0", + "start": 258, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 260, + "start": 253, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 263, + "start": 262, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 252, + "name": "line", + "start": 248, + "type": "Identifier" + }, + "end": 264, + "optional": false, + "start": 248, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 277, + "start": 276, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 275, + "name": "close", + "start": 270, + "type": "Identifier" + }, + "end": 278, + "optional": false, + "start": 270, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 293, + "raw": "1", + "start": 292, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 296, + "start": 295, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 291, + "name": "extrude", + "start": 284, + "type": "Identifier" + }, + "end": 297, + "optional": false, + "start": 284, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 297, + "start": 147, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 143, + "type": "VariableDeclarator" + } + ], + "end": 297, + "kind": "const", + "start": 143, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 298, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 16, + "start": 14, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ], + "1": [ + { + "end": 74, + "start": 72, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/riddle_small/input.kcl b/src/wasm-lib/kcl/tests/riddle_small/input.kcl new file mode 100644 index 000000000..ed226222c --- /dev/null +++ b/src/wasm-lib/kcl/tests/riddle_small/input.kcl @@ -0,0 +1,17 @@ +ANSWER = 41803 + +fn t = (s) => { + return (ANSWER * s + 12345) % 214748 +} + +xs = 205804 +ys = 71816 +ox = 35 - (t(xs) % 70) +oy = 35 - (t(ys) % 70) +r = startSketchOn('XZ') + |> startProfileAt([ox, oy], %) + |> line([1, 0], %) + |> line([0, -1], %) + |> line([-1, 0], %) + |> close(%) + |> extrude(1, %) diff --git a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap new file mode 100644 index 000000000..10ea846d5 --- /dev/null +++ b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap @@ -0,0 +1,510 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing riddle_small.kcl +snapshot_kind: text +--- +{ + "environments": [ + { + "bindings": { + "ANSWER": { + "type": "Int", + "value": 41803, + "__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": [ + 102, + 104, + 0 + ] + }, + { + "sourceRange": [ + 9, + 14, + 0 + ] + }, + { + "sourceRange": [ + 79, + 85, + 0 + ] + }, + { + "sourceRange": [ + 55, + 60, + 0 + ] + }, + { + "sourceRange": [ + 64, + 70, + 0 + ] + }, + { + "sourceRange": [ + 116, + 118, + 0 + ] + } + ] + }, + "oy": { + "type": "Number", + "value": 34.0, + "__meta": [ + { + "sourceRange": [ + 125, + 127, + 0 + ] + }, + { + "sourceRange": [ + 9, + 14, + 0 + ] + }, + { + "sourceRange": [ + 91, + 96, + 0 + ] + }, + { + "sourceRange": [ + 55, + 60, + 0 + ] + }, + { + "sourceRange": [ + 64, + 70, + 0 + ] + }, + { + "sourceRange": [ + 139, + 141, + 0 + ] + } + ] + }, + "r": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 205, + 220, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 226, + 242, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 248, + 264, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 270, + 278, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 205, + 220, + 0 + ] + }, + "from": [ + -26.0, + 34.0 + ], + "tag": null, + "to": [ + -25.0, + 34.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 226, + 242, + 0 + ] + }, + "from": [ + -25.0, + 34.0 + ], + "tag": null, + "to": [ + -25.0, + 33.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 248, + 264, + 0 + ] + }, + "from": [ + -25.0, + 33.0 + ], + "tag": null, + "to": [ + -26.0, + 33.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 270, + 278, + 0 + ] + }, + "from": [ + -26.0, + 33.0 + ], + "tag": null, + "to": [ + -26.0, + 34.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + -26.0, + 34.0 + ], + "to": [ + -26.0, + 34.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 172, + 199, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 172, + 199, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 172, + 199, + 0 + ] + } + ] + }, + "t": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 70, + "left": { + "end": 60, + "left": { + "end": 52, + "left": { + "end": 48, + "name": "ANSWER", + "start": 42, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 52, + "name": "s", + "start": 51, + "type": "Identifier", + "type": "Identifier" + }, + "start": 42, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 60, + "raw": "12345", + "start": 55, + "type": "Literal", + "type": "Literal", + "value": 12345 + }, + "start": 42, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "%", + "right": { + "end": 70, + "raw": "214748", + "start": 64, + "type": "Literal", + "type": "Literal", + "value": 214748 + }, + "start": 42, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 70, + "start": 34, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 72, + "start": 30 + }, + "end": 72, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 25, + "name": "s", + "start": 24, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 23, + "type": "FunctionExpression" + }, + "memory": { + "environments": [ + { + "bindings": { + "ANSWER": { + "type": "Int", + "value": 41803, + "__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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 23, + 72, + 0 + ] + } + ] + }, + "xs": { + "type": "Int", + "value": 205804, + "__meta": [ + { + "sourceRange": [ + 79, + 85, + 0 + ] + } + ] + }, + "ys": { + "type": "Int", + "value": 71816, + "__meta": [ + { + "sourceRange": [ + 91, + 96, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/riddle_small/rendered_model.png b/src/wasm-lib/kcl/tests/riddle_small/rendered_model.png new file mode 100644 index 000000000..ad8b30ddd Binary files /dev/null and b/src/wasm-lib/kcl/tests/riddle_small/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/riddle_small/tokens.snap b/src/wasm-lib/kcl/tests/riddle_small/tokens.snap new file mode 100644 index 000000000..7980d4490 --- /dev/null +++ b/src/wasm-lib/kcl/tests/riddle_small/tokens.snap @@ -0,0 +1,1077 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing riddle_small.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 6, + "value": "ANSWER" + }, + { + "type": "whitespace", + "start": 6, + "end": 7, + "value": " " + }, + { + "type": "operator", + "start": 7, + "end": 8, + "value": "=" + }, + { + "type": "whitespace", + "start": 8, + "end": 9, + "value": " " + }, + { + "type": "number", + "start": 9, + "end": 14, + "value": "41803" + }, + { + "type": "whitespace", + "start": 14, + "end": 16, + "value": "\n\n" + }, + { + "type": "keyword", + "start": 16, + "end": 18, + "value": "fn" + }, + { + "type": "whitespace", + "start": 18, + "end": 19, + "value": " " + }, + { + "type": "word", + "start": 19, + "end": 20, + "value": "t" + }, + { + "type": "whitespace", + "start": 20, + "end": 21, + "value": " " + }, + { + "type": "operator", + "start": 21, + "end": 22, + "value": "=" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": " " + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "word", + "start": 24, + "end": 25, + "value": "s" + }, + { + "type": "brace", + "start": 25, + "end": 26, + "value": ")" + }, + { + "type": "whitespace", + "start": 26, + "end": 27, + "value": " " + }, + { + "type": "operator", + "start": 27, + "end": 29, + "value": "=>" + }, + { + "type": "whitespace", + "start": 29, + "end": 30, + "value": " " + }, + { + "type": "brace", + "start": 30, + "end": 31, + "value": "{" + }, + { + "type": "whitespace", + "start": 31, + "end": 34, + "value": "\n " + }, + { + "type": "keyword", + "start": 34, + "end": 40, + "value": "return" + }, + { + "type": "whitespace", + "start": 40, + "end": 41, + "value": " " + }, + { + "type": "brace", + "start": 41, + "end": 42, + "value": "(" + }, + { + "type": "word", + "start": 42, + "end": 48, + "value": "ANSWER" + }, + { + "type": "whitespace", + "start": 48, + "end": 49, + "value": " " + }, + { + "type": "operator", + "start": 49, + "end": 50, + "value": "*" + }, + { + "type": "whitespace", + "start": 50, + "end": 51, + "value": " " + }, + { + "type": "word", + "start": 51, + "end": 52, + "value": "s" + }, + { + "type": "whitespace", + "start": 52, + "end": 53, + "value": " " + }, + { + "type": "operator", + "start": 53, + "end": 54, + "value": "+" + }, + { + "type": "whitespace", + "start": 54, + "end": 55, + "value": " " + }, + { + "type": "number", + "start": 55, + "end": 60, + "value": "12345" + }, + { + "type": "brace", + "start": 60, + "end": 61, + "value": ")" + }, + { + "type": "whitespace", + "start": 61, + "end": 62, + "value": " " + }, + { + "type": "operator", + "start": 62, + "end": 63, + "value": "%" + }, + { + "type": "whitespace", + "start": 63, + "end": 64, + "value": " " + }, + { + "type": "number", + "start": 64, + "end": 70, + "value": "214748" + }, + { + "type": "whitespace", + "start": 70, + "end": 71, + "value": "\n" + }, + { + "type": "brace", + "start": 71, + "end": 72, + "value": "}" + }, + { + "type": "whitespace", + "start": 72, + "end": 74, + "value": "\n\n" + }, + { + "type": "word", + "start": 74, + "end": 76, + "value": "xs" + }, + { + "type": "whitespace", + "start": 76, + "end": 77, + "value": " " + }, + { + "type": "operator", + "start": 77, + "end": 78, + "value": "=" + }, + { + "type": "whitespace", + "start": 78, + "end": 79, + "value": " " + }, + { + "type": "number", + "start": 79, + "end": 85, + "value": "205804" + }, + { + "type": "whitespace", + "start": 85, + "end": 86, + "value": "\n" + }, + { + "type": "word", + "start": 86, + "end": 88, + "value": "ys" + }, + { + "type": "whitespace", + "start": 88, + "end": 89, + "value": " " + }, + { + "type": "operator", + "start": 89, + "end": 90, + "value": "=" + }, + { + "type": "whitespace", + "start": 90, + "end": 91, + "value": " " + }, + { + "type": "number", + "start": 91, + "end": 96, + "value": "71816" + }, + { + "type": "whitespace", + "start": 96, + "end": 97, + "value": "\n" + }, + { + "type": "word", + "start": 97, + "end": 99, + "value": "ox" + }, + { + "type": "whitespace", + "start": 99, + "end": 100, + "value": " " + }, + { + "type": "operator", + "start": 100, + "end": 101, + "value": "=" + }, + { + "type": "whitespace", + "start": 101, + "end": 102, + "value": " " + }, + { + "type": "number", + "start": 102, + "end": 104, + "value": "35" + }, + { + "type": "whitespace", + "start": 104, + "end": 105, + "value": " " + }, + { + "type": "operator", + "start": 105, + "end": 106, + "value": "-" + }, + { + "type": "whitespace", + "start": 106, + "end": 107, + "value": " " + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": "(" + }, + { + "type": "word", + "start": 108, + "end": 109, + "value": "t" + }, + { + "type": "brace", + "start": 109, + "end": 110, + "value": "(" + }, + { + "type": "word", + "start": 110, + "end": 112, + "value": "xs" + }, + { + "type": "brace", + "start": 112, + "end": 113, + "value": ")" + }, + { + "type": "whitespace", + "start": 113, + "end": 114, + "value": " " + }, + { + "type": "operator", + "start": 114, + "end": 115, + "value": "%" + }, + { + "type": "whitespace", + "start": 115, + "end": 116, + "value": " " + }, + { + "type": "number", + "start": 116, + "end": 118, + "value": "70" + }, + { + "type": "brace", + "start": 118, + "end": 119, + "value": ")" + }, + { + "type": "whitespace", + "start": 119, + "end": 120, + "value": "\n" + }, + { + "type": "word", + "start": 120, + "end": 122, + "value": "oy" + }, + { + "type": "whitespace", + "start": 122, + "end": 123, + "value": " " + }, + { + "type": "operator", + "start": 123, + "end": 124, + "value": "=" + }, + { + "type": "whitespace", + "start": 124, + "end": 125, + "value": " " + }, + { + "type": "number", + "start": 125, + "end": 127, + "value": "35" + }, + { + "type": "whitespace", + "start": 127, + "end": 128, + "value": " " + }, + { + "type": "operator", + "start": 128, + "end": 129, + "value": "-" + }, + { + "type": "whitespace", + "start": 129, + "end": 130, + "value": " " + }, + { + "type": "brace", + "start": 130, + "end": 131, + "value": "(" + }, + { + "type": "word", + "start": 131, + "end": 132, + "value": "t" + }, + { + "type": "brace", + "start": 132, + "end": 133, + "value": "(" + }, + { + "type": "word", + "start": 133, + "end": 135, + "value": "ys" + }, + { + "type": "brace", + "start": 135, + "end": 136, + "value": ")" + }, + { + "type": "whitespace", + "start": 136, + "end": 137, + "value": " " + }, + { + "type": "operator", + "start": 137, + "end": 138, + "value": "%" + }, + { + "type": "whitespace", + "start": 138, + "end": 139, + "value": " " + }, + { + "type": "number", + "start": 139, + "end": 141, + "value": "70" + }, + { + "type": "brace", + "start": 141, + "end": 142, + "value": ")" + }, + { + "type": "whitespace", + "start": 142, + "end": 143, + "value": "\n" + }, + { + "type": "word", + "start": 143, + "end": 144, + "value": "r" + }, + { + "type": "whitespace", + "start": 144, + "end": 145, + "value": " " + }, + { + "type": "operator", + "start": 145, + "end": 146, + "value": "=" + }, + { + "type": "whitespace", + "start": 146, + "end": 147, + "value": " " + }, + { + "type": "word", + "start": 147, + "end": 160, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 160, + "end": 161, + "value": "(" + }, + { + "type": "string", + "start": 161, + "end": 165, + "value": "'XZ'" + }, + { + "type": "brace", + "start": 165, + "end": 166, + "value": ")" + }, + { + "type": "whitespace", + "start": 166, + "end": 169, + "value": "\n " + }, + { + "type": "operator", + "start": 169, + "end": 171, + "value": "|>" + }, + { + "type": "whitespace", + "start": 171, + "end": 172, + "value": " " + }, + { + "type": "word", + "start": 172, + "end": 186, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 186, + "end": 187, + "value": "(" + }, + { + "type": "brace", + "start": 187, + "end": 188, + "value": "[" + }, + { + "type": "word", + "start": 188, + "end": 190, + "value": "ox" + }, + { + "type": "comma", + "start": 190, + "end": 191, + "value": "," + }, + { + "type": "whitespace", + "start": 191, + "end": 192, + "value": " " + }, + { + "type": "word", + "start": 192, + "end": 194, + "value": "oy" + }, + { + "type": "brace", + "start": 194, + "end": 195, + "value": "]" + }, + { + "type": "comma", + "start": 195, + "end": 196, + "value": "," + }, + { + "type": "whitespace", + "start": 196, + "end": 197, + "value": " " + }, + { + "type": "operator", + "start": 197, + "end": 198, + "value": "%" + }, + { + "type": "brace", + "start": 198, + "end": 199, + "value": ")" + }, + { + "type": "whitespace", + "start": 199, + "end": 202, + "value": "\n " + }, + { + "type": "operator", + "start": 202, + "end": 204, + "value": "|>" + }, + { + "type": "whitespace", + "start": 204, + "end": 205, + "value": " " + }, + { + "type": "word", + "start": 205, + "end": 209, + "value": "line" + }, + { + "type": "brace", + "start": 209, + "end": 210, + "value": "(" + }, + { + "type": "brace", + "start": 210, + "end": 211, + "value": "[" + }, + { + "type": "number", + "start": 211, + "end": 212, + "value": "1" + }, + { + "type": "comma", + "start": 212, + "end": 213, + "value": "," + }, + { + "type": "whitespace", + "start": 213, + "end": 214, + "value": " " + }, + { + "type": "number", + "start": 214, + "end": 215, + "value": "0" + }, + { + "type": "brace", + "start": 215, + "end": 216, + "value": "]" + }, + { + "type": "comma", + "start": 216, + "end": 217, + "value": "," + }, + { + "type": "whitespace", + "start": 217, + "end": 218, + "value": " " + }, + { + "type": "operator", + "start": 218, + "end": 219, + "value": "%" + }, + { + "type": "brace", + "start": 219, + "end": 220, + "value": ")" + }, + { + "type": "whitespace", + "start": 220, + "end": 223, + "value": "\n " + }, + { + "type": "operator", + "start": 223, + "end": 225, + "value": "|>" + }, + { + "type": "whitespace", + "start": 225, + "end": 226, + "value": " " + }, + { + "type": "word", + "start": 226, + "end": 230, + "value": "line" + }, + { + "type": "brace", + "start": 230, + "end": 231, + "value": "(" + }, + { + "type": "brace", + "start": 231, + "end": 232, + "value": "[" + }, + { + "type": "number", + "start": 232, + "end": 233, + "value": "0" + }, + { + "type": "comma", + "start": 233, + "end": 234, + "value": "," + }, + { + "type": "whitespace", + "start": 234, + "end": 235, + "value": " " + }, + { + "type": "operator", + "start": 235, + "end": 236, + "value": "-" + }, + { + "type": "number", + "start": 236, + "end": 237, + "value": "1" + }, + { + "type": "brace", + "start": 237, + "end": 238, + "value": "]" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "operator", + "start": 240, + "end": 241, + "value": "%" + }, + { + "type": "brace", + "start": 241, + "end": 242, + "value": ")" + }, + { + "type": "whitespace", + "start": 242, + "end": 245, + "value": "\n " + }, + { + "type": "operator", + "start": 245, + "end": 247, + "value": "|>" + }, + { + "type": "whitespace", + "start": 247, + "end": 248, + "value": " " + }, + { + "type": "word", + "start": 248, + "end": 252, + "value": "line" + }, + { + "type": "brace", + "start": 252, + "end": 253, + "value": "(" + }, + { + "type": "brace", + "start": 253, + "end": 254, + "value": "[" + }, + { + "type": "operator", + "start": 254, + "end": 255, + "value": "-" + }, + { + "type": "number", + "start": 255, + "end": 256, + "value": "1" + }, + { + "type": "comma", + "start": 256, + "end": 257, + "value": "," + }, + { + "type": "whitespace", + "start": 257, + "end": 258, + "value": " " + }, + { + "type": "number", + "start": 258, + "end": 259, + "value": "0" + }, + { + "type": "brace", + "start": 259, + "end": 260, + "value": "]" + }, + { + "type": "comma", + "start": 260, + "end": 261, + "value": "," + }, + { + "type": "whitespace", + "start": 261, + "end": 262, + "value": " " + }, + { + "type": "operator", + "start": 262, + "end": 263, + "value": "%" + }, + { + "type": "brace", + "start": 263, + "end": 264, + "value": ")" + }, + { + "type": "whitespace", + "start": 264, + "end": 267, + "value": "\n " + }, + { + "type": "operator", + "start": 267, + "end": 269, + "value": "|>" + }, + { + "type": "whitespace", + "start": 269, + "end": 270, + "value": " " + }, + { + "type": "word", + "start": 270, + "end": 275, + "value": "close" + }, + { + "type": "brace", + "start": 275, + "end": 276, + "value": "(" + }, + { + "type": "operator", + "start": 276, + "end": 277, + "value": "%" + }, + { + "type": "brace", + "start": 277, + "end": 278, + "value": ")" + }, + { + "type": "whitespace", + "start": 278, + "end": 281, + "value": "\n " + }, + { + "type": "operator", + "start": 281, + "end": 283, + "value": "|>" + }, + { + "type": "whitespace", + "start": 283, + "end": 284, + "value": " " + }, + { + "type": "word", + "start": 284, + "end": 291, + "value": "extrude" + }, + { + "type": "brace", + "start": 291, + "end": 292, + "value": "(" + }, + { + "type": "number", + "start": 292, + "end": 293, + "value": "1" + }, + { + "type": "comma", + "start": 293, + "end": 294, + "value": "," + }, + { + "type": "whitespace", + "start": 294, + "end": 295, + "value": " " + }, + { + "type": "operator", + "start": 295, + "end": 296, + "value": "%" + }, + { + "type": "brace", + "start": 296, + "end": 297, + "value": ")" + }, + { + "type": "whitespace", + "start": 297, + "end": 298, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/ast.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/ast.snap new file mode 100644 index 000000000..5deeee8fc --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/ast.snap @@ -0,0 +1,1647 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch-on-chamfer-two-times-different-order.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 425, + "id": { + "end": 9, + "name": "sketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 30, + "raw": "'XZ'", + "start": 26, + "type": "Literal", + "type": "Literal", + "value": "XZ" + } + ], + "callee": { + "end": 25, + "name": "startSketchOn", + "start": 12, + "type": "Identifier" + }, + "end": 31, + "optional": false, + "start": 12, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57, + "raw": "75.8", + "start": 53, + "type": "Literal", + "type": "Literal", + "value": 75.8 + }, + { + "end": 64, + "raw": "317.2", + "start": 59, + "type": "Literal", + "type": "Literal", + "value": 317.2 + } + ], + "end": 65, + "start": 52, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68, + "start": 67, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51, + "name": "startProfileAt", + "start": 37, + "type": "Identifier" + }, + "end": 69, + "optional": false, + "start": 37, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 118, + "raw": "0", + "start": 117, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 126, + "raw": "268.43", + "start": 120, + "type": "Literal", + "type": "Literal", + "value": 268.43 + } + ], + "end": 127, + "start": 116, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 130, + "start": 129, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + } + ], + "callee": { + "end": 115, + "name": "angledLine", + "start": 105, + "type": "Identifier" + }, + "end": 154, + "optional": false, + "start": 105, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 213, + "left": { + "arguments": [ + { + "end": 207, + "name": "rectangleSegmentA001", + "start": 187, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 186, + "name": "segAng", + "start": 180, + "type": "Identifier" + }, + "end": 208, + "optional": false, + "start": 180, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 213, + "raw": "90", + "start": 211, + "type": "Literal", + "type": "Literal", + "value": 90 + }, + "start": 180, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 228, + "raw": "217.26", + "start": 222, + "type": "Literal", + "type": "Literal", + "value": 217.26 + } + ], + "end": 235, + "start": 171, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 238, + "start": 237, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + ], + "callee": { + "end": 170, + "name": "angledLine", + "start": 160, + "type": "Identifier" + }, + "end": 247, + "optional": false, + "start": 160, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 300, + "name": "rectangleSegmentA001", + "start": 280, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 279, + "name": "segAng", + "start": 273, + "type": "Identifier" + }, + "end": 301, + "optional": false, + "start": 273, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "argument": { + "arguments": [ + { + "end": 338, + "name": "rectangleSegmentA001", + "start": 318, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 317, + "name": "segLen", + "start": 311, + "type": "Identifier" + }, + "end": 339, + "optional": false, + "start": 311, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 339, + "operator": "-", + "start": 310, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 346, + "start": 264, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 349, + "start": 348, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 263, + "name": "angledLine", + "start": 253, + "type": "Identifier" + }, + "end": 350, + "optional": false, + "start": 253, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 379, + "start": 378, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 377, + "name": "profileStartX", + "start": 364, + "type": "Identifier" + }, + "end": 380, + "optional": false, + "start": 364, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 397, + "start": 396, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 395, + "name": "profileStartY", + "start": 382, + "type": "Identifier" + }, + "end": 398, + "optional": false, + "start": 382, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 399, + "start": 363, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 402, + "start": 401, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg02" + } + ], + "callee": { + "end": 362, + "name": "lineTo", + "start": 356, + "type": "Identifier" + }, + "end": 411, + "optional": false, + "start": 356, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 424, + "start": 423, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 422, + "name": "close", + "start": 417, + "type": "Identifier" + }, + "end": 425, + "optional": false, + "start": 417, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 425, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 99, + "start": 69, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "[$startCapTag, $EndCapTag]", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 12, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 425, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 654, + "id": { + "end": 436, + "name": "extrude001", + "start": 426, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 450, + "raw": "100", + "start": 447, + "type": "Literal", + "type": "Literal", + "value": 100 + }, + { + "end": 461, + "name": "sketch001", + "start": 452, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 446, + "name": "extrude", + "start": 439, + "type": "Identifier" + }, + "end": 462, + "optional": false, + "start": 439, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 504, + "properties": [ + { + "end": 487, + "key": { + "end": 483, + "name": "radius", + "start": 477, + "type": "Identifier" + }, + "start": 477, + "type": "ObjectProperty", + "value": { + "end": 487, + "raw": "20", + "start": 485, + "type": "Literal", + "type": "Literal", + "value": 20 + } + }, + { + "end": 502, + "key": { + "end": 493, + "name": "tags", + "start": 489, + "type": "Identifier" + }, + "start": 489, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 501, + "name": "seg01", + "start": 496, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 502, + "start": 495, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 475, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 507, + "start": 506, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 474, + "name": "fillet", + "start": 468, + "type": "Identifier" + }, + "end": 508, + "optional": false, + "start": 468, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 587, + "properties": [ + { + "end": 541, + "key": { + "end": 537, + "name": "length", + "start": 531, + "type": "Identifier" + }, + "start": 531, + "type": "ObjectProperty", + "value": { + "end": 541, + "raw": "50", + "start": 539, + "type": "Literal", + "type": "Literal", + "value": 50 + } + }, + { + "end": 580, + "key": { + "end": 554, + "name": "tags", + "start": 550, + "type": "Identifier" + }, + "start": 550, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "arguments": [ + { + "end": 578, + "name": "seg01", + "start": 573, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 572, + "name": "getOppositeEdge", + "start": 557, + "type": "Identifier" + }, + "end": 579, + "optional": false, + "start": 557, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 580, + "start": 556, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 522, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 590, + "start": 589, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg03" + } + ], + "callee": { + "end": 521, + "name": "chamfer", + "start": 514, + "type": "Identifier" + }, + "end": 599, + "optional": false, + "start": 514, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 642, + "properties": [ + { + "end": 625, + "key": { + "end": 621, + "name": "length", + "start": 615, + "type": "Identifier" + }, + "start": 615, + "type": "ObjectProperty", + "value": { + "end": 625, + "raw": "50", + "start": 623, + "type": "Literal", + "type": "Literal", + "value": 50 + } + }, + { + "end": 640, + "key": { + "end": 631, + "name": "tags", + "start": 627, + "type": "Identifier" + }, + "start": 627, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 639, + "name": "seg02", + "start": 634, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 640, + "start": 633, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 613, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 645, + "start": 644, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg04" + } + ], + "callee": { + "end": 612, + "name": "chamfer", + "start": 605, + "type": "Identifier" + }, + "end": 654, + "optional": false, + "start": 605, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 654, + "start": 439, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 426, + "type": "VariableDeclarator" + } + ], + "end": 654, + "kind": "const", + "start": 426, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1094, + "id": { + "end": 665, + "name": "sketch003", + "start": 656, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 692, + "name": "extrude001", + "start": 682, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 699, + "name": "seg04", + "start": 694, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 681, + "name": "startSketchOn", + "start": 668, + "type": "Identifier" + }, + "end": 700, + "optional": false, + "start": 668, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 727, + "raw": "69.1", + "start": 723, + "type": "Literal", + "type": "Literal", + "value": 69.1 + }, + "end": 727, + "operator": "-", + "start": 722, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 735, + "raw": "277.34", + "start": 729, + "type": "Literal", + "type": "Literal", + "value": 277.34 + } + ], + "end": 736, + "start": 721, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 739, + "start": 738, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 720, + "name": "startProfileAt", + "start": 706, + "type": "Identifier" + }, + "end": 740, + "optional": false, + "start": 706, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 759, + "raw": "0", + "start": 758, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 766, + "raw": "41.48", + "start": 761, + "type": "Literal", + "type": "Literal", + "value": 41.48 + } + ], + "end": 767, + "start": 757, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 770, + "start": 769, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + } + ], + "callee": { + "end": 756, + "name": "angledLine", + "start": 746, + "type": "Identifier" + }, + "end": 794, + "optional": false, + "start": 746, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 853, + "left": { + "arguments": [ + { + "end": 847, + "name": "rectangleSegmentA003", + "start": 827, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 826, + "name": "segAng", + "start": 820, + "type": "Identifier" + }, + "end": 848, + "optional": false, + "start": 820, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 853, + "raw": "90", + "start": 851, + "type": "Literal", + "type": "Literal", + "value": 90 + }, + "start": 820, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 867, + "raw": "104.8", + "start": 862, + "type": "Literal", + "type": "Literal", + "value": 104.8 + } + ], + "end": 874, + "start": 811, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 877, + "start": 876, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + } + ], + "callee": { + "end": 810, + "name": "angledLine", + "start": 800, + "type": "Identifier" + }, + "end": 901, + "optional": false, + "start": 800, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 954, + "name": "rectangleSegmentA003", + "start": 934, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 933, + "name": "segAng", + "start": 927, + "type": "Identifier" + }, + "end": 955, + "optional": false, + "start": 927, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "argument": { + "arguments": [ + { + "end": 992, + "name": "rectangleSegmentA003", + "start": 972, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 971, + "name": "segLen", + "start": 965, + "type": "Identifier" + }, + "end": 993, + "optional": false, + "start": 965, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 993, + "operator": "-", + "start": 964, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1000, + "start": 918, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1003, + "start": 1002, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + } + ], + "callee": { + "end": 917, + "name": "angledLine", + "start": 907, + "type": "Identifier" + }, + "end": 1027, + "optional": false, + "start": 907, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 1056, + "start": 1055, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1054, + "name": "profileStartX", + "start": 1041, + "type": "Identifier" + }, + "end": 1057, + "optional": false, + "start": 1041, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1074, + "start": 1073, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1072, + "name": "profileStartY", + "start": 1059, + "type": "Identifier" + }, + "end": 1075, + "optional": false, + "start": 1059, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1076, + "start": 1040, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1079, + "start": 1078, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1039, + "name": "lineTo", + "start": 1033, + "type": "Identifier" + }, + "end": 1080, + "optional": false, + "start": 1033, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1093, + "start": 1092, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1091, + "name": "close", + "start": 1086, + "type": "Identifier" + }, + "end": 1094, + "optional": false, + "start": 1086, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1094, + "start": 668, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 656, + "type": "VariableDeclarator" + } + ], + "end": 1094, + "kind": "const", + "start": 656, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1535, + "id": { + "end": 1104, + "name": "sketch002", + "start": 1095, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 1131, + "name": "extrude001", + "start": 1121, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1138, + "name": "seg03", + "start": 1133, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1120, + "name": "startSketchOn", + "start": 1107, + "type": "Identifier" + }, + "end": 1139, + "optional": false, + "start": 1107, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1167, + "raw": "159.25", + "start": 1161, + "type": "Literal", + "type": "Literal", + "value": 159.25 + }, + { + "end": 1175, + "raw": "278.35", + "start": 1169, + "type": "Literal", + "type": "Literal", + "value": 278.35 + } + ], + "end": 1176, + "start": 1160, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1179, + "start": 1178, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1159, + "name": "startProfileAt", + "start": 1145, + "type": "Identifier" + }, + "end": 1180, + "optional": false, + "start": 1145, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1199, + "raw": "0", + "start": 1198, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1206, + "raw": "40.82", + "start": 1201, + "type": "Literal", + "type": "Literal", + "value": 40.82 + } + ], + "end": 1207, + "start": 1197, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1210, + "start": 1209, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + } + ], + "callee": { + "end": 1196, + "name": "angledLine", + "start": 1186, + "type": "Identifier" + }, + "end": 1234, + "optional": false, + "start": 1186, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1293, + "left": { + "arguments": [ + { + "end": 1287, + "name": "rectangleSegmentA002", + "start": 1267, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1266, + "name": "segAng", + "start": 1260, + "type": "Identifier" + }, + "end": 1288, + "optional": false, + "start": 1260, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 1293, + "raw": "90", + "start": 1291, + "type": "Literal", + "type": "Literal", + "value": 90 + }, + "start": 1260, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1308, + "raw": "132.27", + "start": 1302, + "type": "Literal", + "type": "Literal", + "value": 132.27 + } + ], + "end": 1315, + "start": 1251, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1318, + "start": 1317, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + } + ], + "callee": { + "end": 1250, + "name": "angledLine", + "start": 1240, + "type": "Identifier" + }, + "end": 1342, + "optional": false, + "start": 1240, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 1395, + "name": "rectangleSegmentA002", + "start": 1375, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1374, + "name": "segAng", + "start": 1368, + "type": "Identifier" + }, + "end": 1396, + "optional": false, + "start": 1368, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "argument": { + "arguments": [ + { + "end": 1433, + "name": "rectangleSegmentA002", + "start": 1413, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1412, + "name": "segLen", + "start": 1406, + "type": "Identifier" + }, + "end": 1434, + "optional": false, + "start": 1406, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 1434, + "operator": "-", + "start": 1405, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1441, + "start": 1359, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1444, + "start": 1443, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + } + ], + "callee": { + "end": 1358, + "name": "angledLine", + "start": 1348, + "type": "Identifier" + }, + "end": 1468, + "optional": false, + "start": 1348, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 1497, + "start": 1496, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1495, + "name": "profileStartX", + "start": 1482, + "type": "Identifier" + }, + "end": 1498, + "optional": false, + "start": 1482, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1515, + "start": 1514, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1513, + "name": "profileStartY", + "start": 1500, + "type": "Identifier" + }, + "end": 1516, + "optional": false, + "start": 1500, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1517, + "start": 1481, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1520, + "start": 1519, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1480, + "name": "lineTo", + "start": 1474, + "type": "Identifier" + }, + "end": 1521, + "optional": false, + "start": 1474, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1534, + "start": 1533, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1532, + "name": "close", + "start": 1527, + "type": "Identifier" + }, + "end": 1535, + "optional": false, + "start": 1527, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1535, + "start": 1107, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 1095, + "type": "VariableDeclarator" + } + ], + "end": 1535, + "kind": "const", + "start": 1095, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1571, + "id": { + "end": 1546, + "name": "extrude002", + "start": 1536, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 1559, + "raw": "50", + "start": 1557, + "type": "Literal", + "type": "Literal", + "value": 50 + }, + { + "end": 1570, + "name": "sketch002", + "start": 1561, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1556, + "name": "extrude", + "start": 1549, + "type": "Identifier" + }, + "end": 1571, + "optional": false, + "start": 1549, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 1536, + "type": "VariableDeclarator" + } + ], + "end": 1571, + "kind": "const", + "start": 1536, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 1572, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 656, + "start": 654, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/input.kcl b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/input.kcl new file mode 100644 index 000000000..2023cc079 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/input.kcl @@ -0,0 +1,48 @@ +sketch001 = startSketchOn('XZ') + |> startProfileAt([75.8, 317.2], %) // [$startCapTag, $EndCapTag] + |> angledLine([0, 268.43], %, $rectangleSegmentA001) + |> angledLine([ + segAng(rectangleSegmentA001) - 90, + 217.26 + ], %, $seg01) + |> angledLine([ + segAng(rectangleSegmentA001), + -segLen(rectangleSegmentA001) + ], %) + |> lineTo([profileStartX(%), profileStartY(%)], %, $seg02) + |> close(%) +extrude001 = extrude(100, sketch001) + |> fillet({ radius: 20, tags: [seg01] }, %) + |> chamfer({ + length: 50, + tags: [getOppositeEdge(seg01)] + }, %, $seg03) + |> chamfer({ length: 50, tags: [seg02] }, %, $seg04) + +sketch003 = startSketchOn(extrude001, seg04) + |> startProfileAt([-69.1, 277.34], %) + |> angledLine([0, 41.48], %, $rectangleSegmentA003) + |> angledLine([ + segAng(rectangleSegmentA003) - 90, + 104.8 + ], %, $rectangleSegmentB002) + |> angledLine([ + segAng(rectangleSegmentA003), + -segLen(rectangleSegmentA003) + ], %, $rectangleSegmentC002) + |> lineTo([profileStartX(%), profileStartY(%)], %) + |> close(%) +sketch002 = startSketchOn(extrude001, seg03) + |> startProfileAt([159.25, 278.35], %) + |> angledLine([0, 40.82], %, $rectangleSegmentA002) + |> angledLine([ + segAng(rectangleSegmentA002) - 90, + 132.27 + ], %, $rectangleSegmentB001) + |> angledLine([ + segAng(rectangleSegmentA002), + -segLen(rectangleSegmentA002) + ], %, $rectangleSegmentC001) + |> lineTo([profileStartX(%), profileStartY(%)], %) + |> close(%) +extrude002 = extrude(50, sketch002) 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 new file mode 100644 index 000000000..f252d9d58 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap @@ -0,0 +1,4405 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch-on-chamfer-two-times-different-order.kcl +snapshot_kind: text +--- +{ + "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": [] + }, + "extrude001": { + "type": "Solid", + "type": "Solid", + "id": "[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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 592, + 598, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + } + }, + "__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": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "extrude002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1474, + 1521, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1474, + 1521, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1527, + 1535, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 592, + 598, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + } + }, + "__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": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 1107, + 1139, + 0 + ] + } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1212, + 1233, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1320, + 1341, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1446, + 1467, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + ] + }, + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 1145, + 1180, + 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": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1212, + 1233, + 0 + ] + } + ] + }, + "rectangleSegmentA003": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 746, + 794, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 772, + 793, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1320, + 1341, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 800, + 901, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 879, + 900, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1446, + 1467, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 907, + 1027, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1005, + 1026, + 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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 592, + 598, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 592, + 598, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1474, + 1521, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1527, + 1535, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 592, + 598, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + } + }, + "__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": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 1107, + 1139, + 0 + ] + } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1212, + 1233, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1320, + 1341, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1446, + 1467, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + ] + } + }, + "sketch003": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 746, + 794, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.62, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 800, + 901, + 0 + ] + }, + "from": [ + -27.62, + 277.34 + ], + "tag": { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.62, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 907, + 1027, + 0 + ] + }, + "from": [ + -27.62, + 172.54 + ], + "tag": { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1033, + 1080, + 0 + ] + }, + "from": [ + -69.1, + 172.54 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1094, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 599, + 0 + ], + "tag": { + "end": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 592, + 598, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 605, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + } + }, + "__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": 598, + "start": 592, + "type": "TagDeclarator", + "value": "seg03" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg04" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 668, + 700, + 0 + ] + } + ] + }, + "start": { + "from": [ + -69.1, + 277.34 + ], + "to": [ + -69.1, + 277.34 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 706, + 740, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA003": { + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 746, + 794, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 772, + 793, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 800, + 901, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 879, + 900, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 907, + 1027, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1005, + 1026, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 706, + 740, + 0 + ] + } + ] + } + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/rendered_model.png b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/rendered_model.png new file mode 100644 index 000000000..15fa02617 Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/tokens.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/tokens.snap new file mode 100644 index 000000000..cdc5799a6 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/tokens.snap @@ -0,0 +1,3009 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch-on-chamfer-two-times-different-order.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 9, + "value": "sketch001" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "operator", + "start": 10, + "end": 11, + "value": "=" + }, + { + "type": "whitespace", + "start": 11, + "end": 12, + "value": " " + }, + { + "type": "word", + "start": 12, + "end": 25, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 25, + "end": 26, + "value": "(" + }, + { + "type": "string", + "start": 26, + "end": 30, + "value": "'XZ'" + }, + { + "type": "brace", + "start": 30, + "end": 31, + "value": ")" + }, + { + "type": "whitespace", + "start": 31, + "end": 34, + "value": "\n " + }, + { + "type": "operator", + "start": 34, + "end": 36, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36, + "end": 37, + "value": " " + }, + { + "type": "word", + "start": 37, + "end": 51, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 51, + "end": 52, + "value": "(" + }, + { + "type": "brace", + "start": 52, + "end": 53, + "value": "[" + }, + { + "type": "number", + "start": 53, + "end": 57, + "value": "75.8" + }, + { + "type": "comma", + "start": 57, + "end": 58, + "value": "," + }, + { + "type": "whitespace", + "start": 58, + "end": 59, + "value": " " + }, + { + "type": "number", + "start": 59, + "end": 64, + "value": "317.2" + }, + { + "type": "brace", + "start": 64, + "end": 65, + "value": "]" + }, + { + "type": "comma", + "start": 65, + "end": 66, + "value": "," + }, + { + "type": "whitespace", + "start": 66, + "end": 67, + "value": " " + }, + { + "type": "operator", + "start": 67, + "end": 68, + "value": "%" + }, + { + "type": "brace", + "start": 68, + "end": 69, + "value": ")" + }, + { + "type": "whitespace", + "start": 69, + "end": 70, + "value": " " + }, + { + "type": "lineComment", + "start": 70, + "end": 99, + "value": "// [$startCapTag, $EndCapTag]" + }, + { + "type": "whitespace", + "start": 99, + "end": 102, + "value": "\n " + }, + { + "type": "operator", + "start": 102, + "end": 104, + "value": "|>" + }, + { + "type": "whitespace", + "start": 104, + "end": 105, + "value": " " + }, + { + "type": "word", + "start": 105, + "end": 115, + "value": "angledLine" + }, + { + "type": "brace", + "start": 115, + "end": 116, + "value": "(" + }, + { + "type": "brace", + "start": 116, + "end": 117, + "value": "[" + }, + { + "type": "number", + "start": 117, + "end": 118, + "value": "0" + }, + { + "type": "comma", + "start": 118, + "end": 119, + "value": "," + }, + { + "type": "whitespace", + "start": 119, + "end": 120, + "value": " " + }, + { + "type": "number", + "start": 120, + "end": 126, + "value": "268.43" + }, + { + "type": "brace", + "start": 126, + "end": 127, + "value": "]" + }, + { + "type": "comma", + "start": 127, + "end": 128, + "value": "," + }, + { + "type": "whitespace", + "start": 128, + "end": 129, + "value": " " + }, + { + "type": "operator", + "start": 129, + "end": 130, + "value": "%" + }, + { + "type": "comma", + "start": 130, + "end": 131, + "value": "," + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "dollar", + "start": 132, + "end": 133, + "value": "$" + }, + { + "type": "word", + "start": 133, + "end": 153, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 153, + "end": 154, + "value": ")" + }, + { + "type": "whitespace", + "start": 154, + "end": 157, + "value": "\n " + }, + { + "type": "operator", + "start": 157, + "end": 159, + "value": "|>" + }, + { + "type": "whitespace", + "start": 159, + "end": 160, + "value": " " + }, + { + "type": "word", + "start": 160, + "end": 170, + "value": "angledLine" + }, + { + "type": "brace", + "start": 170, + "end": 171, + "value": "(" + }, + { + "type": "brace", + "start": 171, + "end": 172, + "value": "[" + }, + { + "type": "whitespace", + "start": 172, + "end": 180, + "value": "\n " + }, + { + "type": "word", + "start": 180, + "end": 186, + "value": "segAng" + }, + { + "type": "brace", + "start": 186, + "end": 187, + "value": "(" + }, + { + "type": "word", + "start": 187, + "end": 207, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 207, + "end": 208, + "value": ")" + }, + { + "type": "whitespace", + "start": 208, + "end": 209, + "value": " " + }, + { + "type": "operator", + "start": 209, + "end": 210, + "value": "-" + }, + { + "type": "whitespace", + "start": 210, + "end": 211, + "value": " " + }, + { + "type": "number", + "start": 211, + "end": 213, + "value": "90" + }, + { + "type": "comma", + "start": 213, + "end": 214, + "value": "," + }, + { + "type": "whitespace", + "start": 214, + "end": 222, + "value": "\n " + }, + { + "type": "number", + "start": 222, + "end": 228, + "value": "217.26" + }, + { + "type": "whitespace", + "start": 228, + "end": 234, + "value": "\n " + }, + { + "type": "brace", + "start": 234, + "end": 235, + "value": "]" + }, + { + "type": "comma", + "start": 235, + "end": 236, + "value": "," + }, + { + "type": "whitespace", + "start": 236, + "end": 237, + "value": " " + }, + { + "type": "operator", + "start": 237, + "end": 238, + "value": "%" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "dollar", + "start": 240, + "end": 241, + "value": "$" + }, + { + "type": "word", + "start": 241, + "end": 246, + "value": "seg01" + }, + { + "type": "brace", + "start": 246, + "end": 247, + "value": ")" + }, + { + "type": "whitespace", + "start": 247, + "end": 250, + "value": "\n " + }, + { + "type": "operator", + "start": 250, + "end": 252, + "value": "|>" + }, + { + "type": "whitespace", + "start": 252, + "end": 253, + "value": " " + }, + { + "type": "word", + "start": 253, + "end": 263, + "value": "angledLine" + }, + { + "type": "brace", + "start": 263, + "end": 264, + "value": "(" + }, + { + "type": "brace", + "start": 264, + "end": 265, + "value": "[" + }, + { + "type": "whitespace", + "start": 265, + "end": 273, + "value": "\n " + }, + { + "type": "word", + "start": 273, + "end": 279, + "value": "segAng" + }, + { + "type": "brace", + "start": 279, + "end": 280, + "value": "(" + }, + { + "type": "word", + "start": 280, + "end": 300, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 300, + "end": 301, + "value": ")" + }, + { + "type": "comma", + "start": 301, + "end": 302, + "value": "," + }, + { + "type": "whitespace", + "start": 302, + "end": 310, + "value": "\n " + }, + { + "type": "operator", + "start": 310, + "end": 311, + "value": "-" + }, + { + "type": "word", + "start": 311, + "end": 317, + "value": "segLen" + }, + { + "type": "brace", + "start": 317, + "end": 318, + "value": "(" + }, + { + "type": "word", + "start": 318, + "end": 338, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 338, + "end": 339, + "value": ")" + }, + { + "type": "whitespace", + "start": 339, + "end": 345, + "value": "\n " + }, + { + "type": "brace", + "start": 345, + "end": 346, + "value": "]" + }, + { + "type": "comma", + "start": 346, + "end": 347, + "value": "," + }, + { + "type": "whitespace", + "start": 347, + "end": 348, + "value": " " + }, + { + "type": "operator", + "start": 348, + "end": 349, + "value": "%" + }, + { + "type": "brace", + "start": 349, + "end": 350, + "value": ")" + }, + { + "type": "whitespace", + "start": 350, + "end": 353, + "value": "\n " + }, + { + "type": "operator", + "start": 353, + "end": 355, + "value": "|>" + }, + { + "type": "whitespace", + "start": 355, + "end": 356, + "value": " " + }, + { + "type": "word", + "start": 356, + "end": 362, + "value": "lineTo" + }, + { + "type": "brace", + "start": 362, + "end": 363, + "value": "(" + }, + { + "type": "brace", + "start": 363, + "end": 364, + "value": "[" + }, + { + "type": "word", + "start": 364, + "end": 377, + "value": "profileStartX" + }, + { + "type": "brace", + "start": 377, + "end": 378, + "value": "(" + }, + { + "type": "operator", + "start": 378, + "end": 379, + "value": "%" + }, + { + "type": "brace", + "start": 379, + "end": 380, + "value": ")" + }, + { + "type": "comma", + "start": 380, + "end": 381, + "value": "," + }, + { + "type": "whitespace", + "start": 381, + "end": 382, + "value": " " + }, + { + "type": "word", + "start": 382, + "end": 395, + "value": "profileStartY" + }, + { + "type": "brace", + "start": 395, + "end": 396, + "value": "(" + }, + { + "type": "operator", + "start": 396, + "end": 397, + "value": "%" + }, + { + "type": "brace", + "start": 397, + "end": 398, + "value": ")" + }, + { + "type": "brace", + "start": 398, + "end": 399, + "value": "]" + }, + { + "type": "comma", + "start": 399, + "end": 400, + "value": "," + }, + { + "type": "whitespace", + "start": 400, + "end": 401, + "value": " " + }, + { + "type": "operator", + "start": 401, + "end": 402, + "value": "%" + }, + { + "type": "comma", + "start": 402, + "end": 403, + "value": "," + }, + { + "type": "whitespace", + "start": 403, + "end": 404, + "value": " " + }, + { + "type": "dollar", + "start": 404, + "end": 405, + "value": "$" + }, + { + "type": "word", + "start": 405, + "end": 410, + "value": "seg02" + }, + { + "type": "brace", + "start": 410, + "end": 411, + "value": ")" + }, + { + "type": "whitespace", + "start": 411, + "end": 414, + "value": "\n " + }, + { + "type": "operator", + "start": 414, + "end": 416, + "value": "|>" + }, + { + "type": "whitespace", + "start": 416, + "end": 417, + "value": " " + }, + { + "type": "word", + "start": 417, + "end": 422, + "value": "close" + }, + { + "type": "brace", + "start": 422, + "end": 423, + "value": "(" + }, + { + "type": "operator", + "start": 423, + "end": 424, + "value": "%" + }, + { + "type": "brace", + "start": 424, + "end": 425, + "value": ")" + }, + { + "type": "whitespace", + "start": 425, + "end": 426, + "value": "\n" + }, + { + "type": "word", + "start": 426, + "end": 436, + "value": "extrude001" + }, + { + "type": "whitespace", + "start": 436, + "end": 437, + "value": " " + }, + { + "type": "operator", + "start": 437, + "end": 438, + "value": "=" + }, + { + "type": "whitespace", + "start": 438, + "end": 439, + "value": " " + }, + { + "type": "word", + "start": 439, + "end": 446, + "value": "extrude" + }, + { + "type": "brace", + "start": 446, + "end": 447, + "value": "(" + }, + { + "type": "number", + "start": 447, + "end": 450, + "value": "100" + }, + { + "type": "comma", + "start": 450, + "end": 451, + "value": "," + }, + { + "type": "whitespace", + "start": 451, + "end": 452, + "value": " " + }, + { + "type": "word", + "start": 452, + "end": 461, + "value": "sketch001" + }, + { + "type": "brace", + "start": 461, + "end": 462, + "value": ")" + }, + { + "type": "whitespace", + "start": 462, + "end": 465, + "value": "\n " + }, + { + "type": "operator", + "start": 465, + "end": 467, + "value": "|>" + }, + { + "type": "whitespace", + "start": 467, + "end": 468, + "value": " " + }, + { + "type": "word", + "start": 468, + "end": 474, + "value": "fillet" + }, + { + "type": "brace", + "start": 474, + "end": 475, + "value": "(" + }, + { + "type": "brace", + "start": 475, + "end": 476, + "value": "{" + }, + { + "type": "whitespace", + "start": 476, + "end": 477, + "value": " " + }, + { + "type": "word", + "start": 477, + "end": 483, + "value": "radius" + }, + { + "type": "colon", + "start": 483, + "end": 484, + "value": ":" + }, + { + "type": "whitespace", + "start": 484, + "end": 485, + "value": " " + }, + { + "type": "number", + "start": 485, + "end": 487, + "value": "20" + }, + { + "type": "comma", + "start": 487, + "end": 488, + "value": "," + }, + { + "type": "whitespace", + "start": 488, + "end": 489, + "value": " " + }, + { + "type": "word", + "start": 489, + "end": 493, + "value": "tags" + }, + { + "type": "colon", + "start": 493, + "end": 494, + "value": ":" + }, + { + "type": "whitespace", + "start": 494, + "end": 495, + "value": " " + }, + { + "type": "brace", + "start": 495, + "end": 496, + "value": "[" + }, + { + "type": "word", + "start": 496, + "end": 501, + "value": "seg01" + }, + { + "type": "brace", + "start": 501, + "end": 502, + "value": "]" + }, + { + "type": "whitespace", + "start": 502, + "end": 503, + "value": " " + }, + { + "type": "brace", + "start": 503, + "end": 504, + "value": "}" + }, + { + "type": "comma", + "start": 504, + "end": 505, + "value": "," + }, + { + "type": "whitespace", + "start": 505, + "end": 506, + "value": " " + }, + { + "type": "operator", + "start": 506, + "end": 507, + "value": "%" + }, + { + "type": "brace", + "start": 507, + "end": 508, + "value": ")" + }, + { + "type": "whitespace", + "start": 508, + "end": 511, + "value": "\n " + }, + { + "type": "operator", + "start": 511, + "end": 513, + "value": "|>" + }, + { + "type": "whitespace", + "start": 513, + "end": 514, + "value": " " + }, + { + "type": "word", + "start": 514, + "end": 521, + "value": "chamfer" + }, + { + "type": "brace", + "start": 521, + "end": 522, + "value": "(" + }, + { + "type": "brace", + "start": 522, + "end": 523, + "value": "{" + }, + { + "type": "whitespace", + "start": 523, + "end": 531, + "value": "\n " + }, + { + "type": "word", + "start": 531, + "end": 537, + "value": "length" + }, + { + "type": "colon", + "start": 537, + "end": 538, + "value": ":" + }, + { + "type": "whitespace", + "start": 538, + "end": 539, + "value": " " + }, + { + "type": "number", + "start": 539, + "end": 541, + "value": "50" + }, + { + "type": "comma", + "start": 541, + "end": 542, + "value": "," + }, + { + "type": "whitespace", + "start": 542, + "end": 550, + "value": "\n " + }, + { + "type": "word", + "start": 550, + "end": 554, + "value": "tags" + }, + { + "type": "colon", + "start": 554, + "end": 555, + "value": ":" + }, + { + "type": "whitespace", + "start": 555, + "end": 556, + "value": " " + }, + { + "type": "brace", + "start": 556, + "end": 557, + "value": "[" + }, + { + "type": "word", + "start": 557, + "end": 572, + "value": "getOppositeEdge" + }, + { + "type": "brace", + "start": 572, + "end": 573, + "value": "(" + }, + { + "type": "word", + "start": 573, + "end": 578, + "value": "seg01" + }, + { + "type": "brace", + "start": 578, + "end": 579, + "value": ")" + }, + { + "type": "brace", + "start": 579, + "end": 580, + "value": "]" + }, + { + "type": "whitespace", + "start": 580, + "end": 586, + "value": "\n " + }, + { + "type": "brace", + "start": 586, + "end": 587, + "value": "}" + }, + { + "type": "comma", + "start": 587, + "end": 588, + "value": "," + }, + { + "type": "whitespace", + "start": 588, + "end": 589, + "value": " " + }, + { + "type": "operator", + "start": 589, + "end": 590, + "value": "%" + }, + { + "type": "comma", + "start": 590, + "end": 591, + "value": "," + }, + { + "type": "whitespace", + "start": 591, + "end": 592, + "value": " " + }, + { + "type": "dollar", + "start": 592, + "end": 593, + "value": "$" + }, + { + "type": "word", + "start": 593, + "end": 598, + "value": "seg03" + }, + { + "type": "brace", + "start": 598, + "end": 599, + "value": ")" + }, + { + "type": "whitespace", + "start": 599, + "end": 602, + "value": "\n " + }, + { + "type": "operator", + "start": 602, + "end": 604, + "value": "|>" + }, + { + "type": "whitespace", + "start": 604, + "end": 605, + "value": " " + }, + { + "type": "word", + "start": 605, + "end": 612, + "value": "chamfer" + }, + { + "type": "brace", + "start": 612, + "end": 613, + "value": "(" + }, + { + "type": "brace", + "start": 613, + "end": 614, + "value": "{" + }, + { + "type": "whitespace", + "start": 614, + "end": 615, + "value": " " + }, + { + "type": "word", + "start": 615, + "end": 621, + "value": "length" + }, + { + "type": "colon", + "start": 621, + "end": 622, + "value": ":" + }, + { + "type": "whitespace", + "start": 622, + "end": 623, + "value": " " + }, + { + "type": "number", + "start": 623, + "end": 625, + "value": "50" + }, + { + "type": "comma", + "start": 625, + "end": 626, + "value": "," + }, + { + "type": "whitespace", + "start": 626, + "end": 627, + "value": " " + }, + { + "type": "word", + "start": 627, + "end": 631, + "value": "tags" + }, + { + "type": "colon", + "start": 631, + "end": 632, + "value": ":" + }, + { + "type": "whitespace", + "start": 632, + "end": 633, + "value": " " + }, + { + "type": "brace", + "start": 633, + "end": 634, + "value": "[" + }, + { + "type": "word", + "start": 634, + "end": 639, + "value": "seg02" + }, + { + "type": "brace", + "start": 639, + "end": 640, + "value": "]" + }, + { + "type": "whitespace", + "start": 640, + "end": 641, + "value": " " + }, + { + "type": "brace", + "start": 641, + "end": 642, + "value": "}" + }, + { + "type": "comma", + "start": 642, + "end": 643, + "value": "," + }, + { + "type": "whitespace", + "start": 643, + "end": 644, + "value": " " + }, + { + "type": "operator", + "start": 644, + "end": 645, + "value": "%" + }, + { + "type": "comma", + "start": 645, + "end": 646, + "value": "," + }, + { + "type": "whitespace", + "start": 646, + "end": 647, + "value": " " + }, + { + "type": "dollar", + "start": 647, + "end": 648, + "value": "$" + }, + { + "type": "word", + "start": 648, + "end": 653, + "value": "seg04" + }, + { + "type": "brace", + "start": 653, + "end": 654, + "value": ")" + }, + { + "type": "whitespace", + "start": 654, + "end": 656, + "value": "\n\n" + }, + { + "type": "word", + "start": 656, + "end": 665, + "value": "sketch003" + }, + { + "type": "whitespace", + "start": 665, + "end": 666, + "value": " " + }, + { + "type": "operator", + "start": 666, + "end": 667, + "value": "=" + }, + { + "type": "whitespace", + "start": 667, + "end": 668, + "value": " " + }, + { + "type": "word", + "start": 668, + "end": 681, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 681, + "end": 682, + "value": "(" + }, + { + "type": "word", + "start": 682, + "end": 692, + "value": "extrude001" + }, + { + "type": "comma", + "start": 692, + "end": 693, + "value": "," + }, + { + "type": "whitespace", + "start": 693, + "end": 694, + "value": " " + }, + { + "type": "word", + "start": 694, + "end": 699, + "value": "seg04" + }, + { + "type": "brace", + "start": 699, + "end": 700, + "value": ")" + }, + { + "type": "whitespace", + "start": 700, + "end": 703, + "value": "\n " + }, + { + "type": "operator", + "start": 703, + "end": 705, + "value": "|>" + }, + { + "type": "whitespace", + "start": 705, + "end": 706, + "value": " " + }, + { + "type": "word", + "start": 706, + "end": 720, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 720, + "end": 721, + "value": "(" + }, + { + "type": "brace", + "start": 721, + "end": 722, + "value": "[" + }, + { + "type": "operator", + "start": 722, + "end": 723, + "value": "-" + }, + { + "type": "number", + "start": 723, + "end": 727, + "value": "69.1" + }, + { + "type": "comma", + "start": 727, + "end": 728, + "value": "," + }, + { + "type": "whitespace", + "start": 728, + "end": 729, + "value": " " + }, + { + "type": "number", + "start": 729, + "end": 735, + "value": "277.34" + }, + { + "type": "brace", + "start": 735, + "end": 736, + "value": "]" + }, + { + "type": "comma", + "start": 736, + "end": 737, + "value": "," + }, + { + "type": "whitespace", + "start": 737, + "end": 738, + "value": " " + }, + { + "type": "operator", + "start": 738, + "end": 739, + "value": "%" + }, + { + "type": "brace", + "start": 739, + "end": 740, + "value": ")" + }, + { + "type": "whitespace", + "start": 740, + "end": 743, + "value": "\n " + }, + { + "type": "operator", + "start": 743, + "end": 745, + "value": "|>" + }, + { + "type": "whitespace", + "start": 745, + "end": 746, + "value": " " + }, + { + "type": "word", + "start": 746, + "end": 756, + "value": "angledLine" + }, + { + "type": "brace", + "start": 756, + "end": 757, + "value": "(" + }, + { + "type": "brace", + "start": 757, + "end": 758, + "value": "[" + }, + { + "type": "number", + "start": 758, + "end": 759, + "value": "0" + }, + { + "type": "comma", + "start": 759, + "end": 760, + "value": "," + }, + { + "type": "whitespace", + "start": 760, + "end": 761, + "value": " " + }, + { + "type": "number", + "start": 761, + "end": 766, + "value": "41.48" + }, + { + "type": "brace", + "start": 766, + "end": 767, + "value": "]" + }, + { + "type": "comma", + "start": 767, + "end": 768, + "value": "," + }, + { + "type": "whitespace", + "start": 768, + "end": 769, + "value": " " + }, + { + "type": "operator", + "start": 769, + "end": 770, + "value": "%" + }, + { + "type": "comma", + "start": 770, + "end": 771, + "value": "," + }, + { + "type": "whitespace", + "start": 771, + "end": 772, + "value": " " + }, + { + "type": "dollar", + "start": 772, + "end": 773, + "value": "$" + }, + { + "type": "word", + "start": 773, + "end": 793, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 793, + "end": 794, + "value": ")" + }, + { + "type": "whitespace", + "start": 794, + "end": 797, + "value": "\n " + }, + { + "type": "operator", + "start": 797, + "end": 799, + "value": "|>" + }, + { + "type": "whitespace", + "start": 799, + "end": 800, + "value": " " + }, + { + "type": "word", + "start": 800, + "end": 810, + "value": "angledLine" + }, + { + "type": "brace", + "start": 810, + "end": 811, + "value": "(" + }, + { + "type": "brace", + "start": 811, + "end": 812, + "value": "[" + }, + { + "type": "whitespace", + "start": 812, + "end": 820, + "value": "\n " + }, + { + "type": "word", + "start": 820, + "end": 826, + "value": "segAng" + }, + { + "type": "brace", + "start": 826, + "end": 827, + "value": "(" + }, + { + "type": "word", + "start": 827, + "end": 847, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 847, + "end": 848, + "value": ")" + }, + { + "type": "whitespace", + "start": 848, + "end": 849, + "value": " " + }, + { + "type": "operator", + "start": 849, + "end": 850, + "value": "-" + }, + { + "type": "whitespace", + "start": 850, + "end": 851, + "value": " " + }, + { + "type": "number", + "start": 851, + "end": 853, + "value": "90" + }, + { + "type": "comma", + "start": 853, + "end": 854, + "value": "," + }, + { + "type": "whitespace", + "start": 854, + "end": 862, + "value": "\n " + }, + { + "type": "number", + "start": 862, + "end": 867, + "value": "104.8" + }, + { + "type": "whitespace", + "start": 867, + "end": 873, + "value": "\n " + }, + { + "type": "brace", + "start": 873, + "end": 874, + "value": "]" + }, + { + "type": "comma", + "start": 874, + "end": 875, + "value": "," + }, + { + "type": "whitespace", + "start": 875, + "end": 876, + "value": " " + }, + { + "type": "operator", + "start": 876, + "end": 877, + "value": "%" + }, + { + "type": "comma", + "start": 877, + "end": 878, + "value": "," + }, + { + "type": "whitespace", + "start": 878, + "end": 879, + "value": " " + }, + { + "type": "dollar", + "start": 879, + "end": 880, + "value": "$" + }, + { + "type": "word", + "start": 880, + "end": 900, + "value": "rectangleSegmentB002" + }, + { + "type": "brace", + "start": 900, + "end": 901, + "value": ")" + }, + { + "type": "whitespace", + "start": 901, + "end": 904, + "value": "\n " + }, + { + "type": "operator", + "start": 904, + "end": 906, + "value": "|>" + }, + { + "type": "whitespace", + "start": 906, + "end": 907, + "value": " " + }, + { + "type": "word", + "start": 907, + "end": 917, + "value": "angledLine" + }, + { + "type": "brace", + "start": 917, + "end": 918, + "value": "(" + }, + { + "type": "brace", + "start": 918, + "end": 919, + "value": "[" + }, + { + "type": "whitespace", + "start": 919, + "end": 927, + "value": "\n " + }, + { + "type": "word", + "start": 927, + "end": 933, + "value": "segAng" + }, + { + "type": "brace", + "start": 933, + "end": 934, + "value": "(" + }, + { + "type": "word", + "start": 934, + "end": 954, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 954, + "end": 955, + "value": ")" + }, + { + "type": "comma", + "start": 955, + "end": 956, + "value": "," + }, + { + "type": "whitespace", + "start": 956, + "end": 964, + "value": "\n " + }, + { + "type": "operator", + "start": 964, + "end": 965, + "value": "-" + }, + { + "type": "word", + "start": 965, + "end": 971, + "value": "segLen" + }, + { + "type": "brace", + "start": 971, + "end": 972, + "value": "(" + }, + { + "type": "word", + "start": 972, + "end": 992, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 992, + "end": 993, + "value": ")" + }, + { + "type": "whitespace", + "start": 993, + "end": 999, + "value": "\n " + }, + { + "type": "brace", + "start": 999, + "end": 1000, + "value": "]" + }, + { + "type": "comma", + "start": 1000, + "end": 1001, + "value": "," + }, + { + "type": "whitespace", + "start": 1001, + "end": 1002, + "value": " " + }, + { + "type": "operator", + "start": 1002, + "end": 1003, + "value": "%" + }, + { + "type": "comma", + "start": 1003, + "end": 1004, + "value": "," + }, + { + "type": "whitespace", + "start": 1004, + "end": 1005, + "value": " " + }, + { + "type": "dollar", + "start": 1005, + "end": 1006, + "value": "$" + }, + { + "type": "word", + "start": 1006, + "end": 1026, + "value": "rectangleSegmentC002" + }, + { + "type": "brace", + "start": 1026, + "end": 1027, + "value": ")" + }, + { + "type": "whitespace", + "start": 1027, + "end": 1030, + "value": "\n " + }, + { + "type": "operator", + "start": 1030, + "end": 1032, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1032, + "end": 1033, + "value": " " + }, + { + "type": "word", + "start": 1033, + "end": 1039, + "value": "lineTo" + }, + { + "type": "brace", + "start": 1039, + "end": 1040, + "value": "(" + }, + { + "type": "brace", + "start": 1040, + "end": 1041, + "value": "[" + }, + { + "type": "word", + "start": 1041, + "end": 1054, + "value": "profileStartX" + }, + { + "type": "brace", + "start": 1054, + "end": 1055, + "value": "(" + }, + { + "type": "operator", + "start": 1055, + "end": 1056, + "value": "%" + }, + { + "type": "brace", + "start": 1056, + "end": 1057, + "value": ")" + }, + { + "type": "comma", + "start": 1057, + "end": 1058, + "value": "," + }, + { + "type": "whitespace", + "start": 1058, + "end": 1059, + "value": " " + }, + { + "type": "word", + "start": 1059, + "end": 1072, + "value": "profileStartY" + }, + { + "type": "brace", + "start": 1072, + "end": 1073, + "value": "(" + }, + { + "type": "operator", + "start": 1073, + "end": 1074, + "value": "%" + }, + { + "type": "brace", + "start": 1074, + "end": 1075, + "value": ")" + }, + { + "type": "brace", + "start": 1075, + "end": 1076, + "value": "]" + }, + { + "type": "comma", + "start": 1076, + "end": 1077, + "value": "," + }, + { + "type": "whitespace", + "start": 1077, + "end": 1078, + "value": " " + }, + { + "type": "operator", + "start": 1078, + "end": 1079, + "value": "%" + }, + { + "type": "brace", + "start": 1079, + "end": 1080, + "value": ")" + }, + { + "type": "whitespace", + "start": 1080, + "end": 1083, + "value": "\n " + }, + { + "type": "operator", + "start": 1083, + "end": 1085, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1085, + "end": 1086, + "value": " " + }, + { + "type": "word", + "start": 1086, + "end": 1091, + "value": "close" + }, + { + "type": "brace", + "start": 1091, + "end": 1092, + "value": "(" + }, + { + "type": "operator", + "start": 1092, + "end": 1093, + "value": "%" + }, + { + "type": "brace", + "start": 1093, + "end": 1094, + "value": ")" + }, + { + "type": "whitespace", + "start": 1094, + "end": 1095, + "value": "\n" + }, + { + "type": "word", + "start": 1095, + "end": 1104, + "value": "sketch002" + }, + { + "type": "whitespace", + "start": 1104, + "end": 1105, + "value": " " + }, + { + "type": "operator", + "start": 1105, + "end": 1106, + "value": "=" + }, + { + "type": "whitespace", + "start": 1106, + "end": 1107, + "value": " " + }, + { + "type": "word", + "start": 1107, + "end": 1120, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 1120, + "end": 1121, + "value": "(" + }, + { + "type": "word", + "start": 1121, + "end": 1131, + "value": "extrude001" + }, + { + "type": "comma", + "start": 1131, + "end": 1132, + "value": "," + }, + { + "type": "whitespace", + "start": 1132, + "end": 1133, + "value": " " + }, + { + "type": "word", + "start": 1133, + "end": 1138, + "value": "seg03" + }, + { + "type": "brace", + "start": 1138, + "end": 1139, + "value": ")" + }, + { + "type": "whitespace", + "start": 1139, + "end": 1142, + "value": "\n " + }, + { + "type": "operator", + "start": 1142, + "end": 1144, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1144, + "end": 1145, + "value": " " + }, + { + "type": "word", + "start": 1145, + "end": 1159, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 1159, + "end": 1160, + "value": "(" + }, + { + "type": "brace", + "start": 1160, + "end": 1161, + "value": "[" + }, + { + "type": "number", + "start": 1161, + "end": 1167, + "value": "159.25" + }, + { + "type": "comma", + "start": 1167, + "end": 1168, + "value": "," + }, + { + "type": "whitespace", + "start": 1168, + "end": 1169, + "value": " " + }, + { + "type": "number", + "start": 1169, + "end": 1175, + "value": "278.35" + }, + { + "type": "brace", + "start": 1175, + "end": 1176, + "value": "]" + }, + { + "type": "comma", + "start": 1176, + "end": 1177, + "value": "," + }, + { + "type": "whitespace", + "start": 1177, + "end": 1178, + "value": " " + }, + { + "type": "operator", + "start": 1178, + "end": 1179, + "value": "%" + }, + { + "type": "brace", + "start": 1179, + "end": 1180, + "value": ")" + }, + { + "type": "whitespace", + "start": 1180, + "end": 1183, + "value": "\n " + }, + { + "type": "operator", + "start": 1183, + "end": 1185, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1185, + "end": 1186, + "value": " " + }, + { + "type": "word", + "start": 1186, + "end": 1196, + "value": "angledLine" + }, + { + "type": "brace", + "start": 1196, + "end": 1197, + "value": "(" + }, + { + "type": "brace", + "start": 1197, + "end": 1198, + "value": "[" + }, + { + "type": "number", + "start": 1198, + "end": 1199, + "value": "0" + }, + { + "type": "comma", + "start": 1199, + "end": 1200, + "value": "," + }, + { + "type": "whitespace", + "start": 1200, + "end": 1201, + "value": " " + }, + { + "type": "number", + "start": 1201, + "end": 1206, + "value": "40.82" + }, + { + "type": "brace", + "start": 1206, + "end": 1207, + "value": "]" + }, + { + "type": "comma", + "start": 1207, + "end": 1208, + "value": "," + }, + { + "type": "whitespace", + "start": 1208, + "end": 1209, + "value": " " + }, + { + "type": "operator", + "start": 1209, + "end": 1210, + "value": "%" + }, + { + "type": "comma", + "start": 1210, + "end": 1211, + "value": "," + }, + { + "type": "whitespace", + "start": 1211, + "end": 1212, + "value": " " + }, + { + "type": "dollar", + "start": 1212, + "end": 1213, + "value": "$" + }, + { + "type": "word", + "start": 1213, + "end": 1233, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1233, + "end": 1234, + "value": ")" + }, + { + "type": "whitespace", + "start": 1234, + "end": 1237, + "value": "\n " + }, + { + "type": "operator", + "start": 1237, + "end": 1239, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1239, + "end": 1240, + "value": " " + }, + { + "type": "word", + "start": 1240, + "end": 1250, + "value": "angledLine" + }, + { + "type": "brace", + "start": 1250, + "end": 1251, + "value": "(" + }, + { + "type": "brace", + "start": 1251, + "end": 1252, + "value": "[" + }, + { + "type": "whitespace", + "start": 1252, + "end": 1260, + "value": "\n " + }, + { + "type": "word", + "start": 1260, + "end": 1266, + "value": "segAng" + }, + { + "type": "brace", + "start": 1266, + "end": 1267, + "value": "(" + }, + { + "type": "word", + "start": 1267, + "end": 1287, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1287, + "end": 1288, + "value": ")" + }, + { + "type": "whitespace", + "start": 1288, + "end": 1289, + "value": " " + }, + { + "type": "operator", + "start": 1289, + "end": 1290, + "value": "-" + }, + { + "type": "whitespace", + "start": 1290, + "end": 1291, + "value": " " + }, + { + "type": "number", + "start": 1291, + "end": 1293, + "value": "90" + }, + { + "type": "comma", + "start": 1293, + "end": 1294, + "value": "," + }, + { + "type": "whitespace", + "start": 1294, + "end": 1302, + "value": "\n " + }, + { + "type": "number", + "start": 1302, + "end": 1308, + "value": "132.27" + }, + { + "type": "whitespace", + "start": 1308, + "end": 1314, + "value": "\n " + }, + { + "type": "brace", + "start": 1314, + "end": 1315, + "value": "]" + }, + { + "type": "comma", + "start": 1315, + "end": 1316, + "value": "," + }, + { + "type": "whitespace", + "start": 1316, + "end": 1317, + "value": " " + }, + { + "type": "operator", + "start": 1317, + "end": 1318, + "value": "%" + }, + { + "type": "comma", + "start": 1318, + "end": 1319, + "value": "," + }, + { + "type": "whitespace", + "start": 1319, + "end": 1320, + "value": " " + }, + { + "type": "dollar", + "start": 1320, + "end": 1321, + "value": "$" + }, + { + "type": "word", + "start": 1321, + "end": 1341, + "value": "rectangleSegmentB001" + }, + { + "type": "brace", + "start": 1341, + "end": 1342, + "value": ")" + }, + { + "type": "whitespace", + "start": 1342, + "end": 1345, + "value": "\n " + }, + { + "type": "operator", + "start": 1345, + "end": 1347, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1347, + "end": 1348, + "value": " " + }, + { + "type": "word", + "start": 1348, + "end": 1358, + "value": "angledLine" + }, + { + "type": "brace", + "start": 1358, + "end": 1359, + "value": "(" + }, + { + "type": "brace", + "start": 1359, + "end": 1360, + "value": "[" + }, + { + "type": "whitespace", + "start": 1360, + "end": 1368, + "value": "\n " + }, + { + "type": "word", + "start": 1368, + "end": 1374, + "value": "segAng" + }, + { + "type": "brace", + "start": 1374, + "end": 1375, + "value": "(" + }, + { + "type": "word", + "start": 1375, + "end": 1395, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1395, + "end": 1396, + "value": ")" + }, + { + "type": "comma", + "start": 1396, + "end": 1397, + "value": "," + }, + { + "type": "whitespace", + "start": 1397, + "end": 1405, + "value": "\n " + }, + { + "type": "operator", + "start": 1405, + "end": 1406, + "value": "-" + }, + { + "type": "word", + "start": 1406, + "end": 1412, + "value": "segLen" + }, + { + "type": "brace", + "start": 1412, + "end": 1413, + "value": "(" + }, + { + "type": "word", + "start": 1413, + "end": 1433, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1433, + "end": 1434, + "value": ")" + }, + { + "type": "whitespace", + "start": 1434, + "end": 1440, + "value": "\n " + }, + { + "type": "brace", + "start": 1440, + "end": 1441, + "value": "]" + }, + { + "type": "comma", + "start": 1441, + "end": 1442, + "value": "," + }, + { + "type": "whitespace", + "start": 1442, + "end": 1443, + "value": " " + }, + { + "type": "operator", + "start": 1443, + "end": 1444, + "value": "%" + }, + { + "type": "comma", + "start": 1444, + "end": 1445, + "value": "," + }, + { + "type": "whitespace", + "start": 1445, + "end": 1446, + "value": " " + }, + { + "type": "dollar", + "start": 1446, + "end": 1447, + "value": "$" + }, + { + "type": "word", + "start": 1447, + "end": 1467, + "value": "rectangleSegmentC001" + }, + { + "type": "brace", + "start": 1467, + "end": 1468, + "value": ")" + }, + { + "type": "whitespace", + "start": 1468, + "end": 1471, + "value": "\n " + }, + { + "type": "operator", + "start": 1471, + "end": 1473, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1473, + "end": 1474, + "value": " " + }, + { + "type": "word", + "start": 1474, + "end": 1480, + "value": "lineTo" + }, + { + "type": "brace", + "start": 1480, + "end": 1481, + "value": "(" + }, + { + "type": "brace", + "start": 1481, + "end": 1482, + "value": "[" + }, + { + "type": "word", + "start": 1482, + "end": 1495, + "value": "profileStartX" + }, + { + "type": "brace", + "start": 1495, + "end": 1496, + "value": "(" + }, + { + "type": "operator", + "start": 1496, + "end": 1497, + "value": "%" + }, + { + "type": "brace", + "start": 1497, + "end": 1498, + "value": ")" + }, + { + "type": "comma", + "start": 1498, + "end": 1499, + "value": "," + }, + { + "type": "whitespace", + "start": 1499, + "end": 1500, + "value": " " + }, + { + "type": "word", + "start": 1500, + "end": 1513, + "value": "profileStartY" + }, + { + "type": "brace", + "start": 1513, + "end": 1514, + "value": "(" + }, + { + "type": "operator", + "start": 1514, + "end": 1515, + "value": "%" + }, + { + "type": "brace", + "start": 1515, + "end": 1516, + "value": ")" + }, + { + "type": "brace", + "start": 1516, + "end": 1517, + "value": "]" + }, + { + "type": "comma", + "start": 1517, + "end": 1518, + "value": "," + }, + { + "type": "whitespace", + "start": 1518, + "end": 1519, + "value": " " + }, + { + "type": "operator", + "start": 1519, + "end": 1520, + "value": "%" + }, + { + "type": "brace", + "start": 1520, + "end": 1521, + "value": ")" + }, + { + "type": "whitespace", + "start": 1521, + "end": 1524, + "value": "\n " + }, + { + "type": "operator", + "start": 1524, + "end": 1526, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1526, + "end": 1527, + "value": " " + }, + { + "type": "word", + "start": 1527, + "end": 1532, + "value": "close" + }, + { + "type": "brace", + "start": 1532, + "end": 1533, + "value": "(" + }, + { + "type": "operator", + "start": 1533, + "end": 1534, + "value": "%" + }, + { + "type": "brace", + "start": 1534, + "end": 1535, + "value": ")" + }, + { + "type": "whitespace", + "start": 1535, + "end": 1536, + "value": "\n" + }, + { + "type": "word", + "start": 1536, + "end": 1546, + "value": "extrude002" + }, + { + "type": "whitespace", + "start": 1546, + "end": 1547, + "value": " " + }, + { + "type": "operator", + "start": 1547, + "end": 1548, + "value": "=" + }, + { + "type": "whitespace", + "start": 1548, + "end": 1549, + "value": " " + }, + { + "type": "word", + "start": 1549, + "end": 1556, + "value": "extrude" + }, + { + "type": "brace", + "start": 1556, + "end": 1557, + "value": "(" + }, + { + "type": "number", + "start": 1557, + "end": 1559, + "value": "50" + }, + { + "type": "comma", + "start": 1559, + "end": 1560, + "value": "," + }, + { + "type": "whitespace", + "start": 1560, + "end": 1561, + "value": " " + }, + { + "type": "word", + "start": 1561, + "end": 1570, + "value": "sketch002" + }, + { + "type": "brace", + "start": 1570, + "end": 1571, + "value": ")" + }, + { + "type": "whitespace", + "start": 1571, + "end": 1572, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/ast.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/ast.snap new file mode 100644 index 000000000..fd9d7c6b2 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/ast.snap @@ -0,0 +1,1647 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch-on-chamfer-two-times.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 425, + "id": { + "end": 9, + "name": "sketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 30, + "raw": "'XZ'", + "start": 26, + "type": "Literal", + "type": "Literal", + "value": "XZ" + } + ], + "callee": { + "end": 25, + "name": "startSketchOn", + "start": 12, + "type": "Identifier" + }, + "end": 31, + "optional": false, + "start": 12, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 57, + "raw": "75.8", + "start": 53, + "type": "Literal", + "type": "Literal", + "value": 75.8 + }, + { + "end": 64, + "raw": "317.2", + "start": 59, + "type": "Literal", + "type": "Literal", + "value": 317.2 + } + ], + "end": 65, + "start": 52, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 68, + "start": 67, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 51, + "name": "startProfileAt", + "start": 37, + "type": "Identifier" + }, + "end": 69, + "optional": false, + "start": 37, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 118, + "raw": "0", + "start": 117, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 126, + "raw": "268.43", + "start": 120, + "type": "Literal", + "type": "Literal", + "value": 268.43 + } + ], + "end": 127, + "start": 116, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 130, + "start": 129, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + } + ], + "callee": { + "end": 115, + "name": "angledLine", + "start": 105, + "type": "Identifier" + }, + "end": 154, + "optional": false, + "start": 105, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 213, + "left": { + "arguments": [ + { + "end": 207, + "name": "rectangleSegmentA001", + "start": 187, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 186, + "name": "segAng", + "start": 180, + "type": "Identifier" + }, + "end": 208, + "optional": false, + "start": 180, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 213, + "raw": "90", + "start": 211, + "type": "Literal", + "type": "Literal", + "value": 90 + }, + "start": 180, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 228, + "raw": "217.26", + "start": 222, + "type": "Literal", + "type": "Literal", + "value": 217.26 + } + ], + "end": 235, + "start": 171, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 238, + "start": 237, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + ], + "callee": { + "end": 170, + "name": "angledLine", + "start": 160, + "type": "Identifier" + }, + "end": 247, + "optional": false, + "start": 160, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 300, + "name": "rectangleSegmentA001", + "start": 280, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 279, + "name": "segAng", + "start": 273, + "type": "Identifier" + }, + "end": 301, + "optional": false, + "start": 273, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "argument": { + "arguments": [ + { + "end": 338, + "name": "rectangleSegmentA001", + "start": 318, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 317, + "name": "segLen", + "start": 311, + "type": "Identifier" + }, + "end": 339, + "optional": false, + "start": 311, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 339, + "operator": "-", + "start": 310, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 346, + "start": 264, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 349, + "start": 348, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 263, + "name": "angledLine", + "start": 253, + "type": "Identifier" + }, + "end": 350, + "optional": false, + "start": 253, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 379, + "start": 378, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 377, + "name": "profileStartX", + "start": 364, + "type": "Identifier" + }, + "end": 380, + "optional": false, + "start": 364, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 397, + "start": 396, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 395, + "name": "profileStartY", + "start": 382, + "type": "Identifier" + }, + "end": 398, + "optional": false, + "start": 382, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 399, + "start": 363, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 402, + "start": 401, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg02" + } + ], + "callee": { + "end": 362, + "name": "lineTo", + "start": 356, + "type": "Identifier" + }, + "end": 411, + "optional": false, + "start": 356, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 424, + "start": 423, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 422, + "name": "close", + "start": 417, + "type": "Identifier" + }, + "end": 425, + "optional": false, + "start": 417, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 425, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 99, + "start": 69, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "[$startCapTag, $EndCapTag]", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 12, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 425, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 654, + "id": { + "end": 436, + "name": "extrude001", + "start": 426, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 450, + "raw": "100", + "start": 447, + "type": "Literal", + "type": "Literal", + "value": 100 + }, + { + "end": 461, + "name": "sketch001", + "start": 452, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 446, + "name": "extrude", + "start": 439, + "type": "Identifier" + }, + "end": 462, + "optional": false, + "start": 439, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 504, + "properties": [ + { + "end": 487, + "key": { + "end": 483, + "name": "radius", + "start": 477, + "type": "Identifier" + }, + "start": 477, + "type": "ObjectProperty", + "value": { + "end": 487, + "raw": "20", + "start": 485, + "type": "Literal", + "type": "Literal", + "value": 20 + } + }, + { + "end": 502, + "key": { + "end": 493, + "name": "tags", + "start": 489, + "type": "Identifier" + }, + "start": 489, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 501, + "name": "seg01", + "start": 496, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 502, + "start": 495, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 475, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 507, + "start": 506, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 474, + "name": "fillet", + "start": 468, + "type": "Identifier" + }, + "end": 508, + "optional": false, + "start": 468, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 551, + "properties": [ + { + "end": 534, + "key": { + "end": 530, + "name": "length", + "start": 524, + "type": "Identifier" + }, + "start": 524, + "type": "ObjectProperty", + "value": { + "end": 534, + "raw": "50", + "start": 532, + "type": "Literal", + "type": "Literal", + "value": 50 + } + }, + { + "end": 549, + "key": { + "end": 540, + "name": "tags", + "start": 536, + "type": "Identifier" + }, + "start": 536, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 548, + "name": "seg02", + "start": 543, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 549, + "start": 542, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 522, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 554, + "start": 553, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg04" + } + ], + "callee": { + "end": 521, + "name": "chamfer", + "start": 514, + "type": "Identifier" + }, + "end": 563, + "optional": false, + "start": 514, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 642, + "properties": [ + { + "end": 596, + "key": { + "end": 592, + "name": "length", + "start": 586, + "type": "Identifier" + }, + "start": 586, + "type": "ObjectProperty", + "value": { + "end": 596, + "raw": "50", + "start": 594, + "type": "Literal", + "type": "Literal", + "value": 50 + } + }, + { + "end": 635, + "key": { + "end": 609, + "name": "tags", + "start": 605, + "type": "Identifier" + }, + "start": 605, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "arguments": [ + { + "end": 633, + "name": "seg01", + "start": 628, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 627, + "name": "getOppositeEdge", + "start": 612, + "type": "Identifier" + }, + "end": 634, + "optional": false, + "start": 612, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 635, + "start": 611, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 577, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 645, + "start": 644, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg03" + } + ], + "callee": { + "end": 576, + "name": "chamfer", + "start": 569, + "type": "Identifier" + }, + "end": 654, + "optional": false, + "start": 569, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 654, + "start": 439, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 426, + "type": "VariableDeclarator" + } + ], + "end": 654, + "kind": "const", + "start": 426, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1094, + "id": { + "end": 665, + "name": "sketch003", + "start": 656, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 692, + "name": "extrude001", + "start": 682, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 699, + "name": "seg04", + "start": 694, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 681, + "name": "startSketchOn", + "start": 668, + "type": "Identifier" + }, + "end": 700, + "optional": false, + "start": 668, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 727, + "raw": "69.1", + "start": 723, + "type": "Literal", + "type": "Literal", + "value": 69.1 + }, + "end": 727, + "operator": "-", + "start": 722, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 735, + "raw": "277.34", + "start": 729, + "type": "Literal", + "type": "Literal", + "value": 277.34 + } + ], + "end": 736, + "start": 721, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 739, + "start": 738, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 720, + "name": "startProfileAt", + "start": 706, + "type": "Identifier" + }, + "end": 740, + "optional": false, + "start": 706, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 759, + "raw": "0", + "start": 758, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 766, + "raw": "41.48", + "start": 761, + "type": "Literal", + "type": "Literal", + "value": 41.48 + } + ], + "end": 767, + "start": 757, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 770, + "start": 769, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + } + ], + "callee": { + "end": 756, + "name": "angledLine", + "start": 746, + "type": "Identifier" + }, + "end": 794, + "optional": false, + "start": 746, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 853, + "left": { + "arguments": [ + { + "end": 847, + "name": "rectangleSegmentA003", + "start": 827, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 826, + "name": "segAng", + "start": 820, + "type": "Identifier" + }, + "end": 848, + "optional": false, + "start": 820, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 853, + "raw": "90", + "start": 851, + "type": "Literal", + "type": "Literal", + "value": 90 + }, + "start": 820, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 867, + "raw": "104.8", + "start": 862, + "type": "Literal", + "type": "Literal", + "value": 104.8 + } + ], + "end": 874, + "start": 811, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 877, + "start": 876, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + } + ], + "callee": { + "end": 810, + "name": "angledLine", + "start": 800, + "type": "Identifier" + }, + "end": 901, + "optional": false, + "start": 800, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 954, + "name": "rectangleSegmentA003", + "start": 934, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 933, + "name": "segAng", + "start": 927, + "type": "Identifier" + }, + "end": 955, + "optional": false, + "start": 927, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "argument": { + "arguments": [ + { + "end": 992, + "name": "rectangleSegmentA003", + "start": 972, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 971, + "name": "segLen", + "start": 965, + "type": "Identifier" + }, + "end": 993, + "optional": false, + "start": 965, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 993, + "operator": "-", + "start": 964, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1000, + "start": 918, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1003, + "start": 1002, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + } + ], + "callee": { + "end": 917, + "name": "angledLine", + "start": 907, + "type": "Identifier" + }, + "end": 1027, + "optional": false, + "start": 907, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 1056, + "start": 1055, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1054, + "name": "profileStartX", + "start": 1041, + "type": "Identifier" + }, + "end": 1057, + "optional": false, + "start": 1041, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1074, + "start": 1073, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1072, + "name": "profileStartY", + "start": 1059, + "type": "Identifier" + }, + "end": 1075, + "optional": false, + "start": 1059, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1076, + "start": 1040, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1079, + "start": 1078, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1039, + "name": "lineTo", + "start": 1033, + "type": "Identifier" + }, + "end": 1080, + "optional": false, + "start": 1033, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1093, + "start": 1092, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1091, + "name": "close", + "start": 1086, + "type": "Identifier" + }, + "end": 1094, + "optional": false, + "start": 1086, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1094, + "start": 668, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 656, + "type": "VariableDeclarator" + } + ], + "end": 1094, + "kind": "const", + "start": 656, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1535, + "id": { + "end": 1104, + "name": "sketch002", + "start": 1095, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 1131, + "name": "extrude001", + "start": 1121, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1138, + "name": "seg03", + "start": 1133, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1120, + "name": "startSketchOn", + "start": 1107, + "type": "Identifier" + }, + "end": 1139, + "optional": false, + "start": 1107, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1167, + "raw": "159.25", + "start": 1161, + "type": "Literal", + "type": "Literal", + "value": 159.25 + }, + { + "end": 1175, + "raw": "278.35", + "start": 1169, + "type": "Literal", + "type": "Literal", + "value": 278.35 + } + ], + "end": 1176, + "start": 1160, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1179, + "start": 1178, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1159, + "name": "startProfileAt", + "start": 1145, + "type": "Identifier" + }, + "end": 1180, + "optional": false, + "start": 1145, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1199, + "raw": "0", + "start": 1198, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1206, + "raw": "40.82", + "start": 1201, + "type": "Literal", + "type": "Literal", + "value": 40.82 + } + ], + "end": 1207, + "start": 1197, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1210, + "start": 1209, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + } + ], + "callee": { + "end": 1196, + "name": "angledLine", + "start": 1186, + "type": "Identifier" + }, + "end": 1234, + "optional": false, + "start": 1186, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1293, + "left": { + "arguments": [ + { + "end": 1287, + "name": "rectangleSegmentA002", + "start": 1267, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1266, + "name": "segAng", + "start": 1260, + "type": "Identifier" + }, + "end": 1288, + "optional": false, + "start": 1260, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 1293, + "raw": "90", + "start": 1291, + "type": "Literal", + "type": "Literal", + "value": 90 + }, + "start": 1260, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1308, + "raw": "132.27", + "start": 1302, + "type": "Literal", + "type": "Literal", + "value": 132.27 + } + ], + "end": 1315, + "start": 1251, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1318, + "start": 1317, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + } + ], + "callee": { + "end": 1250, + "name": "angledLine", + "start": 1240, + "type": "Identifier" + }, + "end": 1342, + "optional": false, + "start": 1240, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 1395, + "name": "rectangleSegmentA002", + "start": 1375, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1374, + "name": "segAng", + "start": 1368, + "type": "Identifier" + }, + "end": 1396, + "optional": false, + "start": 1368, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "argument": { + "arguments": [ + { + "end": 1433, + "name": "rectangleSegmentA002", + "start": 1413, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1412, + "name": "segLen", + "start": 1406, + "type": "Identifier" + }, + "end": 1434, + "optional": false, + "start": 1406, + "type": "CallExpression", + "type": "CallExpression" + }, + "end": 1434, + "operator": "-", + "start": 1405, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1441, + "start": 1359, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1444, + "start": 1443, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + } + ], + "callee": { + "end": 1358, + "name": "angledLine", + "start": 1348, + "type": "Identifier" + }, + "end": 1468, + "optional": false, + "start": 1348, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 1497, + "start": 1496, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1495, + "name": "profileStartX", + "start": 1482, + "type": "Identifier" + }, + "end": 1498, + "optional": false, + "start": 1482, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1515, + "start": 1514, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1513, + "name": "profileStartY", + "start": 1500, + "type": "Identifier" + }, + "end": 1516, + "optional": false, + "start": 1500, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1517, + "start": 1481, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1520, + "start": 1519, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1480, + "name": "lineTo", + "start": 1474, + "type": "Identifier" + }, + "end": 1521, + "optional": false, + "start": 1474, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1534, + "start": 1533, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1532, + "name": "close", + "start": 1527, + "type": "Identifier" + }, + "end": 1535, + "optional": false, + "start": 1527, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1535, + "start": 1107, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 1095, + "type": "VariableDeclarator" + } + ], + "end": 1535, + "kind": "const", + "start": 1095, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1571, + "id": { + "end": 1546, + "name": "extrude002", + "start": 1536, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 1559, + "raw": "50", + "start": 1557, + "type": "Literal", + "type": "Literal", + "value": 50 + }, + { + "end": 1570, + "name": "sketch002", + "start": 1561, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1556, + "name": "extrude", + "start": 1549, + "type": "Identifier" + }, + "end": 1571, + "optional": false, + "start": 1549, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 1536, + "type": "VariableDeclarator" + } + ], + "end": 1571, + "kind": "const", + "start": 1536, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 1572, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 656, + "start": 654, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/input.kcl b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/input.kcl new file mode 100644 index 000000000..db67e9c1b --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/input.kcl @@ -0,0 +1,48 @@ +sketch001 = startSketchOn('XZ') + |> startProfileAt([75.8, 317.2], %) // [$startCapTag, $EndCapTag] + |> angledLine([0, 268.43], %, $rectangleSegmentA001) + |> angledLine([ + segAng(rectangleSegmentA001) - 90, + 217.26 + ], %, $seg01) + |> angledLine([ + segAng(rectangleSegmentA001), + -segLen(rectangleSegmentA001) + ], %) + |> lineTo([profileStartX(%), profileStartY(%)], %, $seg02) + |> close(%) +extrude001 = extrude(100, sketch001) + |> fillet({ radius: 20, tags: [seg01] }, %) + |> chamfer({ length: 50, tags: [seg02] }, %, $seg04) + |> chamfer({ + length: 50, + tags: [getOppositeEdge(seg01)] + }, %, $seg03) + +sketch003 = startSketchOn(extrude001, seg04) + |> startProfileAt([-69.1, 277.34], %) + |> angledLine([0, 41.48], %, $rectangleSegmentA003) + |> angledLine([ + segAng(rectangleSegmentA003) - 90, + 104.8 + ], %, $rectangleSegmentB002) + |> angledLine([ + segAng(rectangleSegmentA003), + -segLen(rectangleSegmentA003) + ], %, $rectangleSegmentC002) + |> lineTo([profileStartX(%), profileStartY(%)], %) + |> close(%) +sketch002 = startSketchOn(extrude001, seg03) + |> startProfileAt([159.25, 278.35], %) + |> angledLine([0, 40.82], %, $rectangleSegmentA002) + |> angledLine([ + segAng(rectangleSegmentA002) - 90, + 132.27 + ], %, $rectangleSegmentB001) + |> angledLine([ + segAng(rectangleSegmentA002), + -segLen(rectangleSegmentA002) + ], %, $rectangleSegmentC001) + |> lineTo([profileStartX(%), profileStartY(%)], %) + |> close(%) +extrude002 = extrude(50, sketch002) 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 new file mode 100644 index 000000000..f6ccac37b --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap @@ -0,0 +1,4405 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch-on-chamfer-two-times.kcl +snapshot_kind: text +--- +{ + "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": [] + }, + "extrude001": { + "type": "Solid", + "type": "Solid", + "id": "[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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 556, + 562, + 0 + ] + } + ] + } + }, + "__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": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "extrude002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1474, + 1521, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1474, + 1521, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1527, + 1535, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 556, + 562, + 0 + ] + } + ] + } + }, + "__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": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 1107, + 1139, + 0 + ] + } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1212, + 1233, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1320, + 1341, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1446, + 1467, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + ] + }, + "height": 50.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 1145, + 1180, + 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": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1212, + 1233, + 0 + ] + } + ] + }, + "rectangleSegmentA003": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 746, + 794, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 772, + 793, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1320, + 1341, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 800, + 901, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 879, + 900, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1446, + 1467, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 907, + 1027, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1005, + 1026, + 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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 556, + 562, + 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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 556, + 562, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1474, + 1521, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1527, + 1535, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 556, + 562, + 0 + ] + } + ] + } + }, + "__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": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 1107, + 1139, + 0 + ] + } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1186, + 1234, + 0 + ], + "tag": { + "end": 1233, + "start": 1212, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1212, + 1233, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1240, + 1342, + 0 + ], + "tag": { + "end": 1341, + "start": 1320, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1320, + 1341, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1468, + 0 + ], + "tag": { + "end": 1467, + "start": 1446, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1446, + 1467, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 1145, + 1180, + 0 + ] + } + ] + } + }, + "sketch003": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 746, + 794, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.62, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 800, + 901, + 0 + ] + }, + "from": [ + -27.62, + 277.34 + ], + "tag": { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.62, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 907, + 1027, + 0 + ] + }, + "from": [ + -27.62, + 172.54 + ], + "tag": { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1033, + 1080, + 0 + ] + }, + "from": [ + -69.1, + 172.54 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1086, + 1094, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "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, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "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, + 411, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 417, + 425, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__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, + 411, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 411, + 0 + ], + "tag": { + "end": 410, + "start": 404, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 404, + 410, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 569, + 654, + 0 + ], + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 647, + 653, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 514, + 563, + 0 + ], + "tag": { + "end": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 556, + 562, + 0 + ] + } + ] + } + }, + "__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": 562, + "start": 556, + "type": "TagDeclarator", + "value": "seg04" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 653, + "start": 647, + "type": "TagDeclarator", + "value": "seg03" + } + } + ], + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 668, + 700, + 0 + ] + } + ] + }, + "start": { + "from": [ + -69.1, + 277.34 + ], + "to": [ + -69.1, + 277.34 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 706, + 740, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA003": { + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 746, + 794, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 793, + "start": 772, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 772, + 793, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 800, + 901, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 900, + "start": 879, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 879, + 900, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 907, + 1027, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1026, + "start": 1005, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1005, + 1026, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 706, + 740, + 0 + ] + } + ] + } + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/rendered_model.png b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/rendered_model.png new file mode 100644 index 000000000..15fa02617 Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/tokens.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/tokens.snap new file mode 100644 index 000000000..b267ae5cc --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/tokens.snap @@ -0,0 +1,3009 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch-on-chamfer-two-times.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 9, + "value": "sketch001" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "operator", + "start": 10, + "end": 11, + "value": "=" + }, + { + "type": "whitespace", + "start": 11, + "end": 12, + "value": " " + }, + { + "type": "word", + "start": 12, + "end": 25, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 25, + "end": 26, + "value": "(" + }, + { + "type": "string", + "start": 26, + "end": 30, + "value": "'XZ'" + }, + { + "type": "brace", + "start": 30, + "end": 31, + "value": ")" + }, + { + "type": "whitespace", + "start": 31, + "end": 34, + "value": "\n " + }, + { + "type": "operator", + "start": 34, + "end": 36, + "value": "|>" + }, + { + "type": "whitespace", + "start": 36, + "end": 37, + "value": " " + }, + { + "type": "word", + "start": 37, + "end": 51, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 51, + "end": 52, + "value": "(" + }, + { + "type": "brace", + "start": 52, + "end": 53, + "value": "[" + }, + { + "type": "number", + "start": 53, + "end": 57, + "value": "75.8" + }, + { + "type": "comma", + "start": 57, + "end": 58, + "value": "," + }, + { + "type": "whitespace", + "start": 58, + "end": 59, + "value": " " + }, + { + "type": "number", + "start": 59, + "end": 64, + "value": "317.2" + }, + { + "type": "brace", + "start": 64, + "end": 65, + "value": "]" + }, + { + "type": "comma", + "start": 65, + "end": 66, + "value": "," + }, + { + "type": "whitespace", + "start": 66, + "end": 67, + "value": " " + }, + { + "type": "operator", + "start": 67, + "end": 68, + "value": "%" + }, + { + "type": "brace", + "start": 68, + "end": 69, + "value": ")" + }, + { + "type": "whitespace", + "start": 69, + "end": 70, + "value": " " + }, + { + "type": "lineComment", + "start": 70, + "end": 99, + "value": "// [$startCapTag, $EndCapTag]" + }, + { + "type": "whitespace", + "start": 99, + "end": 102, + "value": "\n " + }, + { + "type": "operator", + "start": 102, + "end": 104, + "value": "|>" + }, + { + "type": "whitespace", + "start": 104, + "end": 105, + "value": " " + }, + { + "type": "word", + "start": 105, + "end": 115, + "value": "angledLine" + }, + { + "type": "brace", + "start": 115, + "end": 116, + "value": "(" + }, + { + "type": "brace", + "start": 116, + "end": 117, + "value": "[" + }, + { + "type": "number", + "start": 117, + "end": 118, + "value": "0" + }, + { + "type": "comma", + "start": 118, + "end": 119, + "value": "," + }, + { + "type": "whitespace", + "start": 119, + "end": 120, + "value": " " + }, + { + "type": "number", + "start": 120, + "end": 126, + "value": "268.43" + }, + { + "type": "brace", + "start": 126, + "end": 127, + "value": "]" + }, + { + "type": "comma", + "start": 127, + "end": 128, + "value": "," + }, + { + "type": "whitespace", + "start": 128, + "end": 129, + "value": " " + }, + { + "type": "operator", + "start": 129, + "end": 130, + "value": "%" + }, + { + "type": "comma", + "start": 130, + "end": 131, + "value": "," + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "dollar", + "start": 132, + "end": 133, + "value": "$" + }, + { + "type": "word", + "start": 133, + "end": 153, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 153, + "end": 154, + "value": ")" + }, + { + "type": "whitespace", + "start": 154, + "end": 157, + "value": "\n " + }, + { + "type": "operator", + "start": 157, + "end": 159, + "value": "|>" + }, + { + "type": "whitespace", + "start": 159, + "end": 160, + "value": " " + }, + { + "type": "word", + "start": 160, + "end": 170, + "value": "angledLine" + }, + { + "type": "brace", + "start": 170, + "end": 171, + "value": "(" + }, + { + "type": "brace", + "start": 171, + "end": 172, + "value": "[" + }, + { + "type": "whitespace", + "start": 172, + "end": 180, + "value": "\n " + }, + { + "type": "word", + "start": 180, + "end": 186, + "value": "segAng" + }, + { + "type": "brace", + "start": 186, + "end": 187, + "value": "(" + }, + { + "type": "word", + "start": 187, + "end": 207, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 207, + "end": 208, + "value": ")" + }, + { + "type": "whitespace", + "start": 208, + "end": 209, + "value": " " + }, + { + "type": "operator", + "start": 209, + "end": 210, + "value": "-" + }, + { + "type": "whitespace", + "start": 210, + "end": 211, + "value": " " + }, + { + "type": "number", + "start": 211, + "end": 213, + "value": "90" + }, + { + "type": "comma", + "start": 213, + "end": 214, + "value": "," + }, + { + "type": "whitespace", + "start": 214, + "end": 222, + "value": "\n " + }, + { + "type": "number", + "start": 222, + "end": 228, + "value": "217.26" + }, + { + "type": "whitespace", + "start": 228, + "end": 234, + "value": "\n " + }, + { + "type": "brace", + "start": 234, + "end": 235, + "value": "]" + }, + { + "type": "comma", + "start": 235, + "end": 236, + "value": "," + }, + { + "type": "whitespace", + "start": 236, + "end": 237, + "value": " " + }, + { + "type": "operator", + "start": 237, + "end": 238, + "value": "%" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "dollar", + "start": 240, + "end": 241, + "value": "$" + }, + { + "type": "word", + "start": 241, + "end": 246, + "value": "seg01" + }, + { + "type": "brace", + "start": 246, + "end": 247, + "value": ")" + }, + { + "type": "whitespace", + "start": 247, + "end": 250, + "value": "\n " + }, + { + "type": "operator", + "start": 250, + "end": 252, + "value": "|>" + }, + { + "type": "whitespace", + "start": 252, + "end": 253, + "value": " " + }, + { + "type": "word", + "start": 253, + "end": 263, + "value": "angledLine" + }, + { + "type": "brace", + "start": 263, + "end": 264, + "value": "(" + }, + { + "type": "brace", + "start": 264, + "end": 265, + "value": "[" + }, + { + "type": "whitespace", + "start": 265, + "end": 273, + "value": "\n " + }, + { + "type": "word", + "start": 273, + "end": 279, + "value": "segAng" + }, + { + "type": "brace", + "start": 279, + "end": 280, + "value": "(" + }, + { + "type": "word", + "start": 280, + "end": 300, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 300, + "end": 301, + "value": ")" + }, + { + "type": "comma", + "start": 301, + "end": 302, + "value": "," + }, + { + "type": "whitespace", + "start": 302, + "end": 310, + "value": "\n " + }, + { + "type": "operator", + "start": 310, + "end": 311, + "value": "-" + }, + { + "type": "word", + "start": 311, + "end": 317, + "value": "segLen" + }, + { + "type": "brace", + "start": 317, + "end": 318, + "value": "(" + }, + { + "type": "word", + "start": 318, + "end": 338, + "value": "rectangleSegmentA001" + }, + { + "type": "brace", + "start": 338, + "end": 339, + "value": ")" + }, + { + "type": "whitespace", + "start": 339, + "end": 345, + "value": "\n " + }, + { + "type": "brace", + "start": 345, + "end": 346, + "value": "]" + }, + { + "type": "comma", + "start": 346, + "end": 347, + "value": "," + }, + { + "type": "whitespace", + "start": 347, + "end": 348, + "value": " " + }, + { + "type": "operator", + "start": 348, + "end": 349, + "value": "%" + }, + { + "type": "brace", + "start": 349, + "end": 350, + "value": ")" + }, + { + "type": "whitespace", + "start": 350, + "end": 353, + "value": "\n " + }, + { + "type": "operator", + "start": 353, + "end": 355, + "value": "|>" + }, + { + "type": "whitespace", + "start": 355, + "end": 356, + "value": " " + }, + { + "type": "word", + "start": 356, + "end": 362, + "value": "lineTo" + }, + { + "type": "brace", + "start": 362, + "end": 363, + "value": "(" + }, + { + "type": "brace", + "start": 363, + "end": 364, + "value": "[" + }, + { + "type": "word", + "start": 364, + "end": 377, + "value": "profileStartX" + }, + { + "type": "brace", + "start": 377, + "end": 378, + "value": "(" + }, + { + "type": "operator", + "start": 378, + "end": 379, + "value": "%" + }, + { + "type": "brace", + "start": 379, + "end": 380, + "value": ")" + }, + { + "type": "comma", + "start": 380, + "end": 381, + "value": "," + }, + { + "type": "whitespace", + "start": 381, + "end": 382, + "value": " " + }, + { + "type": "word", + "start": 382, + "end": 395, + "value": "profileStartY" + }, + { + "type": "brace", + "start": 395, + "end": 396, + "value": "(" + }, + { + "type": "operator", + "start": 396, + "end": 397, + "value": "%" + }, + { + "type": "brace", + "start": 397, + "end": 398, + "value": ")" + }, + { + "type": "brace", + "start": 398, + "end": 399, + "value": "]" + }, + { + "type": "comma", + "start": 399, + "end": 400, + "value": "," + }, + { + "type": "whitespace", + "start": 400, + "end": 401, + "value": " " + }, + { + "type": "operator", + "start": 401, + "end": 402, + "value": "%" + }, + { + "type": "comma", + "start": 402, + "end": 403, + "value": "," + }, + { + "type": "whitespace", + "start": 403, + "end": 404, + "value": " " + }, + { + "type": "dollar", + "start": 404, + "end": 405, + "value": "$" + }, + { + "type": "word", + "start": 405, + "end": 410, + "value": "seg02" + }, + { + "type": "brace", + "start": 410, + "end": 411, + "value": ")" + }, + { + "type": "whitespace", + "start": 411, + "end": 414, + "value": "\n " + }, + { + "type": "operator", + "start": 414, + "end": 416, + "value": "|>" + }, + { + "type": "whitespace", + "start": 416, + "end": 417, + "value": " " + }, + { + "type": "word", + "start": 417, + "end": 422, + "value": "close" + }, + { + "type": "brace", + "start": 422, + "end": 423, + "value": "(" + }, + { + "type": "operator", + "start": 423, + "end": 424, + "value": "%" + }, + { + "type": "brace", + "start": 424, + "end": 425, + "value": ")" + }, + { + "type": "whitespace", + "start": 425, + "end": 426, + "value": "\n" + }, + { + "type": "word", + "start": 426, + "end": 436, + "value": "extrude001" + }, + { + "type": "whitespace", + "start": 436, + "end": 437, + "value": " " + }, + { + "type": "operator", + "start": 437, + "end": 438, + "value": "=" + }, + { + "type": "whitespace", + "start": 438, + "end": 439, + "value": " " + }, + { + "type": "word", + "start": 439, + "end": 446, + "value": "extrude" + }, + { + "type": "brace", + "start": 446, + "end": 447, + "value": "(" + }, + { + "type": "number", + "start": 447, + "end": 450, + "value": "100" + }, + { + "type": "comma", + "start": 450, + "end": 451, + "value": "," + }, + { + "type": "whitespace", + "start": 451, + "end": 452, + "value": " " + }, + { + "type": "word", + "start": 452, + "end": 461, + "value": "sketch001" + }, + { + "type": "brace", + "start": 461, + "end": 462, + "value": ")" + }, + { + "type": "whitespace", + "start": 462, + "end": 465, + "value": "\n " + }, + { + "type": "operator", + "start": 465, + "end": 467, + "value": "|>" + }, + { + "type": "whitespace", + "start": 467, + "end": 468, + "value": " " + }, + { + "type": "word", + "start": 468, + "end": 474, + "value": "fillet" + }, + { + "type": "brace", + "start": 474, + "end": 475, + "value": "(" + }, + { + "type": "brace", + "start": 475, + "end": 476, + "value": "{" + }, + { + "type": "whitespace", + "start": 476, + "end": 477, + "value": " " + }, + { + "type": "word", + "start": 477, + "end": 483, + "value": "radius" + }, + { + "type": "colon", + "start": 483, + "end": 484, + "value": ":" + }, + { + "type": "whitespace", + "start": 484, + "end": 485, + "value": " " + }, + { + "type": "number", + "start": 485, + "end": 487, + "value": "20" + }, + { + "type": "comma", + "start": 487, + "end": 488, + "value": "," + }, + { + "type": "whitespace", + "start": 488, + "end": 489, + "value": " " + }, + { + "type": "word", + "start": 489, + "end": 493, + "value": "tags" + }, + { + "type": "colon", + "start": 493, + "end": 494, + "value": ":" + }, + { + "type": "whitespace", + "start": 494, + "end": 495, + "value": " " + }, + { + "type": "brace", + "start": 495, + "end": 496, + "value": "[" + }, + { + "type": "word", + "start": 496, + "end": 501, + "value": "seg01" + }, + { + "type": "brace", + "start": 501, + "end": 502, + "value": "]" + }, + { + "type": "whitespace", + "start": 502, + "end": 503, + "value": " " + }, + { + "type": "brace", + "start": 503, + "end": 504, + "value": "}" + }, + { + "type": "comma", + "start": 504, + "end": 505, + "value": "," + }, + { + "type": "whitespace", + "start": 505, + "end": 506, + "value": " " + }, + { + "type": "operator", + "start": 506, + "end": 507, + "value": "%" + }, + { + "type": "brace", + "start": 507, + "end": 508, + "value": ")" + }, + { + "type": "whitespace", + "start": 508, + "end": 511, + "value": "\n " + }, + { + "type": "operator", + "start": 511, + "end": 513, + "value": "|>" + }, + { + "type": "whitespace", + "start": 513, + "end": 514, + "value": " " + }, + { + "type": "word", + "start": 514, + "end": 521, + "value": "chamfer" + }, + { + "type": "brace", + "start": 521, + "end": 522, + "value": "(" + }, + { + "type": "brace", + "start": 522, + "end": 523, + "value": "{" + }, + { + "type": "whitespace", + "start": 523, + "end": 524, + "value": " " + }, + { + "type": "word", + "start": 524, + "end": 530, + "value": "length" + }, + { + "type": "colon", + "start": 530, + "end": 531, + "value": ":" + }, + { + "type": "whitespace", + "start": 531, + "end": 532, + "value": " " + }, + { + "type": "number", + "start": 532, + "end": 534, + "value": "50" + }, + { + "type": "comma", + "start": 534, + "end": 535, + "value": "," + }, + { + "type": "whitespace", + "start": 535, + "end": 536, + "value": " " + }, + { + "type": "word", + "start": 536, + "end": 540, + "value": "tags" + }, + { + "type": "colon", + "start": 540, + "end": 541, + "value": ":" + }, + { + "type": "whitespace", + "start": 541, + "end": 542, + "value": " " + }, + { + "type": "brace", + "start": 542, + "end": 543, + "value": "[" + }, + { + "type": "word", + "start": 543, + "end": 548, + "value": "seg02" + }, + { + "type": "brace", + "start": 548, + "end": 549, + "value": "]" + }, + { + "type": "whitespace", + "start": 549, + "end": 550, + "value": " " + }, + { + "type": "brace", + "start": 550, + "end": 551, + "value": "}" + }, + { + "type": "comma", + "start": 551, + "end": 552, + "value": "," + }, + { + "type": "whitespace", + "start": 552, + "end": 553, + "value": " " + }, + { + "type": "operator", + "start": 553, + "end": 554, + "value": "%" + }, + { + "type": "comma", + "start": 554, + "end": 555, + "value": "," + }, + { + "type": "whitespace", + "start": 555, + "end": 556, + "value": " " + }, + { + "type": "dollar", + "start": 556, + "end": 557, + "value": "$" + }, + { + "type": "word", + "start": 557, + "end": 562, + "value": "seg04" + }, + { + "type": "brace", + "start": 562, + "end": 563, + "value": ")" + }, + { + "type": "whitespace", + "start": 563, + "end": 566, + "value": "\n " + }, + { + "type": "operator", + "start": 566, + "end": 568, + "value": "|>" + }, + { + "type": "whitespace", + "start": 568, + "end": 569, + "value": " " + }, + { + "type": "word", + "start": 569, + "end": 576, + "value": "chamfer" + }, + { + "type": "brace", + "start": 576, + "end": 577, + "value": "(" + }, + { + "type": "brace", + "start": 577, + "end": 578, + "value": "{" + }, + { + "type": "whitespace", + "start": 578, + "end": 586, + "value": "\n " + }, + { + "type": "word", + "start": 586, + "end": 592, + "value": "length" + }, + { + "type": "colon", + "start": 592, + "end": 593, + "value": ":" + }, + { + "type": "whitespace", + "start": 593, + "end": 594, + "value": " " + }, + { + "type": "number", + "start": 594, + "end": 596, + "value": "50" + }, + { + "type": "comma", + "start": 596, + "end": 597, + "value": "," + }, + { + "type": "whitespace", + "start": 597, + "end": 605, + "value": "\n " + }, + { + "type": "word", + "start": 605, + "end": 609, + "value": "tags" + }, + { + "type": "colon", + "start": 609, + "end": 610, + "value": ":" + }, + { + "type": "whitespace", + "start": 610, + "end": 611, + "value": " " + }, + { + "type": "brace", + "start": 611, + "end": 612, + "value": "[" + }, + { + "type": "word", + "start": 612, + "end": 627, + "value": "getOppositeEdge" + }, + { + "type": "brace", + "start": 627, + "end": 628, + "value": "(" + }, + { + "type": "word", + "start": 628, + "end": 633, + "value": "seg01" + }, + { + "type": "brace", + "start": 633, + "end": 634, + "value": ")" + }, + { + "type": "brace", + "start": 634, + "end": 635, + "value": "]" + }, + { + "type": "whitespace", + "start": 635, + "end": 641, + "value": "\n " + }, + { + "type": "brace", + "start": 641, + "end": 642, + "value": "}" + }, + { + "type": "comma", + "start": 642, + "end": 643, + "value": "," + }, + { + "type": "whitespace", + "start": 643, + "end": 644, + "value": " " + }, + { + "type": "operator", + "start": 644, + "end": 645, + "value": "%" + }, + { + "type": "comma", + "start": 645, + "end": 646, + "value": "," + }, + { + "type": "whitespace", + "start": 646, + "end": 647, + "value": " " + }, + { + "type": "dollar", + "start": 647, + "end": 648, + "value": "$" + }, + { + "type": "word", + "start": 648, + "end": 653, + "value": "seg03" + }, + { + "type": "brace", + "start": 653, + "end": 654, + "value": ")" + }, + { + "type": "whitespace", + "start": 654, + "end": 656, + "value": "\n\n" + }, + { + "type": "word", + "start": 656, + "end": 665, + "value": "sketch003" + }, + { + "type": "whitespace", + "start": 665, + "end": 666, + "value": " " + }, + { + "type": "operator", + "start": 666, + "end": 667, + "value": "=" + }, + { + "type": "whitespace", + "start": 667, + "end": 668, + "value": " " + }, + { + "type": "word", + "start": 668, + "end": 681, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 681, + "end": 682, + "value": "(" + }, + { + "type": "word", + "start": 682, + "end": 692, + "value": "extrude001" + }, + { + "type": "comma", + "start": 692, + "end": 693, + "value": "," + }, + { + "type": "whitespace", + "start": 693, + "end": 694, + "value": " " + }, + { + "type": "word", + "start": 694, + "end": 699, + "value": "seg04" + }, + { + "type": "brace", + "start": 699, + "end": 700, + "value": ")" + }, + { + "type": "whitespace", + "start": 700, + "end": 703, + "value": "\n " + }, + { + "type": "operator", + "start": 703, + "end": 705, + "value": "|>" + }, + { + "type": "whitespace", + "start": 705, + "end": 706, + "value": " " + }, + { + "type": "word", + "start": 706, + "end": 720, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 720, + "end": 721, + "value": "(" + }, + { + "type": "brace", + "start": 721, + "end": 722, + "value": "[" + }, + { + "type": "operator", + "start": 722, + "end": 723, + "value": "-" + }, + { + "type": "number", + "start": 723, + "end": 727, + "value": "69.1" + }, + { + "type": "comma", + "start": 727, + "end": 728, + "value": "," + }, + { + "type": "whitespace", + "start": 728, + "end": 729, + "value": " " + }, + { + "type": "number", + "start": 729, + "end": 735, + "value": "277.34" + }, + { + "type": "brace", + "start": 735, + "end": 736, + "value": "]" + }, + { + "type": "comma", + "start": 736, + "end": 737, + "value": "," + }, + { + "type": "whitespace", + "start": 737, + "end": 738, + "value": " " + }, + { + "type": "operator", + "start": 738, + "end": 739, + "value": "%" + }, + { + "type": "brace", + "start": 739, + "end": 740, + "value": ")" + }, + { + "type": "whitespace", + "start": 740, + "end": 743, + "value": "\n " + }, + { + "type": "operator", + "start": 743, + "end": 745, + "value": "|>" + }, + { + "type": "whitespace", + "start": 745, + "end": 746, + "value": " " + }, + { + "type": "word", + "start": 746, + "end": 756, + "value": "angledLine" + }, + { + "type": "brace", + "start": 756, + "end": 757, + "value": "(" + }, + { + "type": "brace", + "start": 757, + "end": 758, + "value": "[" + }, + { + "type": "number", + "start": 758, + "end": 759, + "value": "0" + }, + { + "type": "comma", + "start": 759, + "end": 760, + "value": "," + }, + { + "type": "whitespace", + "start": 760, + "end": 761, + "value": " " + }, + { + "type": "number", + "start": 761, + "end": 766, + "value": "41.48" + }, + { + "type": "brace", + "start": 766, + "end": 767, + "value": "]" + }, + { + "type": "comma", + "start": 767, + "end": 768, + "value": "," + }, + { + "type": "whitespace", + "start": 768, + "end": 769, + "value": " " + }, + { + "type": "operator", + "start": 769, + "end": 770, + "value": "%" + }, + { + "type": "comma", + "start": 770, + "end": 771, + "value": "," + }, + { + "type": "whitespace", + "start": 771, + "end": 772, + "value": " " + }, + { + "type": "dollar", + "start": 772, + "end": 773, + "value": "$" + }, + { + "type": "word", + "start": 773, + "end": 793, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 793, + "end": 794, + "value": ")" + }, + { + "type": "whitespace", + "start": 794, + "end": 797, + "value": "\n " + }, + { + "type": "operator", + "start": 797, + "end": 799, + "value": "|>" + }, + { + "type": "whitespace", + "start": 799, + "end": 800, + "value": " " + }, + { + "type": "word", + "start": 800, + "end": 810, + "value": "angledLine" + }, + { + "type": "brace", + "start": 810, + "end": 811, + "value": "(" + }, + { + "type": "brace", + "start": 811, + "end": 812, + "value": "[" + }, + { + "type": "whitespace", + "start": 812, + "end": 820, + "value": "\n " + }, + { + "type": "word", + "start": 820, + "end": 826, + "value": "segAng" + }, + { + "type": "brace", + "start": 826, + "end": 827, + "value": "(" + }, + { + "type": "word", + "start": 827, + "end": 847, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 847, + "end": 848, + "value": ")" + }, + { + "type": "whitespace", + "start": 848, + "end": 849, + "value": " " + }, + { + "type": "operator", + "start": 849, + "end": 850, + "value": "-" + }, + { + "type": "whitespace", + "start": 850, + "end": 851, + "value": " " + }, + { + "type": "number", + "start": 851, + "end": 853, + "value": "90" + }, + { + "type": "comma", + "start": 853, + "end": 854, + "value": "," + }, + { + "type": "whitespace", + "start": 854, + "end": 862, + "value": "\n " + }, + { + "type": "number", + "start": 862, + "end": 867, + "value": "104.8" + }, + { + "type": "whitespace", + "start": 867, + "end": 873, + "value": "\n " + }, + { + "type": "brace", + "start": 873, + "end": 874, + "value": "]" + }, + { + "type": "comma", + "start": 874, + "end": 875, + "value": "," + }, + { + "type": "whitespace", + "start": 875, + "end": 876, + "value": " " + }, + { + "type": "operator", + "start": 876, + "end": 877, + "value": "%" + }, + { + "type": "comma", + "start": 877, + "end": 878, + "value": "," + }, + { + "type": "whitespace", + "start": 878, + "end": 879, + "value": " " + }, + { + "type": "dollar", + "start": 879, + "end": 880, + "value": "$" + }, + { + "type": "word", + "start": 880, + "end": 900, + "value": "rectangleSegmentB002" + }, + { + "type": "brace", + "start": 900, + "end": 901, + "value": ")" + }, + { + "type": "whitespace", + "start": 901, + "end": 904, + "value": "\n " + }, + { + "type": "operator", + "start": 904, + "end": 906, + "value": "|>" + }, + { + "type": "whitespace", + "start": 906, + "end": 907, + "value": " " + }, + { + "type": "word", + "start": 907, + "end": 917, + "value": "angledLine" + }, + { + "type": "brace", + "start": 917, + "end": 918, + "value": "(" + }, + { + "type": "brace", + "start": 918, + "end": 919, + "value": "[" + }, + { + "type": "whitespace", + "start": 919, + "end": 927, + "value": "\n " + }, + { + "type": "word", + "start": 927, + "end": 933, + "value": "segAng" + }, + { + "type": "brace", + "start": 933, + "end": 934, + "value": "(" + }, + { + "type": "word", + "start": 934, + "end": 954, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 954, + "end": 955, + "value": ")" + }, + { + "type": "comma", + "start": 955, + "end": 956, + "value": "," + }, + { + "type": "whitespace", + "start": 956, + "end": 964, + "value": "\n " + }, + { + "type": "operator", + "start": 964, + "end": 965, + "value": "-" + }, + { + "type": "word", + "start": 965, + "end": 971, + "value": "segLen" + }, + { + "type": "brace", + "start": 971, + "end": 972, + "value": "(" + }, + { + "type": "word", + "start": 972, + "end": 992, + "value": "rectangleSegmentA003" + }, + { + "type": "brace", + "start": 992, + "end": 993, + "value": ")" + }, + { + "type": "whitespace", + "start": 993, + "end": 999, + "value": "\n " + }, + { + "type": "brace", + "start": 999, + "end": 1000, + "value": "]" + }, + { + "type": "comma", + "start": 1000, + "end": 1001, + "value": "," + }, + { + "type": "whitespace", + "start": 1001, + "end": 1002, + "value": " " + }, + { + "type": "operator", + "start": 1002, + "end": 1003, + "value": "%" + }, + { + "type": "comma", + "start": 1003, + "end": 1004, + "value": "," + }, + { + "type": "whitespace", + "start": 1004, + "end": 1005, + "value": " " + }, + { + "type": "dollar", + "start": 1005, + "end": 1006, + "value": "$" + }, + { + "type": "word", + "start": 1006, + "end": 1026, + "value": "rectangleSegmentC002" + }, + { + "type": "brace", + "start": 1026, + "end": 1027, + "value": ")" + }, + { + "type": "whitespace", + "start": 1027, + "end": 1030, + "value": "\n " + }, + { + "type": "operator", + "start": 1030, + "end": 1032, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1032, + "end": 1033, + "value": " " + }, + { + "type": "word", + "start": 1033, + "end": 1039, + "value": "lineTo" + }, + { + "type": "brace", + "start": 1039, + "end": 1040, + "value": "(" + }, + { + "type": "brace", + "start": 1040, + "end": 1041, + "value": "[" + }, + { + "type": "word", + "start": 1041, + "end": 1054, + "value": "profileStartX" + }, + { + "type": "brace", + "start": 1054, + "end": 1055, + "value": "(" + }, + { + "type": "operator", + "start": 1055, + "end": 1056, + "value": "%" + }, + { + "type": "brace", + "start": 1056, + "end": 1057, + "value": ")" + }, + { + "type": "comma", + "start": 1057, + "end": 1058, + "value": "," + }, + { + "type": "whitespace", + "start": 1058, + "end": 1059, + "value": " " + }, + { + "type": "word", + "start": 1059, + "end": 1072, + "value": "profileStartY" + }, + { + "type": "brace", + "start": 1072, + "end": 1073, + "value": "(" + }, + { + "type": "operator", + "start": 1073, + "end": 1074, + "value": "%" + }, + { + "type": "brace", + "start": 1074, + "end": 1075, + "value": ")" + }, + { + "type": "brace", + "start": 1075, + "end": 1076, + "value": "]" + }, + { + "type": "comma", + "start": 1076, + "end": 1077, + "value": "," + }, + { + "type": "whitespace", + "start": 1077, + "end": 1078, + "value": " " + }, + { + "type": "operator", + "start": 1078, + "end": 1079, + "value": "%" + }, + { + "type": "brace", + "start": 1079, + "end": 1080, + "value": ")" + }, + { + "type": "whitespace", + "start": 1080, + "end": 1083, + "value": "\n " + }, + { + "type": "operator", + "start": 1083, + "end": 1085, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1085, + "end": 1086, + "value": " " + }, + { + "type": "word", + "start": 1086, + "end": 1091, + "value": "close" + }, + { + "type": "brace", + "start": 1091, + "end": 1092, + "value": "(" + }, + { + "type": "operator", + "start": 1092, + "end": 1093, + "value": "%" + }, + { + "type": "brace", + "start": 1093, + "end": 1094, + "value": ")" + }, + { + "type": "whitespace", + "start": 1094, + "end": 1095, + "value": "\n" + }, + { + "type": "word", + "start": 1095, + "end": 1104, + "value": "sketch002" + }, + { + "type": "whitespace", + "start": 1104, + "end": 1105, + "value": " " + }, + { + "type": "operator", + "start": 1105, + "end": 1106, + "value": "=" + }, + { + "type": "whitespace", + "start": 1106, + "end": 1107, + "value": " " + }, + { + "type": "word", + "start": 1107, + "end": 1120, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 1120, + "end": 1121, + "value": "(" + }, + { + "type": "word", + "start": 1121, + "end": 1131, + "value": "extrude001" + }, + { + "type": "comma", + "start": 1131, + "end": 1132, + "value": "," + }, + { + "type": "whitespace", + "start": 1132, + "end": 1133, + "value": " " + }, + { + "type": "word", + "start": 1133, + "end": 1138, + "value": "seg03" + }, + { + "type": "brace", + "start": 1138, + "end": 1139, + "value": ")" + }, + { + "type": "whitespace", + "start": 1139, + "end": 1142, + "value": "\n " + }, + { + "type": "operator", + "start": 1142, + "end": 1144, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1144, + "end": 1145, + "value": " " + }, + { + "type": "word", + "start": 1145, + "end": 1159, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 1159, + "end": 1160, + "value": "(" + }, + { + "type": "brace", + "start": 1160, + "end": 1161, + "value": "[" + }, + { + "type": "number", + "start": 1161, + "end": 1167, + "value": "159.25" + }, + { + "type": "comma", + "start": 1167, + "end": 1168, + "value": "," + }, + { + "type": "whitespace", + "start": 1168, + "end": 1169, + "value": " " + }, + { + "type": "number", + "start": 1169, + "end": 1175, + "value": "278.35" + }, + { + "type": "brace", + "start": 1175, + "end": 1176, + "value": "]" + }, + { + "type": "comma", + "start": 1176, + "end": 1177, + "value": "," + }, + { + "type": "whitespace", + "start": 1177, + "end": 1178, + "value": " " + }, + { + "type": "operator", + "start": 1178, + "end": 1179, + "value": "%" + }, + { + "type": "brace", + "start": 1179, + "end": 1180, + "value": ")" + }, + { + "type": "whitespace", + "start": 1180, + "end": 1183, + "value": "\n " + }, + { + "type": "operator", + "start": 1183, + "end": 1185, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1185, + "end": 1186, + "value": " " + }, + { + "type": "word", + "start": 1186, + "end": 1196, + "value": "angledLine" + }, + { + "type": "brace", + "start": 1196, + "end": 1197, + "value": "(" + }, + { + "type": "brace", + "start": 1197, + "end": 1198, + "value": "[" + }, + { + "type": "number", + "start": 1198, + "end": 1199, + "value": "0" + }, + { + "type": "comma", + "start": 1199, + "end": 1200, + "value": "," + }, + { + "type": "whitespace", + "start": 1200, + "end": 1201, + "value": " " + }, + { + "type": "number", + "start": 1201, + "end": 1206, + "value": "40.82" + }, + { + "type": "brace", + "start": 1206, + "end": 1207, + "value": "]" + }, + { + "type": "comma", + "start": 1207, + "end": 1208, + "value": "," + }, + { + "type": "whitespace", + "start": 1208, + "end": 1209, + "value": " " + }, + { + "type": "operator", + "start": 1209, + "end": 1210, + "value": "%" + }, + { + "type": "comma", + "start": 1210, + "end": 1211, + "value": "," + }, + { + "type": "whitespace", + "start": 1211, + "end": 1212, + "value": " " + }, + { + "type": "dollar", + "start": 1212, + "end": 1213, + "value": "$" + }, + { + "type": "word", + "start": 1213, + "end": 1233, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1233, + "end": 1234, + "value": ")" + }, + { + "type": "whitespace", + "start": 1234, + "end": 1237, + "value": "\n " + }, + { + "type": "operator", + "start": 1237, + "end": 1239, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1239, + "end": 1240, + "value": " " + }, + { + "type": "word", + "start": 1240, + "end": 1250, + "value": "angledLine" + }, + { + "type": "brace", + "start": 1250, + "end": 1251, + "value": "(" + }, + { + "type": "brace", + "start": 1251, + "end": 1252, + "value": "[" + }, + { + "type": "whitespace", + "start": 1252, + "end": 1260, + "value": "\n " + }, + { + "type": "word", + "start": 1260, + "end": 1266, + "value": "segAng" + }, + { + "type": "brace", + "start": 1266, + "end": 1267, + "value": "(" + }, + { + "type": "word", + "start": 1267, + "end": 1287, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1287, + "end": 1288, + "value": ")" + }, + { + "type": "whitespace", + "start": 1288, + "end": 1289, + "value": " " + }, + { + "type": "operator", + "start": 1289, + "end": 1290, + "value": "-" + }, + { + "type": "whitespace", + "start": 1290, + "end": 1291, + "value": " " + }, + { + "type": "number", + "start": 1291, + "end": 1293, + "value": "90" + }, + { + "type": "comma", + "start": 1293, + "end": 1294, + "value": "," + }, + { + "type": "whitespace", + "start": 1294, + "end": 1302, + "value": "\n " + }, + { + "type": "number", + "start": 1302, + "end": 1308, + "value": "132.27" + }, + { + "type": "whitespace", + "start": 1308, + "end": 1314, + "value": "\n " + }, + { + "type": "brace", + "start": 1314, + "end": 1315, + "value": "]" + }, + { + "type": "comma", + "start": 1315, + "end": 1316, + "value": "," + }, + { + "type": "whitespace", + "start": 1316, + "end": 1317, + "value": " " + }, + { + "type": "operator", + "start": 1317, + "end": 1318, + "value": "%" + }, + { + "type": "comma", + "start": 1318, + "end": 1319, + "value": "," + }, + { + "type": "whitespace", + "start": 1319, + "end": 1320, + "value": " " + }, + { + "type": "dollar", + "start": 1320, + "end": 1321, + "value": "$" + }, + { + "type": "word", + "start": 1321, + "end": 1341, + "value": "rectangleSegmentB001" + }, + { + "type": "brace", + "start": 1341, + "end": 1342, + "value": ")" + }, + { + "type": "whitespace", + "start": 1342, + "end": 1345, + "value": "\n " + }, + { + "type": "operator", + "start": 1345, + "end": 1347, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1347, + "end": 1348, + "value": " " + }, + { + "type": "word", + "start": 1348, + "end": 1358, + "value": "angledLine" + }, + { + "type": "brace", + "start": 1358, + "end": 1359, + "value": "(" + }, + { + "type": "brace", + "start": 1359, + "end": 1360, + "value": "[" + }, + { + "type": "whitespace", + "start": 1360, + "end": 1368, + "value": "\n " + }, + { + "type": "word", + "start": 1368, + "end": 1374, + "value": "segAng" + }, + { + "type": "brace", + "start": 1374, + "end": 1375, + "value": "(" + }, + { + "type": "word", + "start": 1375, + "end": 1395, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1395, + "end": 1396, + "value": ")" + }, + { + "type": "comma", + "start": 1396, + "end": 1397, + "value": "," + }, + { + "type": "whitespace", + "start": 1397, + "end": 1405, + "value": "\n " + }, + { + "type": "operator", + "start": 1405, + "end": 1406, + "value": "-" + }, + { + "type": "word", + "start": 1406, + "end": 1412, + "value": "segLen" + }, + { + "type": "brace", + "start": 1412, + "end": 1413, + "value": "(" + }, + { + "type": "word", + "start": 1413, + "end": 1433, + "value": "rectangleSegmentA002" + }, + { + "type": "brace", + "start": 1433, + "end": 1434, + "value": ")" + }, + { + "type": "whitespace", + "start": 1434, + "end": 1440, + "value": "\n " + }, + { + "type": "brace", + "start": 1440, + "end": 1441, + "value": "]" + }, + { + "type": "comma", + "start": 1441, + "end": 1442, + "value": "," + }, + { + "type": "whitespace", + "start": 1442, + "end": 1443, + "value": " " + }, + { + "type": "operator", + "start": 1443, + "end": 1444, + "value": "%" + }, + { + "type": "comma", + "start": 1444, + "end": 1445, + "value": "," + }, + { + "type": "whitespace", + "start": 1445, + "end": 1446, + "value": " " + }, + { + "type": "dollar", + "start": 1446, + "end": 1447, + "value": "$" + }, + { + "type": "word", + "start": 1447, + "end": 1467, + "value": "rectangleSegmentC001" + }, + { + "type": "brace", + "start": 1467, + "end": 1468, + "value": ")" + }, + { + "type": "whitespace", + "start": 1468, + "end": 1471, + "value": "\n " + }, + { + "type": "operator", + "start": 1471, + "end": 1473, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1473, + "end": 1474, + "value": " " + }, + { + "type": "word", + "start": 1474, + "end": 1480, + "value": "lineTo" + }, + { + "type": "brace", + "start": 1480, + "end": 1481, + "value": "(" + }, + { + "type": "brace", + "start": 1481, + "end": 1482, + "value": "[" + }, + { + "type": "word", + "start": 1482, + "end": 1495, + "value": "profileStartX" + }, + { + "type": "brace", + "start": 1495, + "end": 1496, + "value": "(" + }, + { + "type": "operator", + "start": 1496, + "end": 1497, + "value": "%" + }, + { + "type": "brace", + "start": 1497, + "end": 1498, + "value": ")" + }, + { + "type": "comma", + "start": 1498, + "end": 1499, + "value": "," + }, + { + "type": "whitespace", + "start": 1499, + "end": 1500, + "value": " " + }, + { + "type": "word", + "start": 1500, + "end": 1513, + "value": "profileStartY" + }, + { + "type": "brace", + "start": 1513, + "end": 1514, + "value": "(" + }, + { + "type": "operator", + "start": 1514, + "end": 1515, + "value": "%" + }, + { + "type": "brace", + "start": 1515, + "end": 1516, + "value": ")" + }, + { + "type": "brace", + "start": 1516, + "end": 1517, + "value": "]" + }, + { + "type": "comma", + "start": 1517, + "end": 1518, + "value": "," + }, + { + "type": "whitespace", + "start": 1518, + "end": 1519, + "value": " " + }, + { + "type": "operator", + "start": 1519, + "end": 1520, + "value": "%" + }, + { + "type": "brace", + "start": 1520, + "end": 1521, + "value": ")" + }, + { + "type": "whitespace", + "start": 1521, + "end": 1524, + "value": "\n " + }, + { + "type": "operator", + "start": 1524, + "end": 1526, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1526, + "end": 1527, + "value": " " + }, + { + "type": "word", + "start": 1527, + "end": 1532, + "value": "close" + }, + { + "type": "brace", + "start": 1532, + "end": 1533, + "value": "(" + }, + { + "type": "operator", + "start": 1533, + "end": 1534, + "value": "%" + }, + { + "type": "brace", + "start": 1534, + "end": 1535, + "value": ")" + }, + { + "type": "whitespace", + "start": 1535, + "end": 1536, + "value": "\n" + }, + { + "type": "word", + "start": 1536, + "end": 1546, + "value": "extrude002" + }, + { + "type": "whitespace", + "start": 1546, + "end": 1547, + "value": " " + }, + { + "type": "operator", + "start": 1547, + "end": 1548, + "value": "=" + }, + { + "type": "whitespace", + "start": 1548, + "end": 1549, + "value": " " + }, + { + "type": "word", + "start": 1549, + "end": 1556, + "value": "extrude" + }, + { + "type": "brace", + "start": 1556, + "end": 1557, + "value": "(" + }, + { + "type": "number", + "start": 1557, + "end": 1559, + "value": "50" + }, + { + "type": "comma", + "start": 1559, + "end": 1560, + "value": "," + }, + { + "type": "whitespace", + "start": 1560, + "end": 1561, + "value": " " + }, + { + "type": "word", + "start": 1561, + "end": 1570, + "value": "sketch002" + }, + { + "type": "brace", + "start": 1570, + "end": 1571, + "value": ")" + }, + { + "type": "whitespace", + "start": 1571, + "end": 1572, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/ast.snap b/src/wasm-lib/kcl/tests/sketch_on_face/ast.snap new file mode 100644 index 000000000..762c106b2 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face/ast.snap @@ -0,0 +1,638 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch_on_face.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 198, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XY'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 56, + "raw": "11.19", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 11.19 + }, + { + "end": 63, + "raw": "28.35", + "start": 58, + "type": "Literal", + "type": "Literal", + "value": 28.35 + } + ], + "end": 64, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 67, + "start": 66, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 68, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 85, + "raw": "28.67", + "start": 80, + "type": "Literal", + "type": "Literal", + "value": 28.67 + }, + { + "argument": { + "end": 93, + "raw": "13.25", + "start": 88, + "type": "Literal", + "type": "Literal", + "value": 13.25 + }, + "end": 93, + "operator": "-", + "start": 87, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 94, + "start": 79, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 97, + "start": 96, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "here" + } + ], + "callee": { + "end": 78, + "name": "line", + "start": 74, + "type": "Identifier" + }, + "end": 105, + "optional": false, + "start": 74, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 122, + "raw": "4.12", + "start": 118, + "type": "Literal", + "type": "Literal", + "value": 4.12 + }, + "end": 122, + "operator": "-", + "start": 117, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 130, + "raw": "22.81", + "start": 125, + "type": "Literal", + "type": "Literal", + "value": 22.81 + }, + "end": 130, + "operator": "-", + "start": 124, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 131, + "start": 116, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 134, + "start": 133, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 115, + "name": "line", + "start": 111, + "type": "Identifier" + }, + "end": 135, + "optional": false, + "start": 111, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 153, + "raw": "33.24", + "start": 148, + "type": "Literal", + "type": "Literal", + "value": 33.24 + }, + "end": 153, + "operator": "-", + "start": 147, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 160, + "raw": "14.55", + "start": 155, + "type": "Literal", + "type": "Literal", + "value": 14.55 + } + ], + "end": 161, + "start": 146, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 164, + "start": 163, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 145, + "name": "line", + "start": 141, + "type": "Identifier" + }, + "end": 165, + "optional": false, + "start": 141, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 178, + "start": 177, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 176, + "name": "close", + "start": 171, + "type": "Identifier" + }, + "end": 179, + "optional": false, + "start": 171, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 194, + "raw": "5", + "start": 193, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + { + "end": 197, + "start": 196, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 192, + "name": "extrude", + "start": 185, + "type": "Identifier" + }, + "end": 198, + "optional": false, + "start": 185, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 198, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 198, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 369, + "id": { + "end": 207, + "name": "part002", + "start": 200, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 231, + "name": "part001", + "start": 224, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 237, + "name": "here", + "start": 233, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 223, + "name": "startSketchOn", + "start": 210, + "type": "Identifier" + }, + "end": 238, + "optional": false, + "start": 210, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 261, + "raw": "0", + "start": 260, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 264, + "raw": "0", + "start": 263, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 265, + "start": 259, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 268, + "start": 267, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 258, + "name": "startProfileAt", + "start": 244, + "type": "Identifier" + }, + "end": 269, + "optional": false, + "start": 244, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 282, + "raw": "0", + "start": 281, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 286, + "raw": "10", + "start": 284, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 287, + "start": 280, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 290, + "start": 289, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 279, + "name": "line", + "start": 275, + "type": "Identifier" + }, + "end": 291, + "optional": false, + "start": 275, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 305, + "raw": "10", + "start": 303, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 308, + "raw": "0", + "start": 307, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 309, + "start": 302, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 312, + "start": 311, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 301, + "name": "line", + "start": 297, + "type": "Identifier" + }, + "end": 313, + "optional": false, + "start": 297, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 326, + "raw": "0", + "start": 325, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 331, + "raw": "10", + "start": 329, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 331, + "operator": "-", + "start": 328, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 332, + "start": 324, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 335, + "start": 334, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 323, + "name": "line", + "start": 319, + "type": "Identifier" + }, + "end": 336, + "optional": false, + "start": 319, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 349, + "start": 348, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 347, + "name": "close", + "start": 342, + "type": "Identifier" + }, + "end": 350, + "optional": false, + "start": 342, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 365, + "raw": "5", + "start": 364, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + { + "end": 368, + "start": 367, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 363, + "name": "extrude", + "start": 356, + "type": "Identifier" + }, + "end": 369, + "optional": false, + "start": 356, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 369, + "start": 210, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 200, + "type": "VariableDeclarator" + } + ], + "end": 369, + "kind": "const", + "start": 200, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 370, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 200, + "start": 198, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/input.kcl b/src/wasm-lib/kcl/tests/sketch_on_face/input.kcl new file mode 100644 index 000000000..d61cdddee --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face/input.kcl @@ -0,0 +1,15 @@ +part001 = startSketchOn('XY') + |> startProfileAt([11.19, 28.35], %) + |> line([28.67, -13.25], %, $here) + |> line([-4.12, -22.81], %) + |> line([-33.24, 14.55], %) + |> close(%) + |> extrude(5, %) + +part002 = startSketchOn(part001, here) + |> startProfileAt([0, 0], %) + |> line([0, 10], %) + |> line([10, 0], %) + |> line([0, -10], %) + |> close(%) + |> extrude(5, %) 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 new file mode 100644 index 000000000..accfaf378 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap @@ -0,0 +1,849 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch_on_face.kcl +snapshot_kind: text +--- +{ + "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": [] + }, + "here": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "here", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ] + }, + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "to": [ + 39.86, + 15.100000000000001 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 99, + 104, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 111, + 135, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 141, + 165, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ] + }, + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "to": [ + 39.86, + 15.1 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 111, + 135, + 0 + ] + }, + "from": [ + 39.86, + 15.1 + ], + "tag": null, + "to": [ + 35.74, + -7.71 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 141, + 165, + 0 + ] + }, + "from": [ + 35.74, + -7.71 + ], + "tag": null, + "to": [ + 2.5, + 6.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ] + }, + "from": [ + 2.5, + 6.84 + ], + "tag": null, + "to": [ + 11.19, + 28.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 105, + 0 + ] + }, + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "to": [ + 39.86, + 15.100000000000001 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 99, + 104, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 35, + 68, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 35, + 68, + 0 + ] + } + ] + }, + "part002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 275, + 291, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 297, + 313, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 319, + 336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 342, + 350, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 275, + 291, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 297, + 313, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 319, + 336, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 342, + 350, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 111, + 135, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 141, + 165, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ] + }, + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "to": [ + 39.86, + 15.1 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 111, + 135, + 0 + ] + }, + "from": [ + 39.86, + 15.1 + ], + "tag": null, + "to": [ + 35.74, + -7.71 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 141, + 165, + 0 + ] + }, + "from": [ + 35.74, + -7.71 + ], + "tag": null, + "to": [ + 2.5, + 6.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ] + }, + "from": [ + 2.5, + 6.84 + ], + "tag": null, + "to": [ + 11.19, + 28.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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, + 105, + 0 + ] + }, + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "to": [ + 39.86, + 15.100000000000001 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 105, + 0 + ], + "tag": { + "end": 104, + "start": 99, + "type": "TagDeclarator", + "value": "here" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 99, + 104, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 35, + 68, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 35, + 68, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 210, + 238, + 0 + ] + } + ] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 244, + 269, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 244, + 269, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 244, + 269, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/rendered_model.png b/src/wasm-lib/kcl/tests/sketch_on_face/rendered_model.png new file mode 100644 index 000000000..0d341d1af Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch_on_face/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/tokens.snap b/src/wasm-lib/kcl/tests/sketch_on_face/tokens.snap new file mode 100644 index 000000000..89c20c097 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face/tokens.snap @@ -0,0 +1,1113 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch_on_face.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XY'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 56, + "value": "11.19" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "number", + "start": 58, + "end": 63, + "value": "28.35" + }, + { + "type": "brace", + "start": 63, + "end": 64, + "value": "]" + }, + { + "type": "comma", + "start": 64, + "end": 65, + "value": "," + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "operator", + "start": 66, + "end": 67, + "value": "%" + }, + { + "type": "brace", + "start": 67, + "end": 68, + "value": ")" + }, + { + "type": "whitespace", + "start": 68, + "end": 71, + "value": "\n " + }, + { + "type": "operator", + "start": 71, + "end": 73, + "value": "|>" + }, + { + "type": "whitespace", + "start": 73, + "end": 74, + "value": " " + }, + { + "type": "word", + "start": 74, + "end": 78, + "value": "line" + }, + { + "type": "brace", + "start": 78, + "end": 79, + "value": "(" + }, + { + "type": "brace", + "start": 79, + "end": 80, + "value": "[" + }, + { + "type": "number", + "start": 80, + "end": 85, + "value": "28.67" + }, + { + "type": "comma", + "start": 85, + "end": 86, + "value": "," + }, + { + "type": "whitespace", + "start": 86, + "end": 87, + "value": " " + }, + { + "type": "operator", + "start": 87, + "end": 88, + "value": "-" + }, + { + "type": "number", + "start": 88, + "end": 93, + "value": "13.25" + }, + { + "type": "brace", + "start": 93, + "end": 94, + "value": "]" + }, + { + "type": "comma", + "start": 94, + "end": 95, + "value": "," + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "operator", + "start": 96, + "end": 97, + "value": "%" + }, + { + "type": "comma", + "start": 97, + "end": 98, + "value": "," + }, + { + "type": "whitespace", + "start": 98, + "end": 99, + "value": " " + }, + { + "type": "dollar", + "start": 99, + "end": 100, + "value": "$" + }, + { + "type": "word", + "start": 100, + "end": 104, + "value": "here" + }, + { + "type": "brace", + "start": 104, + "end": 105, + "value": ")" + }, + { + "type": "whitespace", + "start": 105, + "end": 108, + "value": "\n " + }, + { + "type": "operator", + "start": 108, + "end": 110, + "value": "|>" + }, + { + "type": "whitespace", + "start": 110, + "end": 111, + "value": " " + }, + { + "type": "word", + "start": 111, + "end": 115, + "value": "line" + }, + { + "type": "brace", + "start": 115, + "end": 116, + "value": "(" + }, + { + "type": "brace", + "start": 116, + "end": 117, + "value": "[" + }, + { + "type": "operator", + "start": 117, + "end": 118, + "value": "-" + }, + { + "type": "number", + "start": 118, + "end": 122, + "value": "4.12" + }, + { + "type": "comma", + "start": 122, + "end": 123, + "value": "," + }, + { + "type": "whitespace", + "start": 123, + "end": 124, + "value": " " + }, + { + "type": "operator", + "start": 124, + "end": 125, + "value": "-" + }, + { + "type": "number", + "start": 125, + "end": 130, + "value": "22.81" + }, + { + "type": "brace", + "start": 130, + "end": 131, + "value": "]" + }, + { + "type": "comma", + "start": 131, + "end": 132, + "value": "," + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "operator", + "start": 133, + "end": 134, + "value": "%" + }, + { + "type": "brace", + "start": 134, + "end": 135, + "value": ")" + }, + { + "type": "whitespace", + "start": 135, + "end": 138, + "value": "\n " + }, + { + "type": "operator", + "start": 138, + "end": 140, + "value": "|>" + }, + { + "type": "whitespace", + "start": 140, + "end": 141, + "value": " " + }, + { + "type": "word", + "start": 141, + "end": 145, + "value": "line" + }, + { + "type": "brace", + "start": 145, + "end": 146, + "value": "(" + }, + { + "type": "brace", + "start": 146, + "end": 147, + "value": "[" + }, + { + "type": "operator", + "start": 147, + "end": 148, + "value": "-" + }, + { + "type": "number", + "start": 148, + "end": 153, + "value": "33.24" + }, + { + "type": "comma", + "start": 153, + "end": 154, + "value": "," + }, + { + "type": "whitespace", + "start": 154, + "end": 155, + "value": " " + }, + { + "type": "number", + "start": 155, + "end": 160, + "value": "14.55" + }, + { + "type": "brace", + "start": 160, + "end": 161, + "value": "]" + }, + { + "type": "comma", + "start": 161, + "end": 162, + "value": "," + }, + { + "type": "whitespace", + "start": 162, + "end": 163, + "value": " " + }, + { + "type": "operator", + "start": 163, + "end": 164, + "value": "%" + }, + { + "type": "brace", + "start": 164, + "end": 165, + "value": ")" + }, + { + "type": "whitespace", + "start": 165, + "end": 168, + "value": "\n " + }, + { + "type": "operator", + "start": 168, + "end": 170, + "value": "|>" + }, + { + "type": "whitespace", + "start": 170, + "end": 171, + "value": " " + }, + { + "type": "word", + "start": 171, + "end": 176, + "value": "close" + }, + { + "type": "brace", + "start": 176, + "end": 177, + "value": "(" + }, + { + "type": "operator", + "start": 177, + "end": 178, + "value": "%" + }, + { + "type": "brace", + "start": 178, + "end": 179, + "value": ")" + }, + { + "type": "whitespace", + "start": 179, + "end": 182, + "value": "\n " + }, + { + "type": "operator", + "start": 182, + "end": 184, + "value": "|>" + }, + { + "type": "whitespace", + "start": 184, + "end": 185, + "value": " " + }, + { + "type": "word", + "start": 185, + "end": 192, + "value": "extrude" + }, + { + "type": "brace", + "start": 192, + "end": 193, + "value": "(" + }, + { + "type": "number", + "start": 193, + "end": 194, + "value": "5" + }, + { + "type": "comma", + "start": 194, + "end": 195, + "value": "," + }, + { + "type": "whitespace", + "start": 195, + "end": 196, + "value": " " + }, + { + "type": "operator", + "start": 196, + "end": 197, + "value": "%" + }, + { + "type": "brace", + "start": 197, + "end": 198, + "value": ")" + }, + { + "type": "whitespace", + "start": 198, + "end": 200, + "value": "\n\n" + }, + { + "type": "word", + "start": 200, + "end": 207, + "value": "part002" + }, + { + "type": "whitespace", + "start": 207, + "end": 208, + "value": " " + }, + { + "type": "operator", + "start": 208, + "end": 209, + "value": "=" + }, + { + "type": "whitespace", + "start": 209, + "end": 210, + "value": " " + }, + { + "type": "word", + "start": 210, + "end": 223, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 223, + "end": 224, + "value": "(" + }, + { + "type": "word", + "start": 224, + "end": 231, + "value": "part001" + }, + { + "type": "comma", + "start": 231, + "end": 232, + "value": "," + }, + { + "type": "whitespace", + "start": 232, + "end": 233, + "value": " " + }, + { + "type": "word", + "start": 233, + "end": 237, + "value": "here" + }, + { + "type": "brace", + "start": 237, + "end": 238, + "value": ")" + }, + { + "type": "whitespace", + "start": 238, + "end": 241, + "value": "\n " + }, + { + "type": "operator", + "start": 241, + "end": 243, + "value": "|>" + }, + { + "type": "whitespace", + "start": 243, + "end": 244, + "value": " " + }, + { + "type": "word", + "start": 244, + "end": 258, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 258, + "end": 259, + "value": "(" + }, + { + "type": "brace", + "start": 259, + "end": 260, + "value": "[" + }, + { + "type": "number", + "start": 260, + "end": 261, + "value": "0" + }, + { + "type": "comma", + "start": 261, + "end": 262, + "value": "," + }, + { + "type": "whitespace", + "start": 262, + "end": 263, + "value": " " + }, + { + "type": "number", + "start": 263, + "end": 264, + "value": "0" + }, + { + "type": "brace", + "start": 264, + "end": 265, + "value": "]" + }, + { + "type": "comma", + "start": 265, + "end": 266, + "value": "," + }, + { + "type": "whitespace", + "start": 266, + "end": 267, + "value": " " + }, + { + "type": "operator", + "start": 267, + "end": 268, + "value": "%" + }, + { + "type": "brace", + "start": 268, + "end": 269, + "value": ")" + }, + { + "type": "whitespace", + "start": 269, + "end": 272, + "value": "\n " + }, + { + "type": "operator", + "start": 272, + "end": 274, + "value": "|>" + }, + { + "type": "whitespace", + "start": 274, + "end": 275, + "value": " " + }, + { + "type": "word", + "start": 275, + "end": 279, + "value": "line" + }, + { + "type": "brace", + "start": 279, + "end": 280, + "value": "(" + }, + { + "type": "brace", + "start": 280, + "end": 281, + "value": "[" + }, + { + "type": "number", + "start": 281, + "end": 282, + "value": "0" + }, + { + "type": "comma", + "start": 282, + "end": 283, + "value": "," + }, + { + "type": "whitespace", + "start": 283, + "end": 284, + "value": " " + }, + { + "type": "number", + "start": 284, + "end": 286, + "value": "10" + }, + { + "type": "brace", + "start": 286, + "end": 287, + "value": "]" + }, + { + "type": "comma", + "start": 287, + "end": 288, + "value": "," + }, + { + "type": "whitespace", + "start": 288, + "end": 289, + "value": " " + }, + { + "type": "operator", + "start": 289, + "end": 290, + "value": "%" + }, + { + "type": "brace", + "start": 290, + "end": 291, + "value": ")" + }, + { + "type": "whitespace", + "start": 291, + "end": 294, + "value": "\n " + }, + { + "type": "operator", + "start": 294, + "end": 296, + "value": "|>" + }, + { + "type": "whitespace", + "start": 296, + "end": 297, + "value": " " + }, + { + "type": "word", + "start": 297, + "end": 301, + "value": "line" + }, + { + "type": "brace", + "start": 301, + "end": 302, + "value": "(" + }, + { + "type": "brace", + "start": 302, + "end": 303, + "value": "[" + }, + { + "type": "number", + "start": 303, + "end": 305, + "value": "10" + }, + { + "type": "comma", + "start": 305, + "end": 306, + "value": "," + }, + { + "type": "whitespace", + "start": 306, + "end": 307, + "value": " " + }, + { + "type": "number", + "start": 307, + "end": 308, + "value": "0" + }, + { + "type": "brace", + "start": 308, + "end": 309, + "value": "]" + }, + { + "type": "comma", + "start": 309, + "end": 310, + "value": "," + }, + { + "type": "whitespace", + "start": 310, + "end": 311, + "value": " " + }, + { + "type": "operator", + "start": 311, + "end": 312, + "value": "%" + }, + { + "type": "brace", + "start": 312, + "end": 313, + "value": ")" + }, + { + "type": "whitespace", + "start": 313, + "end": 316, + "value": "\n " + }, + { + "type": "operator", + "start": 316, + "end": 318, + "value": "|>" + }, + { + "type": "whitespace", + "start": 318, + "end": 319, + "value": " " + }, + { + "type": "word", + "start": 319, + "end": 323, + "value": "line" + }, + { + "type": "brace", + "start": 323, + "end": 324, + "value": "(" + }, + { + "type": "brace", + "start": 324, + "end": 325, + "value": "[" + }, + { + "type": "number", + "start": 325, + "end": 326, + "value": "0" + }, + { + "type": "comma", + "start": 326, + "end": 327, + "value": "," + }, + { + "type": "whitespace", + "start": 327, + "end": 328, + "value": " " + }, + { + "type": "operator", + "start": 328, + "end": 329, + "value": "-" + }, + { + "type": "number", + "start": 329, + "end": 331, + "value": "10" + }, + { + "type": "brace", + "start": 331, + "end": 332, + "value": "]" + }, + { + "type": "comma", + "start": 332, + "end": 333, + "value": "," + }, + { + "type": "whitespace", + "start": 333, + "end": 334, + "value": " " + }, + { + "type": "operator", + "start": 334, + "end": 335, + "value": "%" + }, + { + "type": "brace", + "start": 335, + "end": 336, + "value": ")" + }, + { + "type": "whitespace", + "start": 336, + "end": 339, + "value": "\n " + }, + { + "type": "operator", + "start": 339, + "end": 341, + "value": "|>" + }, + { + "type": "whitespace", + "start": 341, + "end": 342, + "value": " " + }, + { + "type": "word", + "start": 342, + "end": 347, + "value": "close" + }, + { + "type": "brace", + "start": 347, + "end": 348, + "value": "(" + }, + { + "type": "operator", + "start": 348, + "end": 349, + "value": "%" + }, + { + "type": "brace", + "start": 349, + "end": 350, + "value": ")" + }, + { + "type": "whitespace", + "start": 350, + "end": 353, + "value": "\n " + }, + { + "type": "operator", + "start": 353, + "end": 355, + "value": "|>" + }, + { + "type": "whitespace", + "start": 355, + "end": 356, + "value": " " + }, + { + "type": "word", + "start": 356, + "end": 363, + "value": "extrude" + }, + { + "type": "brace", + "start": 363, + "end": 364, + "value": "(" + }, + { + "type": "number", + "start": 364, + "end": 365, + "value": "5" + }, + { + "type": "comma", + "start": 365, + "end": 366, + "value": "," + }, + { + "type": "whitespace", + "start": 366, + "end": 367, + "value": " " + }, + { + "type": "operator", + "start": 367, + "end": 368, + "value": "%" + }, + { + "type": "brace", + "start": 368, + "end": 369, + "value": ")" + }, + { + "type": "whitespace", + "start": 369, + "end": 370, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/ast.snap b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/ast.snap new file mode 100644 index 000000000..b33151e77 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/ast.snap @@ -0,0 +1,1613 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch_on_face_after_fillets_referencing_face.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 369, + "id": { + "end": 365, + "name": "shelfMountL", + "start": 354, + "type": "Identifier" + }, + "init": { + "end": 369, + "raw": "8", + "start": 368, + "type": "Literal", + "type": "Literal", + "value": 8 + }, + "start": 354, + "type": "VariableDeclarator" + } + ], + "end": 369, + "kind": "const", + "start": 354, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 446, + "id": { + "end": 442, + "name": "wallMountL", + "start": 432, + "type": "Identifier" + }, + "init": { + "end": 446, + "raw": "6", + "start": 445, + "type": "Literal", + "type": "Literal", + "value": 6 + }, + "start": 432, + "type": "VariableDeclarator" + } + ], + "end": 446, + "kind": "const", + "start": 432, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 578, + "id": { + "end": 570, + "name": "sigmaAllow", + "start": 560, + "type": "Identifier" + }, + "init": { + "end": 578, + "raw": "35000", + "start": 573, + "type": "Literal", + "type": "Literal", + "value": 35000 + }, + "start": 560, + "type": "VariableDeclarator" + } + ], + "end": 578, + "kind": "const", + "start": 560, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 595, + "id": { + "end": 591, + "name": "width", + "start": 586, + "type": "Identifier" + }, + "init": { + "end": 595, + "raw": "6", + "start": 594, + "type": "Literal", + "type": "Literal", + "value": 6 + }, + "start": 586, + "type": "VariableDeclarator" + } + ], + "end": 595, + "kind": "const", + "start": 586, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 611, + "id": { + "end": 605, + "name": "p", + "start": 604, + "type": "Identifier" + }, + "init": { + "end": 611, + "raw": "300", + "start": 608, + "type": "Literal", + "type": "Literal", + "value": 300 + }, + "start": 604, + "type": "VariableDeclarator" + } + ], + "end": 611, + "kind": "const", + "start": 604, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 642, + "id": { + "end": 637, + "name": "L", + "start": 636, + "type": "Identifier" + }, + "init": { + "end": 642, + "raw": "12", + "start": 640, + "type": "Literal", + "type": "Literal", + "value": 12 + }, + "start": 636, + "type": "VariableDeclarator" + } + ], + "end": 642, + "kind": "const", + "start": 636, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 666, + "id": { + "end": 654, + "name": "M", + "start": 653, + "type": "Identifier" + }, + "init": { + "end": 666, + "left": { + "end": 662, + "left": { + "end": 658, + "name": "L", + "start": 657, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 662, + "name": "p", + "start": 661, + "type": "Identifier", + "type": "Identifier" + }, + "start": 657, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "end": 666, + "raw": "2", + "start": 665, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 657, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 653, + "type": "VariableDeclarator" + } + ], + "end": 666, + "kind": "const", + "start": 653, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 720, + "id": { + "end": 716, + "name": "FOS", + "start": 713, + "type": "Identifier" + }, + "init": { + "end": 720, + "raw": "2", + "start": 719, + "type": "Literal", + "type": "Literal", + "value": 2 + }, + "start": 713, + "type": "VariableDeclarator" + } + ], + "end": 720, + "kind": "const", + "start": 713, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 890, + "id": { + "end": 847, + "name": "thickness", + "start": 838, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "end": 888, + "left": { + "end": 866, + "left": { + "end": 860, + "left": { + "end": 856, + "raw": "6", + "start": 855, + "type": "Literal", + "type": "Literal", + "value": 6 + }, + "operator": "*", + "right": { + "end": 860, + "name": "M", + "start": 859, + "type": "Identifier", + "type": "Identifier" + }, + "start": 855, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "*", + "right": { + "end": 866, + "name": "FOS", + "start": 863, + "type": "Identifier", + "type": "Identifier" + }, + "start": 855, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "end": 888, + "left": { + "end": 875, + "name": "width", + "start": 870, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 888, + "name": "sigmaAllow", + "start": 878, + "type": "Identifier", + "type": "Identifier" + }, + "start": 870, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 855, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "callee": { + "end": 854, + "name": "sqrt", + "start": 850, + "type": "Identifier" + }, + "end": 890, + "optional": false, + "start": 850, + "type": "CallExpression", + "type": "CallExpression" + }, + "start": 838, + "type": "VariableDeclarator" + } + ], + "end": 890, + "kind": "const", + "start": 838, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 933, + "id": { + "end": 926, + "name": "filletR", + "start": 919, + "type": "Identifier" + }, + "init": { + "end": 933, + "raw": "0.25", + "start": 929, + "type": "Literal", + "type": "Literal", + "value": 0.25 + }, + "start": 919, + "type": "VariableDeclarator" + } + ], + "end": 933, + "kind": "const", + "start": 919, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1491, + "id": { + "end": 989, + "name": "bracket", + "start": 982, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 1010, + "raw": "'XY'", + "start": 1006, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 1005, + "name": "startSketchOn", + "start": 992, + "type": "Identifier" + }, + "end": 1011, + "optional": false, + "start": 992, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1034, + "raw": "0", + "start": 1033, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1037, + "raw": "0", + "start": 1036, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 1038, + "start": 1032, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1041, + "start": 1040, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1031, + "name": "startProfileAt", + "start": 1017, + "type": "Identifier" + }, + "end": 1042, + "optional": false, + "start": 1017, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1055, + "raw": "0", + "start": 1054, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1067, + "name": "wallMountL", + "start": 1057, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 1068, + "start": 1053, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1071, + "start": 1070, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "outerEdge" + } + ], + "callee": { + "end": 1052, + "name": "line", + "start": 1048, + "type": "Identifier" + }, + "end": 1084, + "optional": false, + "start": 1048, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1108, + "name": "shelfMountL", + "start": 1097, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1108, + "operator": "-", + "start": 1096, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 1111, + "raw": "0", + "start": 1110, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 1112, + "start": 1095, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1115, + "start": 1114, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + ], + "callee": { + "end": 1094, + "name": "line", + "start": 1090, + "type": "Identifier" + }, + "end": 1124, + "optional": false, + "start": 1090, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1137, + "raw": "0", + "start": 1136, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 1149, + "name": "thickness", + "start": 1140, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1149, + "operator": "-", + "start": 1139, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1150, + "start": 1135, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1153, + "start": 1152, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1134, + "name": "line", + "start": 1130, + "type": "Identifier" + }, + "end": 1154, + "optional": false, + "start": 1130, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1189, + "left": { + "end": 1177, + "name": "shelfMountL", + "start": 1166, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "-", + "right": { + "end": 1189, + "name": "thickness", + "start": 1180, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1166, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 1192, + "raw": "0", + "start": 1191, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 1193, + "start": 1165, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1196, + "start": 1195, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "innerEdge" + } + ], + "callee": { + "end": 1164, + "name": "line", + "start": 1160, + "type": "Identifier" + }, + "end": 1209, + "optional": false, + "start": 1160, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1222, + "raw": "0", + "start": 1221, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 1247, + "left": { + "argument": { + "end": 1235, + "name": "wallMountL", + "start": 1225, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1235, + "operator": "-", + "start": 1224, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 1247, + "name": "thickness", + "start": 1238, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1224, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 1248, + "start": 1220, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1251, + "start": 1250, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1219, + "name": "line", + "start": 1215, + "type": "Identifier" + }, + "end": 1252, + "optional": false, + "start": 1215, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1265, + "start": 1264, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1263, + "name": "close", + "start": 1258, + "type": "Identifier" + }, + "end": 1266, + "optional": false, + "start": 1258, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1285, + "name": "width", + "start": 1280, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1288, + "start": 1287, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1279, + "name": "extrude", + "start": 1272, + "type": "Identifier" + }, + "end": 1289, + "optional": false, + "start": 1272, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1380, + "properties": [ + { + "end": 1326, + "key": { + "end": 1317, + "name": "radius", + "start": 1311, + "type": "Identifier" + }, + "start": 1311, + "type": "ObjectProperty", + "value": { + "end": 1326, + "name": "filletR", + "start": 1319, + "type": "Identifier", + "type": "Identifier" + } + }, + { + "end": 1373, + "key": { + "end": 1339, + "name": "tags", + "start": 1335, + "type": "Identifier" + }, + "start": 1335, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "arguments": [ + { + "end": 1371, + "name": "innerEdge", + "start": 1362, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1361, + "name": "getNextAdjacentEdge", + "start": 1342, + "type": "Identifier" + }, + "end": 1372, + "optional": false, + "start": 1342, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1373, + "start": 1341, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 1302, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1383, + "start": 1382, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1301, + "name": "fillet", + "start": 1295, + "type": "Identifier" + }, + "end": 1384, + "optional": false, + "start": 1295, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1487, + "properties": [ + { + "end": 1433, + "key": { + "end": 1412, + "name": "radius", + "start": 1406, + "type": "Identifier" + }, + "start": 1406, + "type": "ObjectProperty", + "value": { + "end": 1433, + "left": { + "end": 1421, + "name": "filletR", + "start": 1414, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 1433, + "name": "thickness", + "start": 1424, + "type": "Identifier", + "type": "Identifier" + }, + "start": 1414, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "end": 1480, + "key": { + "end": 1446, + "name": "tags", + "start": 1442, + "type": "Identifier" + }, + "start": 1442, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "arguments": [ + { + "end": 1478, + "name": "outerEdge", + "start": 1469, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1468, + "name": "getNextAdjacentEdge", + "start": 1449, + "type": "Identifier" + }, + "end": 1479, + "optional": false, + "start": 1449, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1480, + "start": 1448, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "start": 1397, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1490, + "start": 1489, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1396, + "name": "fillet", + "start": 1390, + "type": "Identifier" + }, + "end": 1491, + "optional": false, + "start": 1390, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1491, + "start": 992, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 982, + "type": "VariableDeclarator" + } + ], + "end": 1491, + "kind": "const", + "start": 982, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 1742, + "id": { + "end": 1502, + "name": "sketch001", + "start": 1493, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 1526, + "name": "bracket", + "start": 1519, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1533, + "name": "seg01", + "start": 1528, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 1518, + "name": "startSketchOn", + "start": 1505, + "type": "Identifier" + }, + "end": 1534, + "optional": false, + "start": 1505, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1560, + "raw": "4.28", + "start": 1556, + "type": "Literal", + "type": "Literal", + "value": 4.28 + }, + { + "end": 1566, + "raw": "3.83", + "start": 1562, + "type": "Literal", + "type": "Literal", + "value": 3.83 + } + ], + "end": 1567, + "start": 1555, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1570, + "start": 1569, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1554, + "name": "startProfileAt", + "start": 1540, + "type": "Identifier" + }, + "end": 1571, + "optional": false, + "start": 1540, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1587, + "raw": "2.17", + "start": 1583, + "type": "Literal", + "type": "Literal", + "value": 2.17 + }, + { + "argument": { + "end": 1594, + "raw": "0.03", + "start": 1590, + "type": "Literal", + "type": "Literal", + "value": 0.03 + }, + "end": 1594, + "operator": "-", + "start": 1589, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1595, + "start": 1582, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1598, + "start": 1597, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1581, + "name": "line", + "start": 1577, + "type": "Identifier" + }, + "end": 1599, + "optional": false, + "start": 1577, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1616, + "raw": "0.07", + "start": 1612, + "type": "Literal", + "type": "Literal", + "value": 0.07 + }, + "end": 1616, + "operator": "-", + "start": 1611, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "argument": { + "end": 1622, + "raw": "1.8", + "start": 1619, + "type": "Literal", + "type": "Literal", + "value": 1.8 + }, + "end": 1622, + "operator": "-", + "start": 1618, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 1623, + "start": 1610, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1626, + "start": 1625, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1609, + "name": "line", + "start": 1605, + "type": "Identifier" + }, + "end": 1627, + "optional": false, + "start": 1605, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "argument": { + "end": 1644, + "raw": "2.07", + "start": 1640, + "type": "Literal", + "type": "Literal", + "value": 2.07 + }, + "end": 1644, + "operator": "-", + "start": 1639, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 1650, + "raw": "0.05", + "start": 1646, + "type": "Literal", + "type": "Literal", + "value": 0.05 + } + ], + "end": 1651, + "start": 1638, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1654, + "start": 1653, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1637, + "name": "line", + "start": 1633, + "type": "Identifier" + }, + "end": 1655, + "optional": false, + "start": 1633, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "arguments": [ + { + "end": 1684, + "start": 1683, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1682, + "name": "profileStartX", + "start": 1669, + "type": "Identifier" + }, + "end": 1685, + "optional": false, + "start": 1669, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1702, + "start": 1701, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1700, + "name": "profileStartY", + "start": 1687, + "type": "Identifier" + }, + "end": 1703, + "optional": false, + "start": 1687, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1704, + "start": 1668, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1707, + "start": 1706, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1667, + "name": "lineTo", + "start": 1661, + "type": "Identifier" + }, + "end": 1708, + "optional": false, + "start": 1661, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1721, + "start": 1720, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1719, + "name": "close", + "start": 1714, + "type": "Identifier" + }, + "end": 1722, + "optional": false, + "start": 1714, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1738, + "raw": "10", + "start": 1736, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 1741, + "start": 1740, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1735, + "name": "extrude", + "start": 1728, + "type": "Identifier" + }, + "end": 1742, + "optional": false, + "start": 1728, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 1742, + "start": 1505, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 1493, + "type": "VariableDeclarator" + } + ], + "end": 1742, + "kind": "const", + "start": 1493, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 1743, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 431, + "start": 369, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "The length of the bracket holding up the shelf is 6 inches", + "style": "line" + } + } + ], + "1": [ + { + "end": 475, + "start": 446, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "the length of the bracket", + "style": "line" + } + }, + { + "end": 478, + "start": 475, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + }, + { + "end": 559, + "start": 478, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Define constants required to calculate the thickness needed to support 300 lbs", + "style": "line" + } + } + ], + "2": [ + { + "end": 585, + "start": 578, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "psi", + "style": "line" + } + } + ], + "3": [ + { + "end": 603, + "start": 595, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "inch", + "style": "line" + } + } + ], + "4": [ + { + "end": 635, + "start": 611, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "Force on shelf - lbs", + "style": "line" + } + } + ], + "5": [ + { + "end": 652, + "start": 642, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "inches", + "style": "line" + } + } + ], + "6": [ + { + "end": 712, + "start": 666, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "Moment experienced at fixed end of bracket", + "style": "line" + } + } + ], + "7": [ + { + "end": 764, + "start": 720, + "type": "NonCodeNode", + "value": { + "type": "inlineComment", + "value": "Factor of safety of 2 to be conservative", + "style": "line" + } + }, + { + "end": 767, + "start": 764, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + }, + { + "end": 837, + "start": 767, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Calculate the thickness off the bending stress and factor of safety", + "style": "line" + } + } + ], + "8": [ + { + "end": 918, + "start": 890, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "0.25 inch fillet radius", + "style": "line" + } + } + ], + "9": [ + { + "end": 981, + "start": 933, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Sketch the bracket and extrude with fillets", + "style": "line" + } + } + ], + "10": [ + { + "end": 1493, + "start": 1491, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [ + { + "end": 16, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Shelf Bracket", + "style": "line" + } + }, + { + "end": 316, + "start": 17, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "This is a shelf bracket made out of 6061-T6 aluminum sheet metal. The required thickness is calculated based on a point load of 300 lbs applied to the end of the shelf. There are two brackets holding up the shelf, so the moment experienced is divided by 2. The shelf is 1 foot long from the wall.", + "style": "line" + } + }, + { + "end": 319, + "start": 316, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + }, + { + "end": 353, + "start": 319, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Define our bracket feet lengths", + "style": "line" + } + } + ] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/input.kcl b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/input.kcl new file mode 100644 index 000000000..765cb82fd --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/input.kcl @@ -0,0 +1,51 @@ +// Shelf Bracket +// This is a shelf bracket made out of 6061-T6 aluminum sheet metal. The required thickness is calculated based on a point load of 300 lbs applied to the end of the shelf. There are two brackets holding up the shelf, so the moment experienced is divided by 2. The shelf is 1 foot long from the wall. + + +// Define our bracket feet lengths +shelfMountL = 8 // The length of the bracket holding up the shelf is 6 inches +wallMountL = 6 // the length of the bracket + + +// Define constants required to calculate the thickness needed to support 300 lbs +sigmaAllow = 35000 // psi +width = 6 // inch +p = 300 // Force on shelf - lbs +L = 12 // inches +M = L * p / 2 // Moment experienced at fixed end of bracket +FOS = 2 // Factor of safety of 2 to be conservative + + +// Calculate the thickness off the bending stress and factor of safety +thickness = sqrt(6 * M * FOS / (width * sigmaAllow)) + +// 0.25 inch fillet radius +filletR = 0.25 + +// Sketch the bracket and extrude with fillets +bracket = startSketchOn('XY') + |> startProfileAt([0, 0], %) + |> line([0, wallMountL], %, $outerEdge) + |> line([-shelfMountL, 0], %, $seg01) + |> line([0, -thickness], %) + |> line([shelfMountL - thickness, 0], %, $innerEdge) + |> line([0, -wallMountL + thickness], %) + |> close(%) + |> extrude(width, %) + |> fillet({ + radius: filletR, + tags: [getNextAdjacentEdge(innerEdge)] + }, %) + |> fillet({ + radius: filletR + thickness, + tags: [getNextAdjacentEdge(outerEdge)] + }, %) + +sketch001 = startSketchOn(bracket, seg01) + |> startProfileAt([4.28, 3.83], %) + |> line([2.17, -0.03], %) + |> line([-0.07, -1.8], %) + |> line([-2.07, 0.05], %) + |> lineTo([profileStartX(%), profileStartY(%)], %) + |> close(%) + |> extrude(10, %) 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 new file mode 100644 index 000000000..6c4d2a036 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap @@ -0,0 +1,1565 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch_on_face_after_fillets_referencing_face.kcl +snapshot_kind: text +--- +{ + "environments": [ + { + "bindings": { + "FOS": { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 719, + 720, + 0 + ] + } + ] + }, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "L": { + "type": "Int", + "value": 12, + "__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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1130, + 1154, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1160, + 1209, + 0 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1215, + 1252, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1258, + 1266, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1130, + 1154, + 0 + ] + }, + "from": [ + -8.0, + 6.0 + ], + "tag": null, + "to": [ + -8.0, + 5.6793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1160, + 1209, + 0 + ] + }, + "from": [ + -8.0, + 5.6793 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "to": [ + -0.3207, + 5.6793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1215, + 1252, + 0 + ] + }, + "from": [ + -0.3207, + 5.6793 + ], + "tag": null, + "to": [ + -0.3207, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1258, + 1266, + 0 + ] + }, + "from": [ + -0.3207, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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": [ + 1160, + 1209, + 0 + ] + }, + "from": [ + -8.0, + 5.679286509705091 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "to": [ + -0.32071349029490914, + 5.679286509705091 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1160, + 1209, + 0 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1198, + 1208, + 0 + ] + } + ] + }, + "outerEdge": { + "type": "TagIdentifier", + "value": "outerEdge", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1073, + 1083, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1117, + 1123, + 0 + ] + } + ] + } + }, + "__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 + } + ], + "__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": [ + 1160, + 1209, + 0 + ] + }, + "from": [ + -8.0, + 5.679286509705091 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "to": [ + -0.32071349029490914, + 5.679286509705091 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1160, + 1209, + 0 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1198, + 1208, + 0 + ] + } + ] + }, + "outerEdge": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "outerEdge", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1073, + 1083, + 0 + ] + } + ] + }, + "p": { + "type": "Int", + "value": 300, + "__meta": [ + { + "sourceRange": [ + 608, + 611, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1117, + 1123, + 0 + ] + } + ] + }, + "shelfMountL": { + "type": "Int", + "value": 8, + "__meta": [ + { + "sourceRange": [ + 368, + 369, + 0 + ] + } + ] + }, + "sigmaAllow": { + "type": "Int", + "value": 35000, + "__meta": [ + { + "sourceRange": [ + 573, + 578, + 0 + ] + } + ] + }, + "sketch001": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1577, + 1599, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1605, + 1627, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1633, + 1655, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1661, + 1708, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1577, + 1599, + 0 + ] + }, + "from": [ + 4.28, + 3.83 + ], + "tag": null, + "to": [ + 6.45, + 3.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1605, + 1627, + 0 + ] + }, + "from": [ + 6.45, + 3.8 + ], + "tag": null, + "to": [ + 6.38, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1633, + 1655, + 0 + ] + }, + "from": [ + 6.38, + 2.0 + ], + "tag": null, + "to": [ + 4.31, + 2.05 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1661, + 1708, + 0 + ] + }, + "from": [ + 4.31, + 2.05 + ], + "tag": null, + "to": [ + 4.28, + 3.83 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1714, + 1722, + 0 + ] + }, + "from": [ + 4.28, + 3.83 + ], + "tag": null, + "to": [ + 4.28, + 3.83 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1130, + 1154, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1160, + 1209, + 0 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1215, + 1252, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1258, + 1266, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1130, + 1154, + 0 + ] + }, + "from": [ + -8.0, + 6.0 + ], + "tag": null, + "to": [ + -8.0, + 5.6793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1160, + 1209, + 0 + ] + }, + "from": [ + -8.0, + 5.6793 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "to": [ + -0.3207, + 5.6793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1215, + 1252, + 0 + ] + }, + "from": [ + -0.3207, + 5.6793 + ], + "tag": null, + "to": [ + -0.3207, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1258, + 1266, + 0 + ] + }, + "from": [ + -0.3207, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__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": [ + 1160, + 1209, + 0 + ] + }, + "from": [ + -8.0, + 5.679286509705091 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "to": [ + -0.32071349029490914, + 5.679286509705091 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1160, + 1209, + 0 + ], + "tag": { + "end": 1208, + "start": 1198, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1198, + 1208, + 0 + ] + } + ] + }, + "outerEdge": { + "type": "TagIdentifier", + "value": "outerEdge", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1084, + 0 + ], + "tag": { + "end": 1083, + "start": 1073, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1073, + 1083, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1090, + 1124, + 0 + ], + "tag": { + "end": 1123, + "start": 1117, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1117, + 1123, + 0 + ] + } + ] + } + }, + "__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 + } + ], + "__meta": [ + { + "sourceRange": [ + 1017, + 1042, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 1505, + 1534, + 0 + ] + } + ] + }, + "start": { + "from": [ + 4.28, + 3.83 + ], + "to": [ + 4.28, + 3.83 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1540, + 1571, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 1540, + 1571, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 1540, + 1571, + 0 + ] + } + ] + }, + "thickness": { + "type": "Number", + "value": 0.32071349029490925, + "__meta": [ + { + "sourceRange": [ + 850, + 890, + 0 + ] + } + ] + }, + "wallMountL": { + "type": "Int", + "value": 6, + "__meta": [ + { + "sourceRange": [ + 445, + 446, + 0 + ] + } + ] + }, + "width": { + "type": "Int", + "value": 6, + "__meta": [ + { + "sourceRange": [ + 594, + 595, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/rendered_model.png b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/rendered_model.png new file mode 100644 index 000000000..3a563875d Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/tokens.snap b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/tokens.snap new file mode 100644 index 000000000..3bad4483f --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/tokens.snap @@ -0,0 +1,2601 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch_on_face_after_fillets_referencing_face.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "lineComment", + "start": 0, + "end": 16, + "value": "// Shelf Bracket" + }, + { + "type": "whitespace", + "start": 16, + "end": 17, + "value": "\n" + }, + { + "type": "lineComment", + "start": 17, + "end": 316, + "value": "// This is a shelf bracket made out of 6061-T6 aluminum sheet metal. The required thickness is calculated based on a point load of 300 lbs applied to the end of the shelf. There are two brackets holding up the shelf, so the moment experienced is divided by 2. The shelf is 1 foot long from the wall." + }, + { + "type": "whitespace", + "start": 316, + "end": 319, + "value": "\n\n\n" + }, + { + "type": "lineComment", + "start": 319, + "end": 353, + "value": "// Define our bracket feet lengths" + }, + { + "type": "whitespace", + "start": 353, + "end": 354, + "value": "\n" + }, + { + "type": "word", + "start": 354, + "end": 365, + "value": "shelfMountL" + }, + { + "type": "whitespace", + "start": 365, + "end": 366, + "value": " " + }, + { + "type": "operator", + "start": 366, + "end": 367, + "value": "=" + }, + { + "type": "whitespace", + "start": 367, + "end": 368, + "value": " " + }, + { + "type": "number", + "start": 368, + "end": 369, + "value": "8" + }, + { + "type": "whitespace", + "start": 369, + "end": 370, + "value": " " + }, + { + "type": "lineComment", + "start": 370, + "end": 431, + "value": "// The length of the bracket holding up the shelf is 6 inches" + }, + { + "type": "whitespace", + "start": 431, + "end": 432, + "value": "\n" + }, + { + "type": "word", + "start": 432, + "end": 442, + "value": "wallMountL" + }, + { + "type": "whitespace", + "start": 442, + "end": 443, + "value": " " + }, + { + "type": "operator", + "start": 443, + "end": 444, + "value": "=" + }, + { + "type": "whitespace", + "start": 444, + "end": 445, + "value": " " + }, + { + "type": "number", + "start": 445, + "end": 446, + "value": "6" + }, + { + "type": "whitespace", + "start": 446, + "end": 447, + "value": " " + }, + { + "type": "lineComment", + "start": 447, + "end": 475, + "value": "// the length of the bracket" + }, + { + "type": "whitespace", + "start": 475, + "end": 478, + "value": "\n\n\n" + }, + { + "type": "lineComment", + "start": 478, + "end": 559, + "value": "// Define constants required to calculate the thickness needed to support 300 lbs" + }, + { + "type": "whitespace", + "start": 559, + "end": 560, + "value": "\n" + }, + { + "type": "word", + "start": 560, + "end": 570, + "value": "sigmaAllow" + }, + { + "type": "whitespace", + "start": 570, + "end": 571, + "value": " " + }, + { + "type": "operator", + "start": 571, + "end": 572, + "value": "=" + }, + { + "type": "whitespace", + "start": 572, + "end": 573, + "value": " " + }, + { + "type": "number", + "start": 573, + "end": 578, + "value": "35000" + }, + { + "type": "whitespace", + "start": 578, + "end": 579, + "value": " " + }, + { + "type": "lineComment", + "start": 579, + "end": 585, + "value": "// psi" + }, + { + "type": "whitespace", + "start": 585, + "end": 586, + "value": "\n" + }, + { + "type": "word", + "start": 586, + "end": 591, + "value": "width" + }, + { + "type": "whitespace", + "start": 591, + "end": 592, + "value": " " + }, + { + "type": "operator", + "start": 592, + "end": 593, + "value": "=" + }, + { + "type": "whitespace", + "start": 593, + "end": 594, + "value": " " + }, + { + "type": "number", + "start": 594, + "end": 595, + "value": "6" + }, + { + "type": "whitespace", + "start": 595, + "end": 596, + "value": " " + }, + { + "type": "lineComment", + "start": 596, + "end": 603, + "value": "// inch" + }, + { + "type": "whitespace", + "start": 603, + "end": 604, + "value": "\n" + }, + { + "type": "word", + "start": 604, + "end": 605, + "value": "p" + }, + { + "type": "whitespace", + "start": 605, + "end": 606, + "value": " " + }, + { + "type": "operator", + "start": 606, + "end": 607, + "value": "=" + }, + { + "type": "whitespace", + "start": 607, + "end": 608, + "value": " " + }, + { + "type": "number", + "start": 608, + "end": 611, + "value": "300" + }, + { + "type": "whitespace", + "start": 611, + "end": 612, + "value": " " + }, + { + "type": "lineComment", + "start": 612, + "end": 635, + "value": "// Force on shelf - lbs" + }, + { + "type": "whitespace", + "start": 635, + "end": 636, + "value": "\n" + }, + { + "type": "word", + "start": 636, + "end": 637, + "value": "L" + }, + { + "type": "whitespace", + "start": 637, + "end": 638, + "value": " " + }, + { + "type": "operator", + "start": 638, + "end": 639, + "value": "=" + }, + { + "type": "whitespace", + "start": 639, + "end": 640, + "value": " " + }, + { + "type": "number", + "start": 640, + "end": 642, + "value": "12" + }, + { + "type": "whitespace", + "start": 642, + "end": 643, + "value": " " + }, + { + "type": "lineComment", + "start": 643, + "end": 652, + "value": "// inches" + }, + { + "type": "whitespace", + "start": 652, + "end": 653, + "value": "\n" + }, + { + "type": "word", + "start": 653, + "end": 654, + "value": "M" + }, + { + "type": "whitespace", + "start": 654, + "end": 655, + "value": " " + }, + { + "type": "operator", + "start": 655, + "end": 656, + "value": "=" + }, + { + "type": "whitespace", + "start": 656, + "end": 657, + "value": " " + }, + { + "type": "word", + "start": 657, + "end": 658, + "value": "L" + }, + { + "type": "whitespace", + "start": 658, + "end": 659, + "value": " " + }, + { + "type": "operator", + "start": 659, + "end": 660, + "value": "*" + }, + { + "type": "whitespace", + "start": 660, + "end": 661, + "value": " " + }, + { + "type": "word", + "start": 661, + "end": 662, + "value": "p" + }, + { + "type": "whitespace", + "start": 662, + "end": 663, + "value": " " + }, + { + "type": "operator", + "start": 663, + "end": 664, + "value": "/" + }, + { + "type": "whitespace", + "start": 664, + "end": 665, + "value": " " + }, + { + "type": "number", + "start": 665, + "end": 666, + "value": "2" + }, + { + "type": "whitespace", + "start": 666, + "end": 667, + "value": " " + }, + { + "type": "lineComment", + "start": 667, + "end": 712, + "value": "// Moment experienced at fixed end of bracket" + }, + { + "type": "whitespace", + "start": 712, + "end": 713, + "value": "\n" + }, + { + "type": "word", + "start": 713, + "end": 716, + "value": "FOS" + }, + { + "type": "whitespace", + "start": 716, + "end": 717, + "value": " " + }, + { + "type": "operator", + "start": 717, + "end": 718, + "value": "=" + }, + { + "type": "whitespace", + "start": 718, + "end": 719, + "value": " " + }, + { + "type": "number", + "start": 719, + "end": 720, + "value": "2" + }, + { + "type": "whitespace", + "start": 720, + "end": 721, + "value": " " + }, + { + "type": "lineComment", + "start": 721, + "end": 764, + "value": "// Factor of safety of 2 to be conservative" + }, + { + "type": "whitespace", + "start": 764, + "end": 767, + "value": "\n\n\n" + }, + { + "type": "lineComment", + "start": 767, + "end": 837, + "value": "// Calculate the thickness off the bending stress and factor of safety" + }, + { + "type": "whitespace", + "start": 837, + "end": 838, + "value": "\n" + }, + { + "type": "word", + "start": 838, + "end": 847, + "value": "thickness" + }, + { + "type": "whitespace", + "start": 847, + "end": 848, + "value": " " + }, + { + "type": "operator", + "start": 848, + "end": 849, + "value": "=" + }, + { + "type": "whitespace", + "start": 849, + "end": 850, + "value": " " + }, + { + "type": "word", + "start": 850, + "end": 854, + "value": "sqrt" + }, + { + "type": "brace", + "start": 854, + "end": 855, + "value": "(" + }, + { + "type": "number", + "start": 855, + "end": 856, + "value": "6" + }, + { + "type": "whitespace", + "start": 856, + "end": 857, + "value": " " + }, + { + "type": "operator", + "start": 857, + "end": 858, + "value": "*" + }, + { + "type": "whitespace", + "start": 858, + "end": 859, + "value": " " + }, + { + "type": "word", + "start": 859, + "end": 860, + "value": "M" + }, + { + "type": "whitespace", + "start": 860, + "end": 861, + "value": " " + }, + { + "type": "operator", + "start": 861, + "end": 862, + "value": "*" + }, + { + "type": "whitespace", + "start": 862, + "end": 863, + "value": " " + }, + { + "type": "word", + "start": 863, + "end": 866, + "value": "FOS" + }, + { + "type": "whitespace", + "start": 866, + "end": 867, + "value": " " + }, + { + "type": "operator", + "start": 867, + "end": 868, + "value": "/" + }, + { + "type": "whitespace", + "start": 868, + "end": 869, + "value": " " + }, + { + "type": "brace", + "start": 869, + "end": 870, + "value": "(" + }, + { + "type": "word", + "start": 870, + "end": 875, + "value": "width" + }, + { + "type": "whitespace", + "start": 875, + "end": 876, + "value": " " + }, + { + "type": "operator", + "start": 876, + "end": 877, + "value": "*" + }, + { + "type": "whitespace", + "start": 877, + "end": 878, + "value": " " + }, + { + "type": "word", + "start": 878, + "end": 888, + "value": "sigmaAllow" + }, + { + "type": "brace", + "start": 888, + "end": 889, + "value": ")" + }, + { + "type": "brace", + "start": 889, + "end": 890, + "value": ")" + }, + { + "type": "whitespace", + "start": 890, + "end": 892, + "value": "\n\n" + }, + { + "type": "lineComment", + "start": 892, + "end": 918, + "value": "// 0.25 inch fillet radius" + }, + { + "type": "whitespace", + "start": 918, + "end": 919, + "value": "\n" + }, + { + "type": "word", + "start": 919, + "end": 926, + "value": "filletR" + }, + { + "type": "whitespace", + "start": 926, + "end": 927, + "value": " " + }, + { + "type": "operator", + "start": 927, + "end": 928, + "value": "=" + }, + { + "type": "whitespace", + "start": 928, + "end": 929, + "value": " " + }, + { + "type": "number", + "start": 929, + "end": 933, + "value": "0.25" + }, + { + "type": "whitespace", + "start": 933, + "end": 935, + "value": "\n\n" + }, + { + "type": "lineComment", + "start": 935, + "end": 981, + "value": "// Sketch the bracket and extrude with fillets" + }, + { + "type": "whitespace", + "start": 981, + "end": 982, + "value": "\n" + }, + { + "type": "word", + "start": 982, + "end": 989, + "value": "bracket" + }, + { + "type": "whitespace", + "start": 989, + "end": 990, + "value": " " + }, + { + "type": "operator", + "start": 990, + "end": 991, + "value": "=" + }, + { + "type": "whitespace", + "start": 991, + "end": 992, + "value": " " + }, + { + "type": "word", + "start": 992, + "end": 1005, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 1005, + "end": 1006, + "value": "(" + }, + { + "type": "string", + "start": 1006, + "end": 1010, + "value": "'XY'" + }, + { + "type": "brace", + "start": 1010, + "end": 1011, + "value": ")" + }, + { + "type": "whitespace", + "start": 1011, + "end": 1014, + "value": "\n " + }, + { + "type": "operator", + "start": 1014, + "end": 1016, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1016, + "end": 1017, + "value": " " + }, + { + "type": "word", + "start": 1017, + "end": 1031, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 1031, + "end": 1032, + "value": "(" + }, + { + "type": "brace", + "start": 1032, + "end": 1033, + "value": "[" + }, + { + "type": "number", + "start": 1033, + "end": 1034, + "value": "0" + }, + { + "type": "comma", + "start": 1034, + "end": 1035, + "value": "," + }, + { + "type": "whitespace", + "start": 1035, + "end": 1036, + "value": " " + }, + { + "type": "number", + "start": 1036, + "end": 1037, + "value": "0" + }, + { + "type": "brace", + "start": 1037, + "end": 1038, + "value": "]" + }, + { + "type": "comma", + "start": 1038, + "end": 1039, + "value": "," + }, + { + "type": "whitespace", + "start": 1039, + "end": 1040, + "value": " " + }, + { + "type": "operator", + "start": 1040, + "end": 1041, + "value": "%" + }, + { + "type": "brace", + "start": 1041, + "end": 1042, + "value": ")" + }, + { + "type": "whitespace", + "start": 1042, + "end": 1045, + "value": "\n " + }, + { + "type": "operator", + "start": 1045, + "end": 1047, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1047, + "end": 1048, + "value": " " + }, + { + "type": "word", + "start": 1048, + "end": 1052, + "value": "line" + }, + { + "type": "brace", + "start": 1052, + "end": 1053, + "value": "(" + }, + { + "type": "brace", + "start": 1053, + "end": 1054, + "value": "[" + }, + { + "type": "number", + "start": 1054, + "end": 1055, + "value": "0" + }, + { + "type": "comma", + "start": 1055, + "end": 1056, + "value": "," + }, + { + "type": "whitespace", + "start": 1056, + "end": 1057, + "value": " " + }, + { + "type": "word", + "start": 1057, + "end": 1067, + "value": "wallMountL" + }, + { + "type": "brace", + "start": 1067, + "end": 1068, + "value": "]" + }, + { + "type": "comma", + "start": 1068, + "end": 1069, + "value": "," + }, + { + "type": "whitespace", + "start": 1069, + "end": 1070, + "value": " " + }, + { + "type": "operator", + "start": 1070, + "end": 1071, + "value": "%" + }, + { + "type": "comma", + "start": 1071, + "end": 1072, + "value": "," + }, + { + "type": "whitespace", + "start": 1072, + "end": 1073, + "value": " " + }, + { + "type": "dollar", + "start": 1073, + "end": 1074, + "value": "$" + }, + { + "type": "word", + "start": 1074, + "end": 1083, + "value": "outerEdge" + }, + { + "type": "brace", + "start": 1083, + "end": 1084, + "value": ")" + }, + { + "type": "whitespace", + "start": 1084, + "end": 1087, + "value": "\n " + }, + { + "type": "operator", + "start": 1087, + "end": 1089, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1089, + "end": 1090, + "value": " " + }, + { + "type": "word", + "start": 1090, + "end": 1094, + "value": "line" + }, + { + "type": "brace", + "start": 1094, + "end": 1095, + "value": "(" + }, + { + "type": "brace", + "start": 1095, + "end": 1096, + "value": "[" + }, + { + "type": "operator", + "start": 1096, + "end": 1097, + "value": "-" + }, + { + "type": "word", + "start": 1097, + "end": 1108, + "value": "shelfMountL" + }, + { + "type": "comma", + "start": 1108, + "end": 1109, + "value": "," + }, + { + "type": "whitespace", + "start": 1109, + "end": 1110, + "value": " " + }, + { + "type": "number", + "start": 1110, + "end": 1111, + "value": "0" + }, + { + "type": "brace", + "start": 1111, + "end": 1112, + "value": "]" + }, + { + "type": "comma", + "start": 1112, + "end": 1113, + "value": "," + }, + { + "type": "whitespace", + "start": 1113, + "end": 1114, + "value": " " + }, + { + "type": "operator", + "start": 1114, + "end": 1115, + "value": "%" + }, + { + "type": "comma", + "start": 1115, + "end": 1116, + "value": "," + }, + { + "type": "whitespace", + "start": 1116, + "end": 1117, + "value": " " + }, + { + "type": "dollar", + "start": 1117, + "end": 1118, + "value": "$" + }, + { + "type": "word", + "start": 1118, + "end": 1123, + "value": "seg01" + }, + { + "type": "brace", + "start": 1123, + "end": 1124, + "value": ")" + }, + { + "type": "whitespace", + "start": 1124, + "end": 1127, + "value": "\n " + }, + { + "type": "operator", + "start": 1127, + "end": 1129, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1129, + "end": 1130, + "value": " " + }, + { + "type": "word", + "start": 1130, + "end": 1134, + "value": "line" + }, + { + "type": "brace", + "start": 1134, + "end": 1135, + "value": "(" + }, + { + "type": "brace", + "start": 1135, + "end": 1136, + "value": "[" + }, + { + "type": "number", + "start": 1136, + "end": 1137, + "value": "0" + }, + { + "type": "comma", + "start": 1137, + "end": 1138, + "value": "," + }, + { + "type": "whitespace", + "start": 1138, + "end": 1139, + "value": " " + }, + { + "type": "operator", + "start": 1139, + "end": 1140, + "value": "-" + }, + { + "type": "word", + "start": 1140, + "end": 1149, + "value": "thickness" + }, + { + "type": "brace", + "start": 1149, + "end": 1150, + "value": "]" + }, + { + "type": "comma", + "start": 1150, + "end": 1151, + "value": "," + }, + { + "type": "whitespace", + "start": 1151, + "end": 1152, + "value": " " + }, + { + "type": "operator", + "start": 1152, + "end": 1153, + "value": "%" + }, + { + "type": "brace", + "start": 1153, + "end": 1154, + "value": ")" + }, + { + "type": "whitespace", + "start": 1154, + "end": 1157, + "value": "\n " + }, + { + "type": "operator", + "start": 1157, + "end": 1159, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1159, + "end": 1160, + "value": " " + }, + { + "type": "word", + "start": 1160, + "end": 1164, + "value": "line" + }, + { + "type": "brace", + "start": 1164, + "end": 1165, + "value": "(" + }, + { + "type": "brace", + "start": 1165, + "end": 1166, + "value": "[" + }, + { + "type": "word", + "start": 1166, + "end": 1177, + "value": "shelfMountL" + }, + { + "type": "whitespace", + "start": 1177, + "end": 1178, + "value": " " + }, + { + "type": "operator", + "start": 1178, + "end": 1179, + "value": "-" + }, + { + "type": "whitespace", + "start": 1179, + "end": 1180, + "value": " " + }, + { + "type": "word", + "start": 1180, + "end": 1189, + "value": "thickness" + }, + { + "type": "comma", + "start": 1189, + "end": 1190, + "value": "," + }, + { + "type": "whitespace", + "start": 1190, + "end": 1191, + "value": " " + }, + { + "type": "number", + "start": 1191, + "end": 1192, + "value": "0" + }, + { + "type": "brace", + "start": 1192, + "end": 1193, + "value": "]" + }, + { + "type": "comma", + "start": 1193, + "end": 1194, + "value": "," + }, + { + "type": "whitespace", + "start": 1194, + "end": 1195, + "value": " " + }, + { + "type": "operator", + "start": 1195, + "end": 1196, + "value": "%" + }, + { + "type": "comma", + "start": 1196, + "end": 1197, + "value": "," + }, + { + "type": "whitespace", + "start": 1197, + "end": 1198, + "value": " " + }, + { + "type": "dollar", + "start": 1198, + "end": 1199, + "value": "$" + }, + { + "type": "word", + "start": 1199, + "end": 1208, + "value": "innerEdge" + }, + { + "type": "brace", + "start": 1208, + "end": 1209, + "value": ")" + }, + { + "type": "whitespace", + "start": 1209, + "end": 1212, + "value": "\n " + }, + { + "type": "operator", + "start": 1212, + "end": 1214, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1214, + "end": 1215, + "value": " " + }, + { + "type": "word", + "start": 1215, + "end": 1219, + "value": "line" + }, + { + "type": "brace", + "start": 1219, + "end": 1220, + "value": "(" + }, + { + "type": "brace", + "start": 1220, + "end": 1221, + "value": "[" + }, + { + "type": "number", + "start": 1221, + "end": 1222, + "value": "0" + }, + { + "type": "comma", + "start": 1222, + "end": 1223, + "value": "," + }, + { + "type": "whitespace", + "start": 1223, + "end": 1224, + "value": " " + }, + { + "type": "operator", + "start": 1224, + "end": 1225, + "value": "-" + }, + { + "type": "word", + "start": 1225, + "end": 1235, + "value": "wallMountL" + }, + { + "type": "whitespace", + "start": 1235, + "end": 1236, + "value": " " + }, + { + "type": "operator", + "start": 1236, + "end": 1237, + "value": "+" + }, + { + "type": "whitespace", + "start": 1237, + "end": 1238, + "value": " " + }, + { + "type": "word", + "start": 1238, + "end": 1247, + "value": "thickness" + }, + { + "type": "brace", + "start": 1247, + "end": 1248, + "value": "]" + }, + { + "type": "comma", + "start": 1248, + "end": 1249, + "value": "," + }, + { + "type": "whitespace", + "start": 1249, + "end": 1250, + "value": " " + }, + { + "type": "operator", + "start": 1250, + "end": 1251, + "value": "%" + }, + { + "type": "brace", + "start": 1251, + "end": 1252, + "value": ")" + }, + { + "type": "whitespace", + "start": 1252, + "end": 1255, + "value": "\n " + }, + { + "type": "operator", + "start": 1255, + "end": 1257, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1257, + "end": 1258, + "value": " " + }, + { + "type": "word", + "start": 1258, + "end": 1263, + "value": "close" + }, + { + "type": "brace", + "start": 1263, + "end": 1264, + "value": "(" + }, + { + "type": "operator", + "start": 1264, + "end": 1265, + "value": "%" + }, + { + "type": "brace", + "start": 1265, + "end": 1266, + "value": ")" + }, + { + "type": "whitespace", + "start": 1266, + "end": 1269, + "value": "\n " + }, + { + "type": "operator", + "start": 1269, + "end": 1271, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1271, + "end": 1272, + "value": " " + }, + { + "type": "word", + "start": 1272, + "end": 1279, + "value": "extrude" + }, + { + "type": "brace", + "start": 1279, + "end": 1280, + "value": "(" + }, + { + "type": "word", + "start": 1280, + "end": 1285, + "value": "width" + }, + { + "type": "comma", + "start": 1285, + "end": 1286, + "value": "," + }, + { + "type": "whitespace", + "start": 1286, + "end": 1287, + "value": " " + }, + { + "type": "operator", + "start": 1287, + "end": 1288, + "value": "%" + }, + { + "type": "brace", + "start": 1288, + "end": 1289, + "value": ")" + }, + { + "type": "whitespace", + "start": 1289, + "end": 1292, + "value": "\n " + }, + { + "type": "operator", + "start": 1292, + "end": 1294, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1294, + "end": 1295, + "value": " " + }, + { + "type": "word", + "start": 1295, + "end": 1301, + "value": "fillet" + }, + { + "type": "brace", + "start": 1301, + "end": 1302, + "value": "(" + }, + { + "type": "brace", + "start": 1302, + "end": 1303, + "value": "{" + }, + { + "type": "whitespace", + "start": 1303, + "end": 1311, + "value": "\n " + }, + { + "type": "word", + "start": 1311, + "end": 1317, + "value": "radius" + }, + { + "type": "colon", + "start": 1317, + "end": 1318, + "value": ":" + }, + { + "type": "whitespace", + "start": 1318, + "end": 1319, + "value": " " + }, + { + "type": "word", + "start": 1319, + "end": 1326, + "value": "filletR" + }, + { + "type": "comma", + "start": 1326, + "end": 1327, + "value": "," + }, + { + "type": "whitespace", + "start": 1327, + "end": 1335, + "value": "\n " + }, + { + "type": "word", + "start": 1335, + "end": 1339, + "value": "tags" + }, + { + "type": "colon", + "start": 1339, + "end": 1340, + "value": ":" + }, + { + "type": "whitespace", + "start": 1340, + "end": 1341, + "value": " " + }, + { + "type": "brace", + "start": 1341, + "end": 1342, + "value": "[" + }, + { + "type": "word", + "start": 1342, + "end": 1361, + "value": "getNextAdjacentEdge" + }, + { + "type": "brace", + "start": 1361, + "end": 1362, + "value": "(" + }, + { + "type": "word", + "start": 1362, + "end": 1371, + "value": "innerEdge" + }, + { + "type": "brace", + "start": 1371, + "end": 1372, + "value": ")" + }, + { + "type": "brace", + "start": 1372, + "end": 1373, + "value": "]" + }, + { + "type": "whitespace", + "start": 1373, + "end": 1379, + "value": "\n " + }, + { + "type": "brace", + "start": 1379, + "end": 1380, + "value": "}" + }, + { + "type": "comma", + "start": 1380, + "end": 1381, + "value": "," + }, + { + "type": "whitespace", + "start": 1381, + "end": 1382, + "value": " " + }, + { + "type": "operator", + "start": 1382, + "end": 1383, + "value": "%" + }, + { + "type": "brace", + "start": 1383, + "end": 1384, + "value": ")" + }, + { + "type": "whitespace", + "start": 1384, + "end": 1387, + "value": "\n " + }, + { + "type": "operator", + "start": 1387, + "end": 1389, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1389, + "end": 1390, + "value": " " + }, + { + "type": "word", + "start": 1390, + "end": 1396, + "value": "fillet" + }, + { + "type": "brace", + "start": 1396, + "end": 1397, + "value": "(" + }, + { + "type": "brace", + "start": 1397, + "end": 1398, + "value": "{" + }, + { + "type": "whitespace", + "start": 1398, + "end": 1406, + "value": "\n " + }, + { + "type": "word", + "start": 1406, + "end": 1412, + "value": "radius" + }, + { + "type": "colon", + "start": 1412, + "end": 1413, + "value": ":" + }, + { + "type": "whitespace", + "start": 1413, + "end": 1414, + "value": " " + }, + { + "type": "word", + "start": 1414, + "end": 1421, + "value": "filletR" + }, + { + "type": "whitespace", + "start": 1421, + "end": 1422, + "value": " " + }, + { + "type": "operator", + "start": 1422, + "end": 1423, + "value": "+" + }, + { + "type": "whitespace", + "start": 1423, + "end": 1424, + "value": " " + }, + { + "type": "word", + "start": 1424, + "end": 1433, + "value": "thickness" + }, + { + "type": "comma", + "start": 1433, + "end": 1434, + "value": "," + }, + { + "type": "whitespace", + "start": 1434, + "end": 1442, + "value": "\n " + }, + { + "type": "word", + "start": 1442, + "end": 1446, + "value": "tags" + }, + { + "type": "colon", + "start": 1446, + "end": 1447, + "value": ":" + }, + { + "type": "whitespace", + "start": 1447, + "end": 1448, + "value": " " + }, + { + "type": "brace", + "start": 1448, + "end": 1449, + "value": "[" + }, + { + "type": "word", + "start": 1449, + "end": 1468, + "value": "getNextAdjacentEdge" + }, + { + "type": "brace", + "start": 1468, + "end": 1469, + "value": "(" + }, + { + "type": "word", + "start": 1469, + "end": 1478, + "value": "outerEdge" + }, + { + "type": "brace", + "start": 1478, + "end": 1479, + "value": ")" + }, + { + "type": "brace", + "start": 1479, + "end": 1480, + "value": "]" + }, + { + "type": "whitespace", + "start": 1480, + "end": 1486, + "value": "\n " + }, + { + "type": "brace", + "start": 1486, + "end": 1487, + "value": "}" + }, + { + "type": "comma", + "start": 1487, + "end": 1488, + "value": "," + }, + { + "type": "whitespace", + "start": 1488, + "end": 1489, + "value": " " + }, + { + "type": "operator", + "start": 1489, + "end": 1490, + "value": "%" + }, + { + "type": "brace", + "start": 1490, + "end": 1491, + "value": ")" + }, + { + "type": "whitespace", + "start": 1491, + "end": 1493, + "value": "\n\n" + }, + { + "type": "word", + "start": 1493, + "end": 1502, + "value": "sketch001" + }, + { + "type": "whitespace", + "start": 1502, + "end": 1503, + "value": " " + }, + { + "type": "operator", + "start": 1503, + "end": 1504, + "value": "=" + }, + { + "type": "whitespace", + "start": 1504, + "end": 1505, + "value": " " + }, + { + "type": "word", + "start": 1505, + "end": 1518, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 1518, + "end": 1519, + "value": "(" + }, + { + "type": "word", + "start": 1519, + "end": 1526, + "value": "bracket" + }, + { + "type": "comma", + "start": 1526, + "end": 1527, + "value": "," + }, + { + "type": "whitespace", + "start": 1527, + "end": 1528, + "value": " " + }, + { + "type": "word", + "start": 1528, + "end": 1533, + "value": "seg01" + }, + { + "type": "brace", + "start": 1533, + "end": 1534, + "value": ")" + }, + { + "type": "whitespace", + "start": 1534, + "end": 1537, + "value": "\n " + }, + { + "type": "operator", + "start": 1537, + "end": 1539, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1539, + "end": 1540, + "value": " " + }, + { + "type": "word", + "start": 1540, + "end": 1554, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 1554, + "end": 1555, + "value": "(" + }, + { + "type": "brace", + "start": 1555, + "end": 1556, + "value": "[" + }, + { + "type": "number", + "start": 1556, + "end": 1560, + "value": "4.28" + }, + { + "type": "comma", + "start": 1560, + "end": 1561, + "value": "," + }, + { + "type": "whitespace", + "start": 1561, + "end": 1562, + "value": " " + }, + { + "type": "number", + "start": 1562, + "end": 1566, + "value": "3.83" + }, + { + "type": "brace", + "start": 1566, + "end": 1567, + "value": "]" + }, + { + "type": "comma", + "start": 1567, + "end": 1568, + "value": "," + }, + { + "type": "whitespace", + "start": 1568, + "end": 1569, + "value": " " + }, + { + "type": "operator", + "start": 1569, + "end": 1570, + "value": "%" + }, + { + "type": "brace", + "start": 1570, + "end": 1571, + "value": ")" + }, + { + "type": "whitespace", + "start": 1571, + "end": 1574, + "value": "\n " + }, + { + "type": "operator", + "start": 1574, + "end": 1576, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1576, + "end": 1577, + "value": " " + }, + { + "type": "word", + "start": 1577, + "end": 1581, + "value": "line" + }, + { + "type": "brace", + "start": 1581, + "end": 1582, + "value": "(" + }, + { + "type": "brace", + "start": 1582, + "end": 1583, + "value": "[" + }, + { + "type": "number", + "start": 1583, + "end": 1587, + "value": "2.17" + }, + { + "type": "comma", + "start": 1587, + "end": 1588, + "value": "," + }, + { + "type": "whitespace", + "start": 1588, + "end": 1589, + "value": " " + }, + { + "type": "operator", + "start": 1589, + "end": 1590, + "value": "-" + }, + { + "type": "number", + "start": 1590, + "end": 1594, + "value": "0.03" + }, + { + "type": "brace", + "start": 1594, + "end": 1595, + "value": "]" + }, + { + "type": "comma", + "start": 1595, + "end": 1596, + "value": "," + }, + { + "type": "whitespace", + "start": 1596, + "end": 1597, + "value": " " + }, + { + "type": "operator", + "start": 1597, + "end": 1598, + "value": "%" + }, + { + "type": "brace", + "start": 1598, + "end": 1599, + "value": ")" + }, + { + "type": "whitespace", + "start": 1599, + "end": 1602, + "value": "\n " + }, + { + "type": "operator", + "start": 1602, + "end": 1604, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1604, + "end": 1605, + "value": " " + }, + { + "type": "word", + "start": 1605, + "end": 1609, + "value": "line" + }, + { + "type": "brace", + "start": 1609, + "end": 1610, + "value": "(" + }, + { + "type": "brace", + "start": 1610, + "end": 1611, + "value": "[" + }, + { + "type": "operator", + "start": 1611, + "end": 1612, + "value": "-" + }, + { + "type": "number", + "start": 1612, + "end": 1616, + "value": "0.07" + }, + { + "type": "comma", + "start": 1616, + "end": 1617, + "value": "," + }, + { + "type": "whitespace", + "start": 1617, + "end": 1618, + "value": " " + }, + { + "type": "operator", + "start": 1618, + "end": 1619, + "value": "-" + }, + { + "type": "number", + "start": 1619, + "end": 1622, + "value": "1.8" + }, + { + "type": "brace", + "start": 1622, + "end": 1623, + "value": "]" + }, + { + "type": "comma", + "start": 1623, + "end": 1624, + "value": "," + }, + { + "type": "whitespace", + "start": 1624, + "end": 1625, + "value": " " + }, + { + "type": "operator", + "start": 1625, + "end": 1626, + "value": "%" + }, + { + "type": "brace", + "start": 1626, + "end": 1627, + "value": ")" + }, + { + "type": "whitespace", + "start": 1627, + "end": 1630, + "value": "\n " + }, + { + "type": "operator", + "start": 1630, + "end": 1632, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1632, + "end": 1633, + "value": " " + }, + { + "type": "word", + "start": 1633, + "end": 1637, + "value": "line" + }, + { + "type": "brace", + "start": 1637, + "end": 1638, + "value": "(" + }, + { + "type": "brace", + "start": 1638, + "end": 1639, + "value": "[" + }, + { + "type": "operator", + "start": 1639, + "end": 1640, + "value": "-" + }, + { + "type": "number", + "start": 1640, + "end": 1644, + "value": "2.07" + }, + { + "type": "comma", + "start": 1644, + "end": 1645, + "value": "," + }, + { + "type": "whitespace", + "start": 1645, + "end": 1646, + "value": " " + }, + { + "type": "number", + "start": 1646, + "end": 1650, + "value": "0.05" + }, + { + "type": "brace", + "start": 1650, + "end": 1651, + "value": "]" + }, + { + "type": "comma", + "start": 1651, + "end": 1652, + "value": "," + }, + { + "type": "whitespace", + "start": 1652, + "end": 1653, + "value": " " + }, + { + "type": "operator", + "start": 1653, + "end": 1654, + "value": "%" + }, + { + "type": "brace", + "start": 1654, + "end": 1655, + "value": ")" + }, + { + "type": "whitespace", + "start": 1655, + "end": 1658, + "value": "\n " + }, + { + "type": "operator", + "start": 1658, + "end": 1660, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1660, + "end": 1661, + "value": " " + }, + { + "type": "word", + "start": 1661, + "end": 1667, + "value": "lineTo" + }, + { + "type": "brace", + "start": 1667, + "end": 1668, + "value": "(" + }, + { + "type": "brace", + "start": 1668, + "end": 1669, + "value": "[" + }, + { + "type": "word", + "start": 1669, + "end": 1682, + "value": "profileStartX" + }, + { + "type": "brace", + "start": 1682, + "end": 1683, + "value": "(" + }, + { + "type": "operator", + "start": 1683, + "end": 1684, + "value": "%" + }, + { + "type": "brace", + "start": 1684, + "end": 1685, + "value": ")" + }, + { + "type": "comma", + "start": 1685, + "end": 1686, + "value": "," + }, + { + "type": "whitespace", + "start": 1686, + "end": 1687, + "value": " " + }, + { + "type": "word", + "start": 1687, + "end": 1700, + "value": "profileStartY" + }, + { + "type": "brace", + "start": 1700, + "end": 1701, + "value": "(" + }, + { + "type": "operator", + "start": 1701, + "end": 1702, + "value": "%" + }, + { + "type": "brace", + "start": 1702, + "end": 1703, + "value": ")" + }, + { + "type": "brace", + "start": 1703, + "end": 1704, + "value": "]" + }, + { + "type": "comma", + "start": 1704, + "end": 1705, + "value": "," + }, + { + "type": "whitespace", + "start": 1705, + "end": 1706, + "value": " " + }, + { + "type": "operator", + "start": 1706, + "end": 1707, + "value": "%" + }, + { + "type": "brace", + "start": 1707, + "end": 1708, + "value": ")" + }, + { + "type": "whitespace", + "start": 1708, + "end": 1711, + "value": "\n " + }, + { + "type": "operator", + "start": 1711, + "end": 1713, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1713, + "end": 1714, + "value": " " + }, + { + "type": "word", + "start": 1714, + "end": 1719, + "value": "close" + }, + { + "type": "brace", + "start": 1719, + "end": 1720, + "value": "(" + }, + { + "type": "operator", + "start": 1720, + "end": 1721, + "value": "%" + }, + { + "type": "brace", + "start": 1721, + "end": 1722, + "value": ")" + }, + { + "type": "whitespace", + "start": 1722, + "end": 1725, + "value": "\n " + }, + { + "type": "operator", + "start": 1725, + "end": 1727, + "value": "|>" + }, + { + "type": "whitespace", + "start": 1727, + "end": 1728, + "value": " " + }, + { + "type": "word", + "start": 1728, + "end": 1735, + "value": "extrude" + }, + { + "type": "brace", + "start": 1735, + "end": 1736, + "value": "(" + }, + { + "type": "number", + "start": 1736, + "end": 1738, + "value": "10" + }, + { + "type": "comma", + "start": 1738, + "end": 1739, + "value": "," + }, + { + "type": "whitespace", + "start": 1739, + "end": 1740, + "value": " " + }, + { + "type": "operator", + "start": 1740, + "end": 1741, + "value": "%" + }, + { + "type": "brace", + "start": 1741, + "end": 1742, + "value": ")" + }, + { + "type": "whitespace", + "start": 1742, + "end": 1743, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/ast.snap b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/ast.snap new file mode 100644 index 000000000..885a3fc3b --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/ast.snap @@ -0,0 +1,630 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch_on_face_circle_tagged.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 181, + "id": { + "end": 7, + "name": "cube", + "start": 3, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 3, + "type": "VariableDeclarator" + } + ], + "end": 181, + "kind": "fn", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 242, + "id": { + "end": 189, + "name": "part001", + "start": 182, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "elements": [ + { + "end": 199, + "raw": "0", + "start": 198, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 202, + "raw": "0", + "start": 201, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 203, + "start": 197, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 207, + "raw": "20", + "start": 205, + "type": "Literal", + "type": "Literal", + "value": 20 + } + ], + "callee": { + "end": 196, + "name": "cube", + "start": 192, + "type": "Identifier" + }, + "end": 208, + "optional": false, + "start": 192, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 221, + "start": 220, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 219, + "name": "close", + "start": 214, + "type": "Identifier" + }, + "end": 222, + "optional": false, + "start": 214, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 238, + "raw": "20", + "start": 236, + "type": "Literal", + "type": "Literal", + "value": 20 + }, + { + "end": 241, + "start": 240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 235, + "name": "extrude", + "start": 228, + "type": "Identifier" + }, + "end": 242, + "optional": false, + "start": 228, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 242, + "start": 192, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 182, + "type": "VariableDeclarator" + } + ], + "end": 242, + "kind": "const", + "start": 182, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 359, + "id": { + "end": 251, + "name": "part002", + "start": 244, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 275, + "name": "part001", + "start": 268, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 282, + "raw": "\"end\"", + "start": 277, + "type": "Literal", + "type": "Literal", + "value": "end" + } + ], + "callee": { + "end": 267, + "name": "startSketchOn", + "start": 254, + "type": "Identifier" + }, + "end": 283, + "optional": false, + "start": 254, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 325, + "properties": [ + { + "end": 312, + "key": { + "end": 304, + "name": "center", + "start": 298, + "type": "Identifier" + }, + "start": 298, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 308, + "raw": "0", + "start": 307, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 311, + "raw": "0", + "start": 310, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 312, + "start": 306, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 323, + "key": { + "end": 320, + "name": "radius", + "start": 314, + "type": "Identifier" + }, + "start": 314, + "type": "ObjectProperty", + "value": { + "end": 323, + "raw": "5", + "start": 322, + "type": "Literal", + "type": "Literal", + "value": 5 + } + } + ], + "start": 296, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 328, + "start": 327, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 339, + "start": 330, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "myCircle" + } + ], + "callee": { + "end": 295, + "name": "circle", + "start": 289, + "type": "Identifier" + }, + "end": 340, + "optional": false, + "start": 289, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 355, + "raw": "5", + "start": 354, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + { + "end": 358, + "start": 357, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 353, + "name": "extrude", + "start": 346, + "type": "Identifier" + }, + "end": 359, + "optional": false, + "start": 346, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 359, + "start": 254, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 244, + "type": "VariableDeclarator" + } + ], + "end": 359, + "kind": "const", + "start": 244, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 360, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 244, + "start": 242, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/input.kcl b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/input.kcl new file mode 100644 index 000000000..cf3e34ef4 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/input.kcl @@ -0,0 +1,16 @@ +fn cube = (pos, scale) => { + sg = startSketchOn('XY') + |> startProfileAt(pos, %) + |> line([0, scale], %) + |> line([scale, 0], %) + |> line([0, -scale], %) + + return sg +} +part001 = cube([0, 0], 20) + |> close(%) + |> extrude(20, %) + +part002 = startSketchOn(part001, "end") + |> circle({ center: [0, 0], radius: 5 }, %, $myCircle) + |> extrude(5, %) 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 new file mode 100644 index 000000000..2dfd12f6c --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap @@ -0,0 +1,1025 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch_on_face_circle_tagged.kcl +snapshot_kind: text +--- +{ + "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": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 181, + 0 + ] + } + ] + }, + "myCircle": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "myCircle", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 289, + 340, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.0, + 0.0 + ], + "radius": 5.0, + "tag": { + "end": 339, + "start": 330, + "type": "TagDeclarator", + "value": "myCircle" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "Circle" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 289, + 340, + 0 + ], + "tag": { + "end": 339, + "start": 330, + "type": "TagDeclarator", + "value": "myCircle" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 330, + 339, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "part002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 289, + 340, + 0 + ], + "tag": { + "end": 339, + "start": 330, + "type": "TagDeclarator", + "value": "myCircle" + }, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 289, + 340, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.0, + 0.0 + ], + "radius": 5.0, + "tag": { + "end": 339, + "start": 330, + "type": "TagDeclarator", + "value": "myCircle" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "Circle" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 254, + 283, + 0 + ] + } + ] + }, + "start": { + "from": [ + 5.0, + 0.0 + ], + "to": [ + 5.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 289, + 340, + 0 + ] + } + }, + "tags": { + "myCircle": { + "type": "TagIdentifier", + "value": "myCircle", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 289, + 340, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 0.0, + 0.0 + ], + "radius": 5.0, + "tag": { + "end": 339, + "start": 330, + "type": "TagDeclarator", + "value": "myCircle" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "Circle" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 289, + 340, + 0 + ], + "tag": { + "end": 339, + "start": 330, + "type": "TagDeclarator", + "value": "myCircle" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 330, + 339, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 289, + 340, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 289, + 340, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/rendered_model.png b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/rendered_model.png new file mode 100644 index 000000000..2d076a02a Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/tokens.snap b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/tokens.snap new file mode 100644 index 000000000..2a9048d4b --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/tokens.snap @@ -0,0 +1,1065 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch_on_face_circle_tagged.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 2, + "value": "fn" + }, + { + "type": "whitespace", + "start": 2, + "end": 3, + "value": " " + }, + { + "type": "word", + "start": 3, + "end": 7, + "value": "cube" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "brace", + "start": 10, + "end": 11, + "value": "(" + }, + { + "type": "word", + "start": 11, + "end": 14, + "value": "pos" + }, + { + "type": "comma", + "start": 14, + "end": 15, + "value": "," + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "word", + "start": 16, + "end": 21, + "value": "scale" + }, + { + "type": "brace", + "start": 21, + "end": 22, + "value": ")" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": " " + }, + { + "type": "operator", + "start": 23, + "end": 25, + "value": "=>" + }, + { + "type": "whitespace", + "start": 25, + "end": 26, + "value": " " + }, + { + "type": "brace", + "start": 26, + "end": 27, + "value": "{" + }, + { + "type": "whitespace", + "start": 27, + "end": 30, + "value": "\n " + }, + { + "type": "word", + "start": 30, + "end": 32, + "value": "sg" + }, + { + "type": "whitespace", + "start": 32, + "end": 33, + "value": " " + }, + { + "type": "operator", + "start": 33, + "end": 34, + "value": "=" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 48, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 48, + "end": 49, + "value": "(" + }, + { + "type": "string", + "start": 49, + "end": 53, + "value": "'XY'" + }, + { + "type": "brace", + "start": 53, + "end": 54, + "value": ")" + }, + { + "type": "whitespace", + "start": 54, + "end": 59, + "value": "\n " + }, + { + "type": "operator", + "start": 59, + "end": 61, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61, + "end": 62, + "value": " " + }, + { + "type": "word", + "start": 62, + "end": 76, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 76, + "end": 77, + "value": "(" + }, + { + "type": "word", + "start": 77, + "end": 80, + "value": "pos" + }, + { + "type": "comma", + "start": 80, + "end": 81, + "value": "," + }, + { + "type": "whitespace", + "start": 81, + "end": 82, + "value": " " + }, + { + "type": "operator", + "start": 82, + "end": 83, + "value": "%" + }, + { + "type": "brace", + "start": 83, + "end": 84, + "value": ")" + }, + { + "type": "whitespace", + "start": 84, + "end": 89, + "value": "\n " + }, + { + "type": "operator", + "start": 89, + "end": 91, + "value": "|>" + }, + { + "type": "whitespace", + "start": 91, + "end": 92, + "value": " " + }, + { + "type": "word", + "start": 92, + "end": 96, + "value": "line" + }, + { + "type": "brace", + "start": 96, + "end": 97, + "value": "(" + }, + { + "type": "brace", + "start": 97, + "end": 98, + "value": "[" + }, + { + "type": "number", + "start": 98, + "end": 99, + "value": "0" + }, + { + "type": "comma", + "start": 99, + "end": 100, + "value": "," + }, + { + "type": "whitespace", + "start": 100, + "end": 101, + "value": " " + }, + { + "type": "word", + "start": 101, + "end": 106, + "value": "scale" + }, + { + "type": "brace", + "start": 106, + "end": 107, + "value": "]" + }, + { + "type": "comma", + "start": 107, + "end": 108, + "value": "," + }, + { + "type": "whitespace", + "start": 108, + "end": 109, + "value": " " + }, + { + "type": "operator", + "start": 109, + "end": 110, + "value": "%" + }, + { + "type": "brace", + "start": 110, + "end": 111, + "value": ")" + }, + { + "type": "whitespace", + "start": 111, + "end": 116, + "value": "\n " + }, + { + "type": "operator", + "start": 116, + "end": 118, + "value": "|>" + }, + { + "type": "whitespace", + "start": 118, + "end": 119, + "value": " " + }, + { + "type": "word", + "start": 119, + "end": 123, + "value": "line" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "(" + }, + { + "type": "brace", + "start": 124, + "end": 125, + "value": "[" + }, + { + "type": "word", + "start": 125, + "end": 130, + "value": "scale" + }, + { + "type": "comma", + "start": 130, + "end": 131, + "value": "," + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "number", + "start": 132, + "end": 133, + "value": "0" + }, + { + "type": "brace", + "start": 133, + "end": 134, + "value": "]" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "operator", + "start": 136, + "end": 137, + "value": "%" + }, + { + "type": "brace", + "start": 137, + "end": 138, + "value": ")" + }, + { + "type": "whitespace", + "start": 138, + "end": 143, + "value": "\n " + }, + { + "type": "operator", + "start": 143, + "end": 145, + "value": "|>" + }, + { + "type": "whitespace", + "start": 145, + "end": 146, + "value": " " + }, + { + "type": "word", + "start": 146, + "end": 150, + "value": "line" + }, + { + "type": "brace", + "start": 150, + "end": 151, + "value": "(" + }, + { + "type": "brace", + "start": 151, + "end": 152, + "value": "[" + }, + { + "type": "number", + "start": 152, + "end": 153, + "value": "0" + }, + { + "type": "comma", + "start": 153, + "end": 154, + "value": "," + }, + { + "type": "whitespace", + "start": 154, + "end": 155, + "value": " " + }, + { + "type": "operator", + "start": 155, + "end": 156, + "value": "-" + }, + { + "type": "word", + "start": 156, + "end": 161, + "value": "scale" + }, + { + "type": "brace", + "start": 161, + "end": 162, + "value": "]" + }, + { + "type": "comma", + "start": 162, + "end": 163, + "value": "," + }, + { + "type": "whitespace", + "start": 163, + "end": 164, + "value": " " + }, + { + "type": "operator", + "start": 164, + "end": 165, + "value": "%" + }, + { + "type": "brace", + "start": 165, + "end": 166, + "value": ")" + }, + { + "type": "whitespace", + "start": 166, + "end": 170, + "value": "\n\n " + }, + { + "type": "keyword", + "start": 170, + "end": 176, + "value": "return" + }, + { + "type": "whitespace", + "start": 176, + "end": 177, + "value": " " + }, + { + "type": "word", + "start": 177, + "end": 179, + "value": "sg" + }, + { + "type": "whitespace", + "start": 179, + "end": 180, + "value": "\n" + }, + { + "type": "brace", + "start": 180, + "end": 181, + "value": "}" + }, + { + "type": "whitespace", + "start": 181, + "end": 182, + "value": "\n" + }, + { + "type": "word", + "start": 182, + "end": 189, + "value": "part001" + }, + { + "type": "whitespace", + "start": 189, + "end": 190, + "value": " " + }, + { + "type": "operator", + "start": 190, + "end": 191, + "value": "=" + }, + { + "type": "whitespace", + "start": 191, + "end": 192, + "value": " " + }, + { + "type": "word", + "start": 192, + "end": 196, + "value": "cube" + }, + { + "type": "brace", + "start": 196, + "end": 197, + "value": "(" + }, + { + "type": "brace", + "start": 197, + "end": 198, + "value": "[" + }, + { + "type": "number", + "start": 198, + "end": 199, + "value": "0" + }, + { + "type": "comma", + "start": 199, + "end": 200, + "value": "," + }, + { + "type": "whitespace", + "start": 200, + "end": 201, + "value": " " + }, + { + "type": "number", + "start": 201, + "end": 202, + "value": "0" + }, + { + "type": "brace", + "start": 202, + "end": 203, + "value": "]" + }, + { + "type": "comma", + "start": 203, + "end": 204, + "value": "," + }, + { + "type": "whitespace", + "start": 204, + "end": 205, + "value": " " + }, + { + "type": "number", + "start": 205, + "end": 207, + "value": "20" + }, + { + "type": "brace", + "start": 207, + "end": 208, + "value": ")" + }, + { + "type": "whitespace", + "start": 208, + "end": 211, + "value": "\n " + }, + { + "type": "operator", + "start": 211, + "end": 213, + "value": "|>" + }, + { + "type": "whitespace", + "start": 213, + "end": 214, + "value": " " + }, + { + "type": "word", + "start": 214, + "end": 219, + "value": "close" + }, + { + "type": "brace", + "start": 219, + "end": 220, + "value": "(" + }, + { + "type": "operator", + "start": 220, + "end": 221, + "value": "%" + }, + { + "type": "brace", + "start": 221, + "end": 222, + "value": ")" + }, + { + "type": "whitespace", + "start": 222, + "end": 225, + "value": "\n " + }, + { + "type": "operator", + "start": 225, + "end": 227, + "value": "|>" + }, + { + "type": "whitespace", + "start": 227, + "end": 228, + "value": " " + }, + { + "type": "word", + "start": 228, + "end": 235, + "value": "extrude" + }, + { + "type": "brace", + "start": 235, + "end": 236, + "value": "(" + }, + { + "type": "number", + "start": 236, + "end": 238, + "value": "20" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "operator", + "start": 240, + "end": 241, + "value": "%" + }, + { + "type": "brace", + "start": 241, + "end": 242, + "value": ")" + }, + { + "type": "whitespace", + "start": 242, + "end": 244, + "value": "\n\n" + }, + { + "type": "word", + "start": 244, + "end": 251, + "value": "part002" + }, + { + "type": "whitespace", + "start": 251, + "end": 252, + "value": " " + }, + { + "type": "operator", + "start": 252, + "end": 253, + "value": "=" + }, + { + "type": "whitespace", + "start": 253, + "end": 254, + "value": " " + }, + { + "type": "word", + "start": 254, + "end": 267, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 267, + "end": 268, + "value": "(" + }, + { + "type": "word", + "start": 268, + "end": 275, + "value": "part001" + }, + { + "type": "comma", + "start": 275, + "end": 276, + "value": "," + }, + { + "type": "whitespace", + "start": 276, + "end": 277, + "value": " " + }, + { + "type": "string", + "start": 277, + "end": 282, + "value": "\"end\"" + }, + { + "type": "brace", + "start": 282, + "end": 283, + "value": ")" + }, + { + "type": "whitespace", + "start": 283, + "end": 286, + "value": "\n " + }, + { + "type": "operator", + "start": 286, + "end": 288, + "value": "|>" + }, + { + "type": "whitespace", + "start": 288, + "end": 289, + "value": " " + }, + { + "type": "word", + "start": 289, + "end": 295, + "value": "circle" + }, + { + "type": "brace", + "start": 295, + "end": 296, + "value": "(" + }, + { + "type": "brace", + "start": 296, + "end": 297, + "value": "{" + }, + { + "type": "whitespace", + "start": 297, + "end": 298, + "value": " " + }, + { + "type": "word", + "start": 298, + "end": 304, + "value": "center" + }, + { + "type": "colon", + "start": 304, + "end": 305, + "value": ":" + }, + { + "type": "whitespace", + "start": 305, + "end": 306, + "value": " " + }, + { + "type": "brace", + "start": 306, + "end": 307, + "value": "[" + }, + { + "type": "number", + "start": 307, + "end": 308, + "value": "0" + }, + { + "type": "comma", + "start": 308, + "end": 309, + "value": "," + }, + { + "type": "whitespace", + "start": 309, + "end": 310, + "value": " " + }, + { + "type": "number", + "start": 310, + "end": 311, + "value": "0" + }, + { + "type": "brace", + "start": 311, + "end": 312, + "value": "]" + }, + { + "type": "comma", + "start": 312, + "end": 313, + "value": "," + }, + { + "type": "whitespace", + "start": 313, + "end": 314, + "value": " " + }, + { + "type": "word", + "start": 314, + "end": 320, + "value": "radius" + }, + { + "type": "colon", + "start": 320, + "end": 321, + "value": ":" + }, + { + "type": "whitespace", + "start": 321, + "end": 322, + "value": " " + }, + { + "type": "number", + "start": 322, + "end": 323, + "value": "5" + }, + { + "type": "whitespace", + "start": 323, + "end": 324, + "value": " " + }, + { + "type": "brace", + "start": 324, + "end": 325, + "value": "}" + }, + { + "type": "comma", + "start": 325, + "end": 326, + "value": "," + }, + { + "type": "whitespace", + "start": 326, + "end": 327, + "value": " " + }, + { + "type": "operator", + "start": 327, + "end": 328, + "value": "%" + }, + { + "type": "comma", + "start": 328, + "end": 329, + "value": "," + }, + { + "type": "whitespace", + "start": 329, + "end": 330, + "value": " " + }, + { + "type": "dollar", + "start": 330, + "end": 331, + "value": "$" + }, + { + "type": "word", + "start": 331, + "end": 339, + "value": "myCircle" + }, + { + "type": "brace", + "start": 339, + "end": 340, + "value": ")" + }, + { + "type": "whitespace", + "start": 340, + "end": 343, + "value": "\n " + }, + { + "type": "operator", + "start": 343, + "end": 345, + "value": "|>" + }, + { + "type": "whitespace", + "start": 345, + "end": 346, + "value": " " + }, + { + "type": "word", + "start": 346, + "end": 353, + "value": "extrude" + }, + { + "type": "brace", + "start": 353, + "end": 354, + "value": "(" + }, + { + "type": "number", + "start": 354, + "end": 355, + "value": "5" + }, + { + "type": "comma", + "start": 355, + "end": 356, + "value": "," + }, + { + "type": "whitespace", + "start": 356, + "end": 357, + "value": " " + }, + { + "type": "operator", + "start": 357, + "end": 358, + "value": "%" + }, + { + "type": "brace", + "start": 358, + "end": 359, + "value": ")" + }, + { + "type": "whitespace", + "start": 359, + "end": 360, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/ast.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end/ast.snap new file mode 100644 index 000000000..0dcab6a5b --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/ast.snap @@ -0,0 +1,748 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch_on_face_end.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 181, + "id": { + "end": 7, + "name": "cube", + "start": 3, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 3, + "type": "VariableDeclarator" + } + ], + "end": 181, + "kind": "fn", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 242, + "id": { + "end": 189, + "name": "part001", + "start": 182, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "elements": [ + { + "end": 199, + "raw": "0", + "start": 198, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 202, + "raw": "0", + "start": 201, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 203, + "start": 197, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 207, + "raw": "20", + "start": 205, + "type": "Literal", + "type": "Literal", + "value": 20 + } + ], + "callee": { + "end": 196, + "name": "cube", + "start": 192, + "type": "Identifier" + }, + "end": 208, + "optional": false, + "start": 192, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 221, + "start": 220, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 219, + "name": "close", + "start": 214, + "type": "Identifier" + }, + "end": 222, + "optional": false, + "start": 214, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 238, + "raw": "20", + "start": 236, + "type": "Literal", + "type": "Literal", + "value": 20 + }, + { + "end": 241, + "start": 240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 235, + "name": "extrude", + "start": 228, + "type": "Identifier" + }, + "end": 242, + "optional": false, + "start": 228, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 242, + "start": 192, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 182, + "type": "VariableDeclarator" + } + ], + "end": 242, + "kind": "const", + "start": 182, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 414, + "id": { + "end": 251, + "name": "part002", + "start": 244, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 275, + "name": "part001", + "start": 268, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 282, + "raw": "\"END\"", + "start": 277, + "type": "Literal", + "type": "Literal", + "value": "END" + } + ], + "callee": { + "end": 267, + "name": "startSketchOn", + "start": 254, + "type": "Identifier" + }, + "end": 283, + "optional": false, + "start": 254, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 306, + "raw": "0", + "start": 305, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 309, + "raw": "0", + "start": 308, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 310, + "start": 304, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 313, + "start": 312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 303, + "name": "startProfileAt", + "start": 289, + "type": "Identifier" + }, + "end": 314, + "optional": false, + "start": 289, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 327, + "raw": "0", + "start": 326, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 331, + "raw": "10", + "start": 329, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 332, + "start": 325, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 335, + "start": 334, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 324, + "name": "line", + "start": 320, + "type": "Identifier" + }, + "end": 336, + "optional": false, + "start": 320, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 350, + "raw": "10", + "start": 348, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 353, + "raw": "0", + "start": 352, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 354, + "start": 347, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 357, + "start": 356, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 346, + "name": "line", + "start": 342, + "type": "Identifier" + }, + "end": 358, + "optional": false, + "start": 342, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 371, + "raw": "0", + "start": 370, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 376, + "raw": "10", + "start": 374, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 376, + "operator": "-", + "start": 373, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 377, + "start": 369, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 380, + "start": 379, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 368, + "name": "line", + "start": 364, + "type": "Identifier" + }, + "end": 381, + "optional": false, + "start": 364, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 394, + "start": 393, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 392, + "name": "close", + "start": 387, + "type": "Identifier" + }, + "end": 395, + "optional": false, + "start": 387, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 410, + "raw": "5", + "start": 409, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + { + "end": 413, + "start": 412, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 408, + "name": "extrude", + "start": 401, + "type": "Identifier" + }, + "end": 414, + "optional": false, + "start": 401, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 414, + "start": 254, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 244, + "type": "VariableDeclarator" + } + ], + "end": 414, + "kind": "const", + "start": 244, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 415, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 244, + "start": 242, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/input.kcl b/src/wasm-lib/kcl/tests/sketch_on_face_end/input.kcl new file mode 100644 index 000000000..280f059a6 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/input.kcl @@ -0,0 +1,20 @@ +fn cube = (pos, scale) => { + sg = startSketchOn('XY') + |> startProfileAt(pos, %) + |> line([0, scale], %) + |> line([scale, 0], %) + |> line([0, -scale], %) + + return sg +} +part001 = cube([0, 0], 20) + |> close(%) + |> extrude(20, %) + +part002 = startSketchOn(part001, "END") + |> startProfileAt([0, 0], %) + |> line([0, 10], %) + |> line([10, 0], %) + |> line([0, -10], %) + |> close(%) + |> extrude(5, %) 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 new file mode 100644 index 000000000..7780c3478 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap @@ -0,0 +1,969 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch_on_face_end.kcl +snapshot_kind: text +--- +{ + "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": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 181, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "part002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 320, + 336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 342, + 358, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 364, + 381, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 387, + 395, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 320, + 336, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 342, + 358, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 364, + 381, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 387, + 395, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 254, + 283, + 0 + ] + } + ] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 289, + 314, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 289, + 314, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 289, + 314, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/rendered_model.png b/src/wasm-lib/kcl/tests/sketch_on_face_end/rendered_model.png new file mode 100644 index 000000000..8f8748462 Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch_on_face_end/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/tokens.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end/tokens.snap new file mode 100644 index 000000000..a58045255 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/tokens.snap @@ -0,0 +1,1281 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch_on_face_end.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 2, + "value": "fn" + }, + { + "type": "whitespace", + "start": 2, + "end": 3, + "value": " " + }, + { + "type": "word", + "start": 3, + "end": 7, + "value": "cube" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "brace", + "start": 10, + "end": 11, + "value": "(" + }, + { + "type": "word", + "start": 11, + "end": 14, + "value": "pos" + }, + { + "type": "comma", + "start": 14, + "end": 15, + "value": "," + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "word", + "start": 16, + "end": 21, + "value": "scale" + }, + { + "type": "brace", + "start": 21, + "end": 22, + "value": ")" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": " " + }, + { + "type": "operator", + "start": 23, + "end": 25, + "value": "=>" + }, + { + "type": "whitespace", + "start": 25, + "end": 26, + "value": " " + }, + { + "type": "brace", + "start": 26, + "end": 27, + "value": "{" + }, + { + "type": "whitespace", + "start": 27, + "end": 30, + "value": "\n " + }, + { + "type": "word", + "start": 30, + "end": 32, + "value": "sg" + }, + { + "type": "whitespace", + "start": 32, + "end": 33, + "value": " " + }, + { + "type": "operator", + "start": 33, + "end": 34, + "value": "=" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 48, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 48, + "end": 49, + "value": "(" + }, + { + "type": "string", + "start": 49, + "end": 53, + "value": "'XY'" + }, + { + "type": "brace", + "start": 53, + "end": 54, + "value": ")" + }, + { + "type": "whitespace", + "start": 54, + "end": 59, + "value": "\n " + }, + { + "type": "operator", + "start": 59, + "end": 61, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61, + "end": 62, + "value": " " + }, + { + "type": "word", + "start": 62, + "end": 76, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 76, + "end": 77, + "value": "(" + }, + { + "type": "word", + "start": 77, + "end": 80, + "value": "pos" + }, + { + "type": "comma", + "start": 80, + "end": 81, + "value": "," + }, + { + "type": "whitespace", + "start": 81, + "end": 82, + "value": " " + }, + { + "type": "operator", + "start": 82, + "end": 83, + "value": "%" + }, + { + "type": "brace", + "start": 83, + "end": 84, + "value": ")" + }, + { + "type": "whitespace", + "start": 84, + "end": 89, + "value": "\n " + }, + { + "type": "operator", + "start": 89, + "end": 91, + "value": "|>" + }, + { + "type": "whitespace", + "start": 91, + "end": 92, + "value": " " + }, + { + "type": "word", + "start": 92, + "end": 96, + "value": "line" + }, + { + "type": "brace", + "start": 96, + "end": 97, + "value": "(" + }, + { + "type": "brace", + "start": 97, + "end": 98, + "value": "[" + }, + { + "type": "number", + "start": 98, + "end": 99, + "value": "0" + }, + { + "type": "comma", + "start": 99, + "end": 100, + "value": "," + }, + { + "type": "whitespace", + "start": 100, + "end": 101, + "value": " " + }, + { + "type": "word", + "start": 101, + "end": 106, + "value": "scale" + }, + { + "type": "brace", + "start": 106, + "end": 107, + "value": "]" + }, + { + "type": "comma", + "start": 107, + "end": 108, + "value": "," + }, + { + "type": "whitespace", + "start": 108, + "end": 109, + "value": " " + }, + { + "type": "operator", + "start": 109, + "end": 110, + "value": "%" + }, + { + "type": "brace", + "start": 110, + "end": 111, + "value": ")" + }, + { + "type": "whitespace", + "start": 111, + "end": 116, + "value": "\n " + }, + { + "type": "operator", + "start": 116, + "end": 118, + "value": "|>" + }, + { + "type": "whitespace", + "start": 118, + "end": 119, + "value": " " + }, + { + "type": "word", + "start": 119, + "end": 123, + "value": "line" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "(" + }, + { + "type": "brace", + "start": 124, + "end": 125, + "value": "[" + }, + { + "type": "word", + "start": 125, + "end": 130, + "value": "scale" + }, + { + "type": "comma", + "start": 130, + "end": 131, + "value": "," + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "number", + "start": 132, + "end": 133, + "value": "0" + }, + { + "type": "brace", + "start": 133, + "end": 134, + "value": "]" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "operator", + "start": 136, + "end": 137, + "value": "%" + }, + { + "type": "brace", + "start": 137, + "end": 138, + "value": ")" + }, + { + "type": "whitespace", + "start": 138, + "end": 143, + "value": "\n " + }, + { + "type": "operator", + "start": 143, + "end": 145, + "value": "|>" + }, + { + "type": "whitespace", + "start": 145, + "end": 146, + "value": " " + }, + { + "type": "word", + "start": 146, + "end": 150, + "value": "line" + }, + { + "type": "brace", + "start": 150, + "end": 151, + "value": "(" + }, + { + "type": "brace", + "start": 151, + "end": 152, + "value": "[" + }, + { + "type": "number", + "start": 152, + "end": 153, + "value": "0" + }, + { + "type": "comma", + "start": 153, + "end": 154, + "value": "," + }, + { + "type": "whitespace", + "start": 154, + "end": 155, + "value": " " + }, + { + "type": "operator", + "start": 155, + "end": 156, + "value": "-" + }, + { + "type": "word", + "start": 156, + "end": 161, + "value": "scale" + }, + { + "type": "brace", + "start": 161, + "end": 162, + "value": "]" + }, + { + "type": "comma", + "start": 162, + "end": 163, + "value": "," + }, + { + "type": "whitespace", + "start": 163, + "end": 164, + "value": " " + }, + { + "type": "operator", + "start": 164, + "end": 165, + "value": "%" + }, + { + "type": "brace", + "start": 165, + "end": 166, + "value": ")" + }, + { + "type": "whitespace", + "start": 166, + "end": 170, + "value": "\n\n " + }, + { + "type": "keyword", + "start": 170, + "end": 176, + "value": "return" + }, + { + "type": "whitespace", + "start": 176, + "end": 177, + "value": " " + }, + { + "type": "word", + "start": 177, + "end": 179, + "value": "sg" + }, + { + "type": "whitespace", + "start": 179, + "end": 180, + "value": "\n" + }, + { + "type": "brace", + "start": 180, + "end": 181, + "value": "}" + }, + { + "type": "whitespace", + "start": 181, + "end": 182, + "value": "\n" + }, + { + "type": "word", + "start": 182, + "end": 189, + "value": "part001" + }, + { + "type": "whitespace", + "start": 189, + "end": 190, + "value": " " + }, + { + "type": "operator", + "start": 190, + "end": 191, + "value": "=" + }, + { + "type": "whitespace", + "start": 191, + "end": 192, + "value": " " + }, + { + "type": "word", + "start": 192, + "end": 196, + "value": "cube" + }, + { + "type": "brace", + "start": 196, + "end": 197, + "value": "(" + }, + { + "type": "brace", + "start": 197, + "end": 198, + "value": "[" + }, + { + "type": "number", + "start": 198, + "end": 199, + "value": "0" + }, + { + "type": "comma", + "start": 199, + "end": 200, + "value": "," + }, + { + "type": "whitespace", + "start": 200, + "end": 201, + "value": " " + }, + { + "type": "number", + "start": 201, + "end": 202, + "value": "0" + }, + { + "type": "brace", + "start": 202, + "end": 203, + "value": "]" + }, + { + "type": "comma", + "start": 203, + "end": 204, + "value": "," + }, + { + "type": "whitespace", + "start": 204, + "end": 205, + "value": " " + }, + { + "type": "number", + "start": 205, + "end": 207, + "value": "20" + }, + { + "type": "brace", + "start": 207, + "end": 208, + "value": ")" + }, + { + "type": "whitespace", + "start": 208, + "end": 211, + "value": "\n " + }, + { + "type": "operator", + "start": 211, + "end": 213, + "value": "|>" + }, + { + "type": "whitespace", + "start": 213, + "end": 214, + "value": " " + }, + { + "type": "word", + "start": 214, + "end": 219, + "value": "close" + }, + { + "type": "brace", + "start": 219, + "end": 220, + "value": "(" + }, + { + "type": "operator", + "start": 220, + "end": 221, + "value": "%" + }, + { + "type": "brace", + "start": 221, + "end": 222, + "value": ")" + }, + { + "type": "whitespace", + "start": 222, + "end": 225, + "value": "\n " + }, + { + "type": "operator", + "start": 225, + "end": 227, + "value": "|>" + }, + { + "type": "whitespace", + "start": 227, + "end": 228, + "value": " " + }, + { + "type": "word", + "start": 228, + "end": 235, + "value": "extrude" + }, + { + "type": "brace", + "start": 235, + "end": 236, + "value": "(" + }, + { + "type": "number", + "start": 236, + "end": 238, + "value": "20" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "operator", + "start": 240, + "end": 241, + "value": "%" + }, + { + "type": "brace", + "start": 241, + "end": 242, + "value": ")" + }, + { + "type": "whitespace", + "start": 242, + "end": 244, + "value": "\n\n" + }, + { + "type": "word", + "start": 244, + "end": 251, + "value": "part002" + }, + { + "type": "whitespace", + "start": 251, + "end": 252, + "value": " " + }, + { + "type": "operator", + "start": 252, + "end": 253, + "value": "=" + }, + { + "type": "whitespace", + "start": 253, + "end": 254, + "value": " " + }, + { + "type": "word", + "start": 254, + "end": 267, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 267, + "end": 268, + "value": "(" + }, + { + "type": "word", + "start": 268, + "end": 275, + "value": "part001" + }, + { + "type": "comma", + "start": 275, + "end": 276, + "value": "," + }, + { + "type": "whitespace", + "start": 276, + "end": 277, + "value": " " + }, + { + "type": "string", + "start": 277, + "end": 282, + "value": "\"END\"" + }, + { + "type": "brace", + "start": 282, + "end": 283, + "value": ")" + }, + { + "type": "whitespace", + "start": 283, + "end": 286, + "value": "\n " + }, + { + "type": "operator", + "start": 286, + "end": 288, + "value": "|>" + }, + { + "type": "whitespace", + "start": 288, + "end": 289, + "value": " " + }, + { + "type": "word", + "start": 289, + "end": 303, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 303, + "end": 304, + "value": "(" + }, + { + "type": "brace", + "start": 304, + "end": 305, + "value": "[" + }, + { + "type": "number", + "start": 305, + "end": 306, + "value": "0" + }, + { + "type": "comma", + "start": 306, + "end": 307, + "value": "," + }, + { + "type": "whitespace", + "start": 307, + "end": 308, + "value": " " + }, + { + "type": "number", + "start": 308, + "end": 309, + "value": "0" + }, + { + "type": "brace", + "start": 309, + "end": 310, + "value": "]" + }, + { + "type": "comma", + "start": 310, + "end": 311, + "value": "," + }, + { + "type": "whitespace", + "start": 311, + "end": 312, + "value": " " + }, + { + "type": "operator", + "start": 312, + "end": 313, + "value": "%" + }, + { + "type": "brace", + "start": 313, + "end": 314, + "value": ")" + }, + { + "type": "whitespace", + "start": 314, + "end": 317, + "value": "\n " + }, + { + "type": "operator", + "start": 317, + "end": 319, + "value": "|>" + }, + { + "type": "whitespace", + "start": 319, + "end": 320, + "value": " " + }, + { + "type": "word", + "start": 320, + "end": 324, + "value": "line" + }, + { + "type": "brace", + "start": 324, + "end": 325, + "value": "(" + }, + { + "type": "brace", + "start": 325, + "end": 326, + "value": "[" + }, + { + "type": "number", + "start": 326, + "end": 327, + "value": "0" + }, + { + "type": "comma", + "start": 327, + "end": 328, + "value": "," + }, + { + "type": "whitespace", + "start": 328, + "end": 329, + "value": " " + }, + { + "type": "number", + "start": 329, + "end": 331, + "value": "10" + }, + { + "type": "brace", + "start": 331, + "end": 332, + "value": "]" + }, + { + "type": "comma", + "start": 332, + "end": 333, + "value": "," + }, + { + "type": "whitespace", + "start": 333, + "end": 334, + "value": " " + }, + { + "type": "operator", + "start": 334, + "end": 335, + "value": "%" + }, + { + "type": "brace", + "start": 335, + "end": 336, + "value": ")" + }, + { + "type": "whitespace", + "start": 336, + "end": 339, + "value": "\n " + }, + { + "type": "operator", + "start": 339, + "end": 341, + "value": "|>" + }, + { + "type": "whitespace", + "start": 341, + "end": 342, + "value": " " + }, + { + "type": "word", + "start": 342, + "end": 346, + "value": "line" + }, + { + "type": "brace", + "start": 346, + "end": 347, + "value": "(" + }, + { + "type": "brace", + "start": 347, + "end": 348, + "value": "[" + }, + { + "type": "number", + "start": 348, + "end": 350, + "value": "10" + }, + { + "type": "comma", + "start": 350, + "end": 351, + "value": "," + }, + { + "type": "whitespace", + "start": 351, + "end": 352, + "value": " " + }, + { + "type": "number", + "start": 352, + "end": 353, + "value": "0" + }, + { + "type": "brace", + "start": 353, + "end": 354, + "value": "]" + }, + { + "type": "comma", + "start": 354, + "end": 355, + "value": "," + }, + { + "type": "whitespace", + "start": 355, + "end": 356, + "value": " " + }, + { + "type": "operator", + "start": 356, + "end": 357, + "value": "%" + }, + { + "type": "brace", + "start": 357, + "end": 358, + "value": ")" + }, + { + "type": "whitespace", + "start": 358, + "end": 361, + "value": "\n " + }, + { + "type": "operator", + "start": 361, + "end": 363, + "value": "|>" + }, + { + "type": "whitespace", + "start": 363, + "end": 364, + "value": " " + }, + { + "type": "word", + "start": 364, + "end": 368, + "value": "line" + }, + { + "type": "brace", + "start": 368, + "end": 369, + "value": "(" + }, + { + "type": "brace", + "start": 369, + "end": 370, + "value": "[" + }, + { + "type": "number", + "start": 370, + "end": 371, + "value": "0" + }, + { + "type": "comma", + "start": 371, + "end": 372, + "value": "," + }, + { + "type": "whitespace", + "start": 372, + "end": 373, + "value": " " + }, + { + "type": "operator", + "start": 373, + "end": 374, + "value": "-" + }, + { + "type": "number", + "start": 374, + "end": 376, + "value": "10" + }, + { + "type": "brace", + "start": 376, + "end": 377, + "value": "]" + }, + { + "type": "comma", + "start": 377, + "end": 378, + "value": "," + }, + { + "type": "whitespace", + "start": 378, + "end": 379, + "value": " " + }, + { + "type": "operator", + "start": 379, + "end": 380, + "value": "%" + }, + { + "type": "brace", + "start": 380, + "end": 381, + "value": ")" + }, + { + "type": "whitespace", + "start": 381, + "end": 384, + "value": "\n " + }, + { + "type": "operator", + "start": 384, + "end": 386, + "value": "|>" + }, + { + "type": "whitespace", + "start": 386, + "end": 387, + "value": " " + }, + { + "type": "word", + "start": 387, + "end": 392, + "value": "close" + }, + { + "type": "brace", + "start": 392, + "end": 393, + "value": "(" + }, + { + "type": "operator", + "start": 393, + "end": 394, + "value": "%" + }, + { + "type": "brace", + "start": 394, + "end": 395, + "value": ")" + }, + { + "type": "whitespace", + "start": 395, + "end": 398, + "value": "\n " + }, + { + "type": "operator", + "start": 398, + "end": 400, + "value": "|>" + }, + { + "type": "whitespace", + "start": 400, + "end": 401, + "value": " " + }, + { + "type": "word", + "start": 401, + "end": 408, + "value": "extrude" + }, + { + "type": "brace", + "start": 408, + "end": 409, + "value": "(" + }, + { + "type": "number", + "start": 409, + "end": 410, + "value": "5" + }, + { + "type": "comma", + "start": 410, + "end": 411, + "value": "," + }, + { + "type": "whitespace", + "start": 411, + "end": 412, + "value": " " + }, + { + "type": "operator", + "start": 412, + "end": 413, + "value": "%" + }, + { + "type": "brace", + "start": 413, + "end": 414, + "value": ")" + }, + { + "type": "whitespace", + "start": 414, + "end": 415, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/ast.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/ast.snap new file mode 100644 index 000000000..3629ded6e --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/ast.snap @@ -0,0 +1,755 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch_on_face_end_negative_extrude.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 181, + "id": { + "end": 7, + "name": "cube", + "start": 3, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 3, + "type": "VariableDeclarator" + } + ], + "end": 181, + "kind": "fn", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 242, + "id": { + "end": 189, + "name": "part001", + "start": 182, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "elements": [ + { + "end": 199, + "raw": "0", + "start": 198, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 202, + "raw": "0", + "start": 201, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 203, + "start": 197, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 207, + "raw": "20", + "start": 205, + "type": "Literal", + "type": "Literal", + "value": 20 + } + ], + "callee": { + "end": 196, + "name": "cube", + "start": 192, + "type": "Identifier" + }, + "end": 208, + "optional": false, + "start": 192, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 221, + "start": 220, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 219, + "name": "close", + "start": 214, + "type": "Identifier" + }, + "end": 222, + "optional": false, + "start": 214, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 238, + "raw": "20", + "start": 236, + "type": "Literal", + "type": "Literal", + "value": 20 + }, + { + "end": 241, + "start": 240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 235, + "name": "extrude", + "start": 228, + "type": "Identifier" + }, + "end": 242, + "optional": false, + "start": 228, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 242, + "start": 192, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 182, + "type": "VariableDeclarator" + } + ], + "end": 242, + "kind": "const", + "start": 182, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 415, + "id": { + "end": 251, + "name": "part002", + "start": 244, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 275, + "name": "part001", + "start": 268, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 282, + "raw": "\"END\"", + "start": 277, + "type": "Literal", + "type": "Literal", + "value": "END" + } + ], + "callee": { + "end": 267, + "name": "startSketchOn", + "start": 254, + "type": "Identifier" + }, + "end": 283, + "optional": false, + "start": 254, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 306, + "raw": "0", + "start": 305, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 309, + "raw": "0", + "start": 308, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 310, + "start": 304, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 313, + "start": 312, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 303, + "name": "startProfileAt", + "start": 289, + "type": "Identifier" + }, + "end": 314, + "optional": false, + "start": 289, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 327, + "raw": "0", + "start": 326, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 331, + "raw": "10", + "start": 329, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 332, + "start": 325, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 335, + "start": 334, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 324, + "name": "line", + "start": 320, + "type": "Identifier" + }, + "end": 336, + "optional": false, + "start": 320, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 350, + "raw": "10", + "start": 348, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 353, + "raw": "0", + "start": 352, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 354, + "start": 347, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 357, + "start": 356, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 346, + "name": "line", + "start": 342, + "type": "Identifier" + }, + "end": 358, + "optional": false, + "start": 342, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 371, + "raw": "0", + "start": 370, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 376, + "raw": "10", + "start": 374, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 376, + "operator": "-", + "start": 373, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 377, + "start": 369, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 380, + "start": 379, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 368, + "name": "line", + "start": 364, + "type": "Identifier" + }, + "end": 381, + "optional": false, + "start": 364, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 394, + "start": 393, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 392, + "name": "close", + "start": 387, + "type": "Identifier" + }, + "end": 395, + "optional": false, + "start": 387, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "argument": { + "end": 411, + "raw": "5", + "start": 410, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + "end": 411, + "operator": "-", + "start": 409, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + { + "end": 414, + "start": 413, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 408, + "name": "extrude", + "start": 401, + "type": "Identifier" + }, + "end": 415, + "optional": false, + "start": 401, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 415, + "start": 254, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 244, + "type": "VariableDeclarator" + } + ], + "end": 415, + "kind": "const", + "start": 244, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 416, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 244, + "start": 242, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/input.kcl b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/input.kcl new file mode 100644 index 000000000..4394e4e8f --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/input.kcl @@ -0,0 +1,20 @@ +fn cube = (pos, scale) => { + sg = startSketchOn('XY') + |> startProfileAt(pos, %) + |> line([0, scale], %) + |> line([scale, 0], %) + |> line([0, -scale], %) + + return sg +} +part001 = cube([0, 0], 20) + |> close(%) + |> extrude(20, %) + +part002 = startSketchOn(part001, "END") + |> startProfileAt([0, 0], %) + |> line([0, 10], %) + |> line([10, 0], %) + |> line([0, -10], %) + |> close(%) + |> extrude(-5, %) 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 new file mode 100644 index 000000000..dd882565d --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap @@ -0,0 +1,969 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch_on_face_end_negative_extrude.kcl +snapshot_kind: text +--- +{ + "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": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 181, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "part002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 320, + 336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 342, + 358, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 364, + 381, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 387, + 395, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 320, + 336, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 342, + 358, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 364, + 381, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 387, + 395, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 254, + 283, + 0 + ] + } + ] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 289, + 314, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 289, + 314, + 0 + ] + } + ] + }, + "height": -5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 289, + 314, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/rendered_model.png b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/rendered_model.png new file mode 100644 index 000000000..847922f00 Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/tokens.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/tokens.snap new file mode 100644 index 000000000..3581e6be6 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/tokens.snap @@ -0,0 +1,1287 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch_on_face_end_negative_extrude.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 2, + "value": "fn" + }, + { + "type": "whitespace", + "start": 2, + "end": 3, + "value": " " + }, + { + "type": "word", + "start": 3, + "end": 7, + "value": "cube" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "brace", + "start": 10, + "end": 11, + "value": "(" + }, + { + "type": "word", + "start": 11, + "end": 14, + "value": "pos" + }, + { + "type": "comma", + "start": 14, + "end": 15, + "value": "," + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "word", + "start": 16, + "end": 21, + "value": "scale" + }, + { + "type": "brace", + "start": 21, + "end": 22, + "value": ")" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": " " + }, + { + "type": "operator", + "start": 23, + "end": 25, + "value": "=>" + }, + { + "type": "whitespace", + "start": 25, + "end": 26, + "value": " " + }, + { + "type": "brace", + "start": 26, + "end": 27, + "value": "{" + }, + { + "type": "whitespace", + "start": 27, + "end": 30, + "value": "\n " + }, + { + "type": "word", + "start": 30, + "end": 32, + "value": "sg" + }, + { + "type": "whitespace", + "start": 32, + "end": 33, + "value": " " + }, + { + "type": "operator", + "start": 33, + "end": 34, + "value": "=" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 48, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 48, + "end": 49, + "value": "(" + }, + { + "type": "string", + "start": 49, + "end": 53, + "value": "'XY'" + }, + { + "type": "brace", + "start": 53, + "end": 54, + "value": ")" + }, + { + "type": "whitespace", + "start": 54, + "end": 59, + "value": "\n " + }, + { + "type": "operator", + "start": 59, + "end": 61, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61, + "end": 62, + "value": " " + }, + { + "type": "word", + "start": 62, + "end": 76, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 76, + "end": 77, + "value": "(" + }, + { + "type": "word", + "start": 77, + "end": 80, + "value": "pos" + }, + { + "type": "comma", + "start": 80, + "end": 81, + "value": "," + }, + { + "type": "whitespace", + "start": 81, + "end": 82, + "value": " " + }, + { + "type": "operator", + "start": 82, + "end": 83, + "value": "%" + }, + { + "type": "brace", + "start": 83, + "end": 84, + "value": ")" + }, + { + "type": "whitespace", + "start": 84, + "end": 89, + "value": "\n " + }, + { + "type": "operator", + "start": 89, + "end": 91, + "value": "|>" + }, + { + "type": "whitespace", + "start": 91, + "end": 92, + "value": " " + }, + { + "type": "word", + "start": 92, + "end": 96, + "value": "line" + }, + { + "type": "brace", + "start": 96, + "end": 97, + "value": "(" + }, + { + "type": "brace", + "start": 97, + "end": 98, + "value": "[" + }, + { + "type": "number", + "start": 98, + "end": 99, + "value": "0" + }, + { + "type": "comma", + "start": 99, + "end": 100, + "value": "," + }, + { + "type": "whitespace", + "start": 100, + "end": 101, + "value": " " + }, + { + "type": "word", + "start": 101, + "end": 106, + "value": "scale" + }, + { + "type": "brace", + "start": 106, + "end": 107, + "value": "]" + }, + { + "type": "comma", + "start": 107, + "end": 108, + "value": "," + }, + { + "type": "whitespace", + "start": 108, + "end": 109, + "value": " " + }, + { + "type": "operator", + "start": 109, + "end": 110, + "value": "%" + }, + { + "type": "brace", + "start": 110, + "end": 111, + "value": ")" + }, + { + "type": "whitespace", + "start": 111, + "end": 116, + "value": "\n " + }, + { + "type": "operator", + "start": 116, + "end": 118, + "value": "|>" + }, + { + "type": "whitespace", + "start": 118, + "end": 119, + "value": " " + }, + { + "type": "word", + "start": 119, + "end": 123, + "value": "line" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "(" + }, + { + "type": "brace", + "start": 124, + "end": 125, + "value": "[" + }, + { + "type": "word", + "start": 125, + "end": 130, + "value": "scale" + }, + { + "type": "comma", + "start": 130, + "end": 131, + "value": "," + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "number", + "start": 132, + "end": 133, + "value": "0" + }, + { + "type": "brace", + "start": 133, + "end": 134, + "value": "]" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "operator", + "start": 136, + "end": 137, + "value": "%" + }, + { + "type": "brace", + "start": 137, + "end": 138, + "value": ")" + }, + { + "type": "whitespace", + "start": 138, + "end": 143, + "value": "\n " + }, + { + "type": "operator", + "start": 143, + "end": 145, + "value": "|>" + }, + { + "type": "whitespace", + "start": 145, + "end": 146, + "value": " " + }, + { + "type": "word", + "start": 146, + "end": 150, + "value": "line" + }, + { + "type": "brace", + "start": 150, + "end": 151, + "value": "(" + }, + { + "type": "brace", + "start": 151, + "end": 152, + "value": "[" + }, + { + "type": "number", + "start": 152, + "end": 153, + "value": "0" + }, + { + "type": "comma", + "start": 153, + "end": 154, + "value": "," + }, + { + "type": "whitespace", + "start": 154, + "end": 155, + "value": " " + }, + { + "type": "operator", + "start": 155, + "end": 156, + "value": "-" + }, + { + "type": "word", + "start": 156, + "end": 161, + "value": "scale" + }, + { + "type": "brace", + "start": 161, + "end": 162, + "value": "]" + }, + { + "type": "comma", + "start": 162, + "end": 163, + "value": "," + }, + { + "type": "whitespace", + "start": 163, + "end": 164, + "value": " " + }, + { + "type": "operator", + "start": 164, + "end": 165, + "value": "%" + }, + { + "type": "brace", + "start": 165, + "end": 166, + "value": ")" + }, + { + "type": "whitespace", + "start": 166, + "end": 170, + "value": "\n\n " + }, + { + "type": "keyword", + "start": 170, + "end": 176, + "value": "return" + }, + { + "type": "whitespace", + "start": 176, + "end": 177, + "value": " " + }, + { + "type": "word", + "start": 177, + "end": 179, + "value": "sg" + }, + { + "type": "whitespace", + "start": 179, + "end": 180, + "value": "\n" + }, + { + "type": "brace", + "start": 180, + "end": 181, + "value": "}" + }, + { + "type": "whitespace", + "start": 181, + "end": 182, + "value": "\n" + }, + { + "type": "word", + "start": 182, + "end": 189, + "value": "part001" + }, + { + "type": "whitespace", + "start": 189, + "end": 190, + "value": " " + }, + { + "type": "operator", + "start": 190, + "end": 191, + "value": "=" + }, + { + "type": "whitespace", + "start": 191, + "end": 192, + "value": " " + }, + { + "type": "word", + "start": 192, + "end": 196, + "value": "cube" + }, + { + "type": "brace", + "start": 196, + "end": 197, + "value": "(" + }, + { + "type": "brace", + "start": 197, + "end": 198, + "value": "[" + }, + { + "type": "number", + "start": 198, + "end": 199, + "value": "0" + }, + { + "type": "comma", + "start": 199, + "end": 200, + "value": "," + }, + { + "type": "whitespace", + "start": 200, + "end": 201, + "value": " " + }, + { + "type": "number", + "start": 201, + "end": 202, + "value": "0" + }, + { + "type": "brace", + "start": 202, + "end": 203, + "value": "]" + }, + { + "type": "comma", + "start": 203, + "end": 204, + "value": "," + }, + { + "type": "whitespace", + "start": 204, + "end": 205, + "value": " " + }, + { + "type": "number", + "start": 205, + "end": 207, + "value": "20" + }, + { + "type": "brace", + "start": 207, + "end": 208, + "value": ")" + }, + { + "type": "whitespace", + "start": 208, + "end": 211, + "value": "\n " + }, + { + "type": "operator", + "start": 211, + "end": 213, + "value": "|>" + }, + { + "type": "whitespace", + "start": 213, + "end": 214, + "value": " " + }, + { + "type": "word", + "start": 214, + "end": 219, + "value": "close" + }, + { + "type": "brace", + "start": 219, + "end": 220, + "value": "(" + }, + { + "type": "operator", + "start": 220, + "end": 221, + "value": "%" + }, + { + "type": "brace", + "start": 221, + "end": 222, + "value": ")" + }, + { + "type": "whitespace", + "start": 222, + "end": 225, + "value": "\n " + }, + { + "type": "operator", + "start": 225, + "end": 227, + "value": "|>" + }, + { + "type": "whitespace", + "start": 227, + "end": 228, + "value": " " + }, + { + "type": "word", + "start": 228, + "end": 235, + "value": "extrude" + }, + { + "type": "brace", + "start": 235, + "end": 236, + "value": "(" + }, + { + "type": "number", + "start": 236, + "end": 238, + "value": "20" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "operator", + "start": 240, + "end": 241, + "value": "%" + }, + { + "type": "brace", + "start": 241, + "end": 242, + "value": ")" + }, + { + "type": "whitespace", + "start": 242, + "end": 244, + "value": "\n\n" + }, + { + "type": "word", + "start": 244, + "end": 251, + "value": "part002" + }, + { + "type": "whitespace", + "start": 251, + "end": 252, + "value": " " + }, + { + "type": "operator", + "start": 252, + "end": 253, + "value": "=" + }, + { + "type": "whitespace", + "start": 253, + "end": 254, + "value": " " + }, + { + "type": "word", + "start": 254, + "end": 267, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 267, + "end": 268, + "value": "(" + }, + { + "type": "word", + "start": 268, + "end": 275, + "value": "part001" + }, + { + "type": "comma", + "start": 275, + "end": 276, + "value": "," + }, + { + "type": "whitespace", + "start": 276, + "end": 277, + "value": " " + }, + { + "type": "string", + "start": 277, + "end": 282, + "value": "\"END\"" + }, + { + "type": "brace", + "start": 282, + "end": 283, + "value": ")" + }, + { + "type": "whitespace", + "start": 283, + "end": 286, + "value": "\n " + }, + { + "type": "operator", + "start": 286, + "end": 288, + "value": "|>" + }, + { + "type": "whitespace", + "start": 288, + "end": 289, + "value": " " + }, + { + "type": "word", + "start": 289, + "end": 303, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 303, + "end": 304, + "value": "(" + }, + { + "type": "brace", + "start": 304, + "end": 305, + "value": "[" + }, + { + "type": "number", + "start": 305, + "end": 306, + "value": "0" + }, + { + "type": "comma", + "start": 306, + "end": 307, + "value": "," + }, + { + "type": "whitespace", + "start": 307, + "end": 308, + "value": " " + }, + { + "type": "number", + "start": 308, + "end": 309, + "value": "0" + }, + { + "type": "brace", + "start": 309, + "end": 310, + "value": "]" + }, + { + "type": "comma", + "start": 310, + "end": 311, + "value": "," + }, + { + "type": "whitespace", + "start": 311, + "end": 312, + "value": " " + }, + { + "type": "operator", + "start": 312, + "end": 313, + "value": "%" + }, + { + "type": "brace", + "start": 313, + "end": 314, + "value": ")" + }, + { + "type": "whitespace", + "start": 314, + "end": 317, + "value": "\n " + }, + { + "type": "operator", + "start": 317, + "end": 319, + "value": "|>" + }, + { + "type": "whitespace", + "start": 319, + "end": 320, + "value": " " + }, + { + "type": "word", + "start": 320, + "end": 324, + "value": "line" + }, + { + "type": "brace", + "start": 324, + "end": 325, + "value": "(" + }, + { + "type": "brace", + "start": 325, + "end": 326, + "value": "[" + }, + { + "type": "number", + "start": 326, + "end": 327, + "value": "0" + }, + { + "type": "comma", + "start": 327, + "end": 328, + "value": "," + }, + { + "type": "whitespace", + "start": 328, + "end": 329, + "value": " " + }, + { + "type": "number", + "start": 329, + "end": 331, + "value": "10" + }, + { + "type": "brace", + "start": 331, + "end": 332, + "value": "]" + }, + { + "type": "comma", + "start": 332, + "end": 333, + "value": "," + }, + { + "type": "whitespace", + "start": 333, + "end": 334, + "value": " " + }, + { + "type": "operator", + "start": 334, + "end": 335, + "value": "%" + }, + { + "type": "brace", + "start": 335, + "end": 336, + "value": ")" + }, + { + "type": "whitespace", + "start": 336, + "end": 339, + "value": "\n " + }, + { + "type": "operator", + "start": 339, + "end": 341, + "value": "|>" + }, + { + "type": "whitespace", + "start": 341, + "end": 342, + "value": " " + }, + { + "type": "word", + "start": 342, + "end": 346, + "value": "line" + }, + { + "type": "brace", + "start": 346, + "end": 347, + "value": "(" + }, + { + "type": "brace", + "start": 347, + "end": 348, + "value": "[" + }, + { + "type": "number", + "start": 348, + "end": 350, + "value": "10" + }, + { + "type": "comma", + "start": 350, + "end": 351, + "value": "," + }, + { + "type": "whitespace", + "start": 351, + "end": 352, + "value": " " + }, + { + "type": "number", + "start": 352, + "end": 353, + "value": "0" + }, + { + "type": "brace", + "start": 353, + "end": 354, + "value": "]" + }, + { + "type": "comma", + "start": 354, + "end": 355, + "value": "," + }, + { + "type": "whitespace", + "start": 355, + "end": 356, + "value": " " + }, + { + "type": "operator", + "start": 356, + "end": 357, + "value": "%" + }, + { + "type": "brace", + "start": 357, + "end": 358, + "value": ")" + }, + { + "type": "whitespace", + "start": 358, + "end": 361, + "value": "\n " + }, + { + "type": "operator", + "start": 361, + "end": 363, + "value": "|>" + }, + { + "type": "whitespace", + "start": 363, + "end": 364, + "value": " " + }, + { + "type": "word", + "start": 364, + "end": 368, + "value": "line" + }, + { + "type": "brace", + "start": 368, + "end": 369, + "value": "(" + }, + { + "type": "brace", + "start": 369, + "end": 370, + "value": "[" + }, + { + "type": "number", + "start": 370, + "end": 371, + "value": "0" + }, + { + "type": "comma", + "start": 371, + "end": 372, + "value": "," + }, + { + "type": "whitespace", + "start": 372, + "end": 373, + "value": " " + }, + { + "type": "operator", + "start": 373, + "end": 374, + "value": "-" + }, + { + "type": "number", + "start": 374, + "end": 376, + "value": "10" + }, + { + "type": "brace", + "start": 376, + "end": 377, + "value": "]" + }, + { + "type": "comma", + "start": 377, + "end": 378, + "value": "," + }, + { + "type": "whitespace", + "start": 378, + "end": 379, + "value": " " + }, + { + "type": "operator", + "start": 379, + "end": 380, + "value": "%" + }, + { + "type": "brace", + "start": 380, + "end": 381, + "value": ")" + }, + { + "type": "whitespace", + "start": 381, + "end": 384, + "value": "\n " + }, + { + "type": "operator", + "start": 384, + "end": 386, + "value": "|>" + }, + { + "type": "whitespace", + "start": 386, + "end": 387, + "value": " " + }, + { + "type": "word", + "start": 387, + "end": 392, + "value": "close" + }, + { + "type": "brace", + "start": 392, + "end": 393, + "value": "(" + }, + { + "type": "operator", + "start": 393, + "end": 394, + "value": "%" + }, + { + "type": "brace", + "start": 394, + "end": 395, + "value": ")" + }, + { + "type": "whitespace", + "start": 395, + "end": 398, + "value": "\n " + }, + { + "type": "operator", + "start": 398, + "end": 400, + "value": "|>" + }, + { + "type": "whitespace", + "start": 400, + "end": 401, + "value": " " + }, + { + "type": "word", + "start": 401, + "end": 408, + "value": "extrude" + }, + { + "type": "brace", + "start": 408, + "end": 409, + "value": "(" + }, + { + "type": "operator", + "start": 409, + "end": 410, + "value": "-" + }, + { + "type": "number", + "start": 410, + "end": 411, + "value": "5" + }, + { + "type": "comma", + "start": 411, + "end": 412, + "value": "," + }, + { + "type": "whitespace", + "start": 412, + "end": 413, + "value": " " + }, + { + "type": "operator", + "start": 413, + "end": 414, + "value": "%" + }, + { + "type": "brace", + "start": 414, + "end": 415, + "value": ")" + }, + { + "type": "whitespace", + "start": 415, + "end": 416, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/ast.snap b/src/wasm-lib/kcl/tests/sketch_on_face_start/ast.snap new file mode 100644 index 000000000..d8241f30b --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/ast.snap @@ -0,0 +1,748 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing sketch_on_face_start.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 181, + "id": { + "end": 7, + "name": "cube", + "start": 3, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 3, + "type": "VariableDeclarator" + } + ], + "end": 181, + "kind": "fn", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 242, + "id": { + "end": 189, + "name": "part001", + "start": 182, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "elements": [ + { + "end": 199, + "raw": "0", + "start": 198, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 202, + "raw": "0", + "start": 201, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 203, + "start": 197, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 207, + "raw": "20", + "start": 205, + "type": "Literal", + "type": "Literal", + "value": 20 + } + ], + "callee": { + "end": 196, + "name": "cube", + "start": 192, + "type": "Identifier" + }, + "end": 208, + "optional": false, + "start": 192, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 221, + "start": 220, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 219, + "name": "close", + "start": 214, + "type": "Identifier" + }, + "end": 222, + "optional": false, + "start": 214, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 238, + "raw": "20", + "start": 236, + "type": "Literal", + "type": "Literal", + "value": 20 + }, + { + "end": 241, + "start": 240, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 235, + "name": "extrude", + "start": 228, + "type": "Identifier" + }, + "end": 242, + "optional": false, + "start": 228, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 242, + "start": 192, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 182, + "type": "VariableDeclarator" + } + ], + "end": 242, + "kind": "const", + "start": 182, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 416, + "id": { + "end": 251, + "name": "part002", + "start": 244, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 275, + "name": "part001", + "start": 268, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 284, + "raw": "\"start\"", + "start": 277, + "type": "Literal", + "type": "Literal", + "value": "start" + } + ], + "callee": { + "end": 267, + "name": "startSketchOn", + "start": 254, + "type": "Identifier" + }, + "end": 285, + "optional": false, + "start": 254, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 308, + "raw": "0", + "start": 307, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 311, + "raw": "0", + "start": 310, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 312, + "start": 306, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 315, + "start": 314, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 305, + "name": "startProfileAt", + "start": 291, + "type": "Identifier" + }, + "end": 316, + "optional": false, + "start": 291, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 329, + "raw": "0", + "start": 328, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 333, + "raw": "10", + "start": 331, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 334, + "start": 327, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 337, + "start": 336, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 326, + "name": "line", + "start": 322, + "type": "Identifier" + }, + "end": 338, + "optional": false, + "start": 322, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 352, + "raw": "10", + "start": 350, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 355, + "raw": "0", + "start": 354, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 356, + "start": 349, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 359, + "start": 358, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 348, + "name": "line", + "start": 344, + "type": "Identifier" + }, + "end": 360, + "optional": false, + "start": 344, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 373, + "raw": "0", + "start": 372, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 378, + "raw": "10", + "start": 376, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + "end": 378, + "operator": "-", + "start": 375, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 379, + "start": 371, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 382, + "start": 381, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 370, + "name": "line", + "start": 366, + "type": "Identifier" + }, + "end": 383, + "optional": false, + "start": 366, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 396, + "start": 395, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 394, + "name": "close", + "start": 389, + "type": "Identifier" + }, + "end": 397, + "optional": false, + "start": 389, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 412, + "raw": "5", + "start": 411, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + { + "end": 415, + "start": 414, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 410, + "name": "extrude", + "start": 403, + "type": "Identifier" + }, + "end": 416, + "optional": false, + "start": 403, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 416, + "start": 254, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 244, + "type": "VariableDeclarator" + } + ], + "end": 416, + "kind": "const", + "start": 244, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 417, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "end": 244, + "start": 242, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/input.kcl b/src/wasm-lib/kcl/tests/sketch_on_face_start/input.kcl new file mode 100644 index 000000000..b757465f9 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/input.kcl @@ -0,0 +1,20 @@ +fn cube = (pos, scale) => { + sg = startSketchOn('XY') + |> startProfileAt(pos, %) + |> line([0, scale], %) + |> line([scale, 0], %) + |> line([0, -scale], %) + + return sg +} +part001 = cube([0, 0], 20) + |> close(%) + |> extrude(20, %) + +part002 = startSketchOn(part001, "start") + |> startProfileAt([0, 0], %) + |> line([0, 10], %) + |> line([10, 0], %) + |> line([0, -10], %) + |> close(%) + |> extrude(5, %) 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 new file mode 100644 index 000000000..1cf8faa63 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap @@ -0,0 +1,969 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing sketch_on_face_start.kcl +snapshot_kind: text +--- +{ + "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": [ + { + "declarations": [ + { + "end": 166, + "id": { + "end": 32, + "name": "sg", + "start": 30, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 53, + "raw": "'XY'", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 48, + "name": "startSketchOn", + "start": 35, + "type": "Identifier" + }, + "end": 54, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 80, + "name": "pos", + "start": 77, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 83, + "start": 82, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 76, + "name": "startProfileAt", + "start": 62, + "type": "Identifier" + }, + "end": 84, + "optional": false, + "start": 62, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 99, + "raw": "0", + "start": 98, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 110, + "start": 109, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 96, + "name": "line", + "start": 92, + "type": "Identifier" + }, + "end": 111, + "optional": false, + "start": 92, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 130, + "name": "scale", + "start": 125, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 133, + "raw": "0", + "start": 132, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 134, + "start": 124, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 137, + "start": 136, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "line", + "start": 119, + "type": "Identifier" + }, + "end": 138, + "optional": false, + "start": 119, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "argument": { + "end": 161, + "name": "scale", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 162, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 165, + "start": 164, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 166, + "optional": false, + "start": 146, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 166, + "start": 35, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 30, + "type": "VariableDeclarator" + } + ], + "end": 166, + "kind": "const", + "start": 30, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 179, + "name": "sg", + "start": 177, + "type": "Identifier", + "type": "Identifier" + }, + "end": 179, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 181, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 26 + }, + "end": 181, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "pos", + "start": 11, + "type": "Identifier" + }, + "optional": false + }, + { + "type": "Parameter", + "identifier": { + "end": 21, + "name": "scale", + "start": 16, + "type": "Identifier" + }, + "optional": false + } + ], + "start": 10, + "type": "FunctionExpression" + }, + "memory": { + "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": [] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null + }, + "__meta": [ + { + "sourceRange": [ + 10, + 181, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "part002": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 322, + 338, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 344, + 360, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 366, + 383, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 389, + 397, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 322, + 338, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 344, + 360, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 366, + 383, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 389, + 397, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[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]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 111, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 119, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 166, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 214, + 222, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62, + 84, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 62, + 84, + 0 + ] + } + ] + }, + "__meta": [ + { + "sourceRange": [ + 254, + 285, + 0 + ] + } + ] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 291, + 316, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 291, + 316, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 291, + 316, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/rendered_model.png b/src/wasm-lib/kcl/tests/sketch_on_face_start/rendered_model.png new file mode 100644 index 000000000..1648fdbe5 Binary files /dev/null and b/src/wasm-lib/kcl/tests/sketch_on_face_start/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/tokens.snap b/src/wasm-lib/kcl/tests/sketch_on_face_start/tokens.snap new file mode 100644 index 000000000..428e9bca3 --- /dev/null +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/tokens.snap @@ -0,0 +1,1281 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing sketch_on_face_start.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "keyword", + "start": 0, + "end": 2, + "value": "fn" + }, + { + "type": "whitespace", + "start": 2, + "end": 3, + "value": " " + }, + { + "type": "word", + "start": 3, + "end": 7, + "value": "cube" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "brace", + "start": 10, + "end": 11, + "value": "(" + }, + { + "type": "word", + "start": 11, + "end": 14, + "value": "pos" + }, + { + "type": "comma", + "start": 14, + "end": 15, + "value": "," + }, + { + "type": "whitespace", + "start": 15, + "end": 16, + "value": " " + }, + { + "type": "word", + "start": 16, + "end": 21, + "value": "scale" + }, + { + "type": "brace", + "start": 21, + "end": 22, + "value": ")" + }, + { + "type": "whitespace", + "start": 22, + "end": 23, + "value": " " + }, + { + "type": "operator", + "start": 23, + "end": 25, + "value": "=>" + }, + { + "type": "whitespace", + "start": 25, + "end": 26, + "value": " " + }, + { + "type": "brace", + "start": 26, + "end": 27, + "value": "{" + }, + { + "type": "whitespace", + "start": 27, + "end": 30, + "value": "\n " + }, + { + "type": "word", + "start": 30, + "end": 32, + "value": "sg" + }, + { + "type": "whitespace", + "start": 32, + "end": 33, + "value": " " + }, + { + "type": "operator", + "start": 33, + "end": 34, + "value": "=" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 48, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 48, + "end": 49, + "value": "(" + }, + { + "type": "string", + "start": 49, + "end": 53, + "value": "'XY'" + }, + { + "type": "brace", + "start": 53, + "end": 54, + "value": ")" + }, + { + "type": "whitespace", + "start": 54, + "end": 59, + "value": "\n " + }, + { + "type": "operator", + "start": 59, + "end": 61, + "value": "|>" + }, + { + "type": "whitespace", + "start": 61, + "end": 62, + "value": " " + }, + { + "type": "word", + "start": 62, + "end": 76, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 76, + "end": 77, + "value": "(" + }, + { + "type": "word", + "start": 77, + "end": 80, + "value": "pos" + }, + { + "type": "comma", + "start": 80, + "end": 81, + "value": "," + }, + { + "type": "whitespace", + "start": 81, + "end": 82, + "value": " " + }, + { + "type": "operator", + "start": 82, + "end": 83, + "value": "%" + }, + { + "type": "brace", + "start": 83, + "end": 84, + "value": ")" + }, + { + "type": "whitespace", + "start": 84, + "end": 89, + "value": "\n " + }, + { + "type": "operator", + "start": 89, + "end": 91, + "value": "|>" + }, + { + "type": "whitespace", + "start": 91, + "end": 92, + "value": " " + }, + { + "type": "word", + "start": 92, + "end": 96, + "value": "line" + }, + { + "type": "brace", + "start": 96, + "end": 97, + "value": "(" + }, + { + "type": "brace", + "start": 97, + "end": 98, + "value": "[" + }, + { + "type": "number", + "start": 98, + "end": 99, + "value": "0" + }, + { + "type": "comma", + "start": 99, + "end": 100, + "value": "," + }, + { + "type": "whitespace", + "start": 100, + "end": 101, + "value": " " + }, + { + "type": "word", + "start": 101, + "end": 106, + "value": "scale" + }, + { + "type": "brace", + "start": 106, + "end": 107, + "value": "]" + }, + { + "type": "comma", + "start": 107, + "end": 108, + "value": "," + }, + { + "type": "whitespace", + "start": 108, + "end": 109, + "value": " " + }, + { + "type": "operator", + "start": 109, + "end": 110, + "value": "%" + }, + { + "type": "brace", + "start": 110, + "end": 111, + "value": ")" + }, + { + "type": "whitespace", + "start": 111, + "end": 116, + "value": "\n " + }, + { + "type": "operator", + "start": 116, + "end": 118, + "value": "|>" + }, + { + "type": "whitespace", + "start": 118, + "end": 119, + "value": " " + }, + { + "type": "word", + "start": 119, + "end": 123, + "value": "line" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "(" + }, + { + "type": "brace", + "start": 124, + "end": 125, + "value": "[" + }, + { + "type": "word", + "start": 125, + "end": 130, + "value": "scale" + }, + { + "type": "comma", + "start": 130, + "end": 131, + "value": "," + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "number", + "start": 132, + "end": 133, + "value": "0" + }, + { + "type": "brace", + "start": 133, + "end": 134, + "value": "]" + }, + { + "type": "comma", + "start": 134, + "end": 135, + "value": "," + }, + { + "type": "whitespace", + "start": 135, + "end": 136, + "value": " " + }, + { + "type": "operator", + "start": 136, + "end": 137, + "value": "%" + }, + { + "type": "brace", + "start": 137, + "end": 138, + "value": ")" + }, + { + "type": "whitespace", + "start": 138, + "end": 143, + "value": "\n " + }, + { + "type": "operator", + "start": 143, + "end": 145, + "value": "|>" + }, + { + "type": "whitespace", + "start": 145, + "end": 146, + "value": " " + }, + { + "type": "word", + "start": 146, + "end": 150, + "value": "line" + }, + { + "type": "brace", + "start": 150, + "end": 151, + "value": "(" + }, + { + "type": "brace", + "start": 151, + "end": 152, + "value": "[" + }, + { + "type": "number", + "start": 152, + "end": 153, + "value": "0" + }, + { + "type": "comma", + "start": 153, + "end": 154, + "value": "," + }, + { + "type": "whitespace", + "start": 154, + "end": 155, + "value": " " + }, + { + "type": "operator", + "start": 155, + "end": 156, + "value": "-" + }, + { + "type": "word", + "start": 156, + "end": 161, + "value": "scale" + }, + { + "type": "brace", + "start": 161, + "end": 162, + "value": "]" + }, + { + "type": "comma", + "start": 162, + "end": 163, + "value": "," + }, + { + "type": "whitespace", + "start": 163, + "end": 164, + "value": " " + }, + { + "type": "operator", + "start": 164, + "end": 165, + "value": "%" + }, + { + "type": "brace", + "start": 165, + "end": 166, + "value": ")" + }, + { + "type": "whitespace", + "start": 166, + "end": 170, + "value": "\n\n " + }, + { + "type": "keyword", + "start": 170, + "end": 176, + "value": "return" + }, + { + "type": "whitespace", + "start": 176, + "end": 177, + "value": " " + }, + { + "type": "word", + "start": 177, + "end": 179, + "value": "sg" + }, + { + "type": "whitespace", + "start": 179, + "end": 180, + "value": "\n" + }, + { + "type": "brace", + "start": 180, + "end": 181, + "value": "}" + }, + { + "type": "whitespace", + "start": 181, + "end": 182, + "value": "\n" + }, + { + "type": "word", + "start": 182, + "end": 189, + "value": "part001" + }, + { + "type": "whitespace", + "start": 189, + "end": 190, + "value": " " + }, + { + "type": "operator", + "start": 190, + "end": 191, + "value": "=" + }, + { + "type": "whitespace", + "start": 191, + "end": 192, + "value": " " + }, + { + "type": "word", + "start": 192, + "end": 196, + "value": "cube" + }, + { + "type": "brace", + "start": 196, + "end": 197, + "value": "(" + }, + { + "type": "brace", + "start": 197, + "end": 198, + "value": "[" + }, + { + "type": "number", + "start": 198, + "end": 199, + "value": "0" + }, + { + "type": "comma", + "start": 199, + "end": 200, + "value": "," + }, + { + "type": "whitespace", + "start": 200, + "end": 201, + "value": " " + }, + { + "type": "number", + "start": 201, + "end": 202, + "value": "0" + }, + { + "type": "brace", + "start": 202, + "end": 203, + "value": "]" + }, + { + "type": "comma", + "start": 203, + "end": 204, + "value": "," + }, + { + "type": "whitespace", + "start": 204, + "end": 205, + "value": " " + }, + { + "type": "number", + "start": 205, + "end": 207, + "value": "20" + }, + { + "type": "brace", + "start": 207, + "end": 208, + "value": ")" + }, + { + "type": "whitespace", + "start": 208, + "end": 211, + "value": "\n " + }, + { + "type": "operator", + "start": 211, + "end": 213, + "value": "|>" + }, + { + "type": "whitespace", + "start": 213, + "end": 214, + "value": " " + }, + { + "type": "word", + "start": 214, + "end": 219, + "value": "close" + }, + { + "type": "brace", + "start": 219, + "end": 220, + "value": "(" + }, + { + "type": "operator", + "start": 220, + "end": 221, + "value": "%" + }, + { + "type": "brace", + "start": 221, + "end": 222, + "value": ")" + }, + { + "type": "whitespace", + "start": 222, + "end": 225, + "value": "\n " + }, + { + "type": "operator", + "start": 225, + "end": 227, + "value": "|>" + }, + { + "type": "whitespace", + "start": 227, + "end": 228, + "value": " " + }, + { + "type": "word", + "start": 228, + "end": 235, + "value": "extrude" + }, + { + "type": "brace", + "start": 235, + "end": 236, + "value": "(" + }, + { + "type": "number", + "start": 236, + "end": 238, + "value": "20" + }, + { + "type": "comma", + "start": 238, + "end": 239, + "value": "," + }, + { + "type": "whitespace", + "start": 239, + "end": 240, + "value": " " + }, + { + "type": "operator", + "start": 240, + "end": 241, + "value": "%" + }, + { + "type": "brace", + "start": 241, + "end": 242, + "value": ")" + }, + { + "type": "whitespace", + "start": 242, + "end": 244, + "value": "\n\n" + }, + { + "type": "word", + "start": 244, + "end": 251, + "value": "part002" + }, + { + "type": "whitespace", + "start": 251, + "end": 252, + "value": " " + }, + { + "type": "operator", + "start": 252, + "end": 253, + "value": "=" + }, + { + "type": "whitespace", + "start": 253, + "end": 254, + "value": " " + }, + { + "type": "word", + "start": 254, + "end": 267, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 267, + "end": 268, + "value": "(" + }, + { + "type": "word", + "start": 268, + "end": 275, + "value": "part001" + }, + { + "type": "comma", + "start": 275, + "end": 276, + "value": "," + }, + { + "type": "whitespace", + "start": 276, + "end": 277, + "value": " " + }, + { + "type": "string", + "start": 277, + "end": 284, + "value": "\"start\"" + }, + { + "type": "brace", + "start": 284, + "end": 285, + "value": ")" + }, + { + "type": "whitespace", + "start": 285, + "end": 288, + "value": "\n " + }, + { + "type": "operator", + "start": 288, + "end": 290, + "value": "|>" + }, + { + "type": "whitespace", + "start": 290, + "end": 291, + "value": " " + }, + { + "type": "word", + "start": 291, + "end": 305, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 305, + "end": 306, + "value": "(" + }, + { + "type": "brace", + "start": 306, + "end": 307, + "value": "[" + }, + { + "type": "number", + "start": 307, + "end": 308, + "value": "0" + }, + { + "type": "comma", + "start": 308, + "end": 309, + "value": "," + }, + { + "type": "whitespace", + "start": 309, + "end": 310, + "value": " " + }, + { + "type": "number", + "start": 310, + "end": 311, + "value": "0" + }, + { + "type": "brace", + "start": 311, + "end": 312, + "value": "]" + }, + { + "type": "comma", + "start": 312, + "end": 313, + "value": "," + }, + { + "type": "whitespace", + "start": 313, + "end": 314, + "value": " " + }, + { + "type": "operator", + "start": 314, + "end": 315, + "value": "%" + }, + { + "type": "brace", + "start": 315, + "end": 316, + "value": ")" + }, + { + "type": "whitespace", + "start": 316, + "end": 319, + "value": "\n " + }, + { + "type": "operator", + "start": 319, + "end": 321, + "value": "|>" + }, + { + "type": "whitespace", + "start": 321, + "end": 322, + "value": " " + }, + { + "type": "word", + "start": 322, + "end": 326, + "value": "line" + }, + { + "type": "brace", + "start": 326, + "end": 327, + "value": "(" + }, + { + "type": "brace", + "start": 327, + "end": 328, + "value": "[" + }, + { + "type": "number", + "start": 328, + "end": 329, + "value": "0" + }, + { + "type": "comma", + "start": 329, + "end": 330, + "value": "," + }, + { + "type": "whitespace", + "start": 330, + "end": 331, + "value": " " + }, + { + "type": "number", + "start": 331, + "end": 333, + "value": "10" + }, + { + "type": "brace", + "start": 333, + "end": 334, + "value": "]" + }, + { + "type": "comma", + "start": 334, + "end": 335, + "value": "," + }, + { + "type": "whitespace", + "start": 335, + "end": 336, + "value": " " + }, + { + "type": "operator", + "start": 336, + "end": 337, + "value": "%" + }, + { + "type": "brace", + "start": 337, + "end": 338, + "value": ")" + }, + { + "type": "whitespace", + "start": 338, + "end": 341, + "value": "\n " + }, + { + "type": "operator", + "start": 341, + "end": 343, + "value": "|>" + }, + { + "type": "whitespace", + "start": 343, + "end": 344, + "value": " " + }, + { + "type": "word", + "start": 344, + "end": 348, + "value": "line" + }, + { + "type": "brace", + "start": 348, + "end": 349, + "value": "(" + }, + { + "type": "brace", + "start": 349, + "end": 350, + "value": "[" + }, + { + "type": "number", + "start": 350, + "end": 352, + "value": "10" + }, + { + "type": "comma", + "start": 352, + "end": 353, + "value": "," + }, + { + "type": "whitespace", + "start": 353, + "end": 354, + "value": " " + }, + { + "type": "number", + "start": 354, + "end": 355, + "value": "0" + }, + { + "type": "brace", + "start": 355, + "end": 356, + "value": "]" + }, + { + "type": "comma", + "start": 356, + "end": 357, + "value": "," + }, + { + "type": "whitespace", + "start": 357, + "end": 358, + "value": " " + }, + { + "type": "operator", + "start": 358, + "end": 359, + "value": "%" + }, + { + "type": "brace", + "start": 359, + "end": 360, + "value": ")" + }, + { + "type": "whitespace", + "start": 360, + "end": 363, + "value": "\n " + }, + { + "type": "operator", + "start": 363, + "end": 365, + "value": "|>" + }, + { + "type": "whitespace", + "start": 365, + "end": 366, + "value": " " + }, + { + "type": "word", + "start": 366, + "end": 370, + "value": "line" + }, + { + "type": "brace", + "start": 370, + "end": 371, + "value": "(" + }, + { + "type": "brace", + "start": 371, + "end": 372, + "value": "[" + }, + { + "type": "number", + "start": 372, + "end": 373, + "value": "0" + }, + { + "type": "comma", + "start": 373, + "end": 374, + "value": "," + }, + { + "type": "whitespace", + "start": 374, + "end": 375, + "value": " " + }, + { + "type": "operator", + "start": 375, + "end": 376, + "value": "-" + }, + { + "type": "number", + "start": 376, + "end": 378, + "value": "10" + }, + { + "type": "brace", + "start": 378, + "end": 379, + "value": "]" + }, + { + "type": "comma", + "start": 379, + "end": 380, + "value": "," + }, + { + "type": "whitespace", + "start": 380, + "end": 381, + "value": " " + }, + { + "type": "operator", + "start": 381, + "end": 382, + "value": "%" + }, + { + "type": "brace", + "start": 382, + "end": 383, + "value": ")" + }, + { + "type": "whitespace", + "start": 383, + "end": 386, + "value": "\n " + }, + { + "type": "operator", + "start": 386, + "end": 388, + "value": "|>" + }, + { + "type": "whitespace", + "start": 388, + "end": 389, + "value": " " + }, + { + "type": "word", + "start": 389, + "end": 394, + "value": "close" + }, + { + "type": "brace", + "start": 394, + "end": 395, + "value": "(" + }, + { + "type": "operator", + "start": 395, + "end": 396, + "value": "%" + }, + { + "type": "brace", + "start": 396, + "end": 397, + "value": ")" + }, + { + "type": "whitespace", + "start": 397, + "end": 400, + "value": "\n " + }, + { + "type": "operator", + "start": 400, + "end": 402, + "value": "|>" + }, + { + "type": "whitespace", + "start": 402, + "end": 403, + "value": " " + }, + { + "type": "word", + "start": 403, + "end": 410, + "value": "extrude" + }, + { + "type": "brace", + "start": 410, + "end": 411, + "value": "(" + }, + { + "type": "number", + "start": 411, + "end": 412, + "value": "5" + }, + { + "type": "comma", + "start": 412, + "end": 413, + "value": "," + }, + { + "type": "whitespace", + "start": 413, + "end": 414, + "value": " " + }, + { + "type": "operator", + "start": 414, + "end": 415, + "value": "%" + }, + { + "type": "brace", + "start": 415, + "end": 416, + "value": ")" + }, + { + "type": "whitespace", + "start": 416, + "end": 417, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/tan_arc_x_line/ast.snap b/src/wasm-lib/kcl/tests/tan_arc_x_line/ast.snap new file mode 100644 index 000000000..5f2646d49 --- /dev/null +++ b/src/wasm-lib/kcl/tests/tan_arc_x_line/ast.snap @@ -0,0 +1,596 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing tan_arc_x_line.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 10, + "id": { + "end": 6, + "name": "startX", + "start": 0, + "type": "Identifier" + }, + "init": { + "end": 10, + "raw": "0", + "start": 9, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 10, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 21, + "id": { + "end": 17, + "name": "startY", + "start": 11, + "type": "Identifier" + }, + "init": { + "end": 21, + "raw": "0", + "start": 20, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + "start": 11, + "type": "VariableDeclarator" + } + ], + "end": 21, + "kind": "const", + "start": 11, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 39, + "id": { + "end": 33, + "name": "angleOffset", + "start": 22, + "type": "Identifier" + }, + "init": { + "end": 39, + "raw": "135", + "start": 36, + "type": "Literal", + "type": "Literal", + "value": 135 + }, + "start": 22, + "type": "VariableDeclarator" + } + ], + "end": 39, + "kind": "const", + "start": 22, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 45, + "id": { + "end": 41, + "name": "r", + "start": 40, + "type": "Identifier" + }, + "init": { + "end": 45, + "raw": "1", + "start": 44, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + "start": 40, + "type": "VariableDeclarator" + } + ], + "end": 45, + "kind": "const", + "start": 40, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declarations": [ + { + "end": 62, + "id": { + "end": 56, + "name": "angleStart", + "start": 46, + "type": "Identifier" + }, + "init": { + "end": 62, + "raw": "110", + "start": 59, + "type": "Literal", + "type": "Literal", + "value": 110 + }, + "start": 46, + "type": "VariableDeclarator" + } + ], + "end": 62, + "kind": "const", + "start": 46, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "end": 429, + "expression": { + "body": [ + { + "arguments": [ + { + "end": 82, + "raw": "'XY'", + "start": 78, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 77, + "name": "startSketchOn", + "start": 64, + "type": "Identifier" + }, + "end": 83, + "optional": false, + "start": 64, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 111, + "name": "startX", + "start": 105, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 119, + "name": "startY", + "start": 113, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 120, + "start": 104, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 123, + "start": 122, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 103, + "name": "startProfileAt", + "start": 89, + "type": "Identifier" + }, + "end": 124, + "optional": false, + "start": 89, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 179, + "properties": [ + { + "end": 160, + "key": { + "end": 148, + "name": "angle", + "start": 143, + "type": "Identifier" + }, + "start": 143, + "type": "ObjectProperty", + "value": { + "end": 160, + "name": "angleStart", + "start": 150, + "type": "Identifier", + "type": "Identifier" + } + }, + { + "end": 177, + "key": { + "end": 168, + "name": "length", + "start": 162, + "type": "Identifier" + }, + "start": 162, + "type": "ObjectProperty", + "value": { + "end": 177, + "raw": ".000001", + "start": 170, + "type": "Literal", + "type": "Literal", + "value": 0.000001 + } + } + ], + "start": 141, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 182, + "start": 181, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 140, + "name": "angledLine", + "start": 130, + "type": "Identifier" + }, + "end": 183, + "optional": false, + "start": 130, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 237, + "properties": [ + { + "end": 224, + "key": { + "end": 211, + "name": "offset", + "start": 205, + "type": "Identifier" + }, + "start": 205, + "type": "ObjectProperty", + "value": { + "end": 224, + "name": "angleOffset", + "start": 213, + "type": "Identifier", + "type": "Identifier" + } + }, + { + "end": 235, + "key": { + "end": 232, + "name": "radius", + "start": 226, + "type": "Identifier" + }, + "start": 226, + "type": "ObjectProperty", + "value": { + "end": 235, + "name": "r", + "start": 234, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "start": 203, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 240, + "start": 239, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 247, + "start": 242, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "arc1" + } + ], + "callee": { + "end": 202, + "name": "tangentialArc", + "start": 189, + "type": "Identifier" + }, + "end": 248, + "optional": false, + "start": 189, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 308, + "properties": [ + { + "end": 289, + "key": { + "end": 276, + "name": "offset", + "start": 270, + "type": "Identifier" + }, + "start": 270, + "type": "ObjectProperty", + "value": { + "end": 289, + "name": "angleOffset", + "start": 278, + "type": "Identifier", + "type": "Identifier" + } + }, + { + "end": 306, + "key": { + "end": 297, + "name": "radius", + "start": 291, + "type": "Identifier" + }, + "start": 291, + "type": "ObjectProperty", + "value": { + "end": 306, + "left": { + "end": 302, + "raw": "0.5", + "start": 299, + "type": "Literal", + "type": "Literal", + "value": 0.5 + }, + "operator": "*", + "right": { + "end": 306, + "name": "r", + "start": 305, + "type": "Identifier", + "type": "Identifier" + }, + "start": 299, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "start": 268, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 311, + "start": 310, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 318, + "start": 313, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "arc2" + } + ], + "callee": { + "end": 267, + "name": "tangentialArc", + "start": 254, + "type": "Identifier" + }, + "end": 319, + "optional": false, + "start": 254, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 399, + "properties": [ + { + "end": 368, + "key": { + "end": 354, + "name": "offset", + "start": 348, + "type": "Identifier" + }, + "start": 348, + "type": "ObjectProperty", + "value": { + "argument": { + "end": 368, + "name": "angleOffset", + "start": 357, + "type": "Identifier", + "type": "Identifier" + }, + "end": 368, + "operator": "-", + "start": 356, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "end": 392, + "key": { + "end": 383, + "name": "radius", + "start": 377, + "type": "Identifier" + }, + "start": 377, + "type": "ObjectProperty", + "value": { + "end": 392, + "left": { + "end": 388, + "raw": "0.5", + "start": 385, + "type": "Literal", + "type": "Literal", + "value": 0.5 + }, + "operator": "*", + "right": { + "end": 392, + "name": "r", + "start": 391, + "type": "Identifier", + "type": "Identifier" + }, + "start": 385, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "start": 339, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 402, + "start": 401, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 409, + "start": 404, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "arc3" + } + ], + "callee": { + "end": 338, + "name": "tangentialArc", + "start": 325, + "type": "Identifier" + }, + "end": 410, + "optional": false, + "start": 325, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 425, + "raw": "1", + "start": 424, + "type": "Literal", + "type": "Literal", + "value": 1 + }, + { + "end": 428, + "start": 427, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 423, + "name": "xLineTo", + "start": 416, + "type": "Identifier" + }, + "end": 429, + "optional": false, + "start": 416, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 429, + "start": 64, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 64, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "end": 430, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "end": 64, + "start": 62, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/tan_arc_x_line/input.kcl b/src/wasm-lib/kcl/tests/tan_arc_x_line/input.kcl new file mode 100644 index 000000000..59dbf8ea2 --- /dev/null +++ b/src/wasm-lib/kcl/tests/tan_arc_x_line/input.kcl @@ -0,0 +1,16 @@ +startX = 0 +startY = 0 +angleOffset = 135 +r = 1 +angleStart = 110 + +startSketchOn('XY') + |> startProfileAt([startX, startY], %) + |> angledLine({ angle: angleStart, length: .000001 }, %) + |> tangentialArc({ offset: angleOffset, radius: r }, %, $arc1) + |> tangentialArc({ offset: angleOffset, radius: 0.5 * r }, %, $arc2) + |> tangentialArc({ + offset: -angleOffset, + radius: 0.5 * r + }, %, $arc3) + |> xLineTo(1, %) 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 new file mode 100644 index 000000000..f8fc57835 --- /dev/null +++ b/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap @@ -0,0 +1,251 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing tan_arc_x_line.kcl +snapshot_kind: text +--- +{ + "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": "Int", + "value": 135, + "__meta": [ + { + "sourceRange": [ + 36, + 39, + 0 + ] + } + ] + }, + "angleStart": { + "type": "Int", + "value": 110, + "__meta": [ + { + "sourceRange": [ + 59, + 62, + 0 + ] + } + ] + }, + "arc1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 189, + 248, + 0 + ] + }, + "ccw": true, + "center": [ + -0.9396929628060517, + -0.34201920363304794 + ], + "from": [ + -0.0000003420201433256687, + 0.0000009396926207859084 + ], + "tag": { + "end": 247, + "start": 242, + "type": "TagDeclarator", + "value": "arc1" + }, + "to": [ + -1.8460007498427018, + 0.08059905810765156 + ], + "type": "TangentialArc" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 242, + 247, + 0 + ] + } + ] + }, + "arc2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 254, + 319, + 0 + ] + }, + "ccw": true, + "center": [ + -1.3928468563243768, + -0.13071007276269808 + ], + "from": [ + -1.8460007498427018, + 0.08059905810765156 + ], + "tag": { + "end": 318, + "start": 313, + "type": "TagDeclarator", + "value": "arc2" + }, + "to": [ + -1.2218367846615423, + -0.6005563831556522 + ], + "type": "TangentialArc" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 313, + 318, + 0 + ] + } + ] + }, + "arc3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 325, + 410, + 0 + ] + }, + "ccw": false, + "center": [ + -1.050826712998708, + -1.0704026935486064 + ], + "from": [ + -1.2218367846615423, + -0.6005563831556522 + ], + "tag": { + "end": 409, + "start": 404, + "type": "TagDeclarator", + "value": "arc3" + }, + "to": [ + -0.5976728194803829, + -1.281711824418956 + ], + "type": "TangentialArc" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 404, + 409, + 0 + ] + } + ] + }, + "r": { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 44, + 45, + 0 + ] + } + ] + }, + "startX": { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 9, + 10, + 0 + ] + } + ] + }, + "startY": { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 20, + 21, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/tan_arc_x_line/rendered_model.png b/src/wasm-lib/kcl/tests/tan_arc_x_line/rendered_model.png new file mode 100644 index 000000000..fcc3301d9 Binary files /dev/null and b/src/wasm-lib/kcl/tests/tan_arc_x_line/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/tan_arc_x_line/tokens.snap b/src/wasm-lib/kcl/tests/tan_arc_x_line/tokens.snap new file mode 100644 index 000000000..d0ae22086 --- /dev/null +++ b/src/wasm-lib/kcl/tests/tan_arc_x_line/tokens.snap @@ -0,0 +1,1047 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing tan_arc_x_line.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 6, + "value": "startX" + }, + { + "type": "whitespace", + "start": 6, + "end": 7, + "value": " " + }, + { + "type": "operator", + "start": 7, + "end": 8, + "value": "=" + }, + { + "type": "whitespace", + "start": 8, + "end": 9, + "value": " " + }, + { + "type": "number", + "start": 9, + "end": 10, + "value": "0" + }, + { + "type": "whitespace", + "start": 10, + "end": 11, + "value": "\n" + }, + { + "type": "word", + "start": 11, + "end": 17, + "value": "startY" + }, + { + "type": "whitespace", + "start": 17, + "end": 18, + "value": " " + }, + { + "type": "operator", + "start": 18, + "end": 19, + "value": "=" + }, + { + "type": "whitespace", + "start": 19, + "end": 20, + "value": " " + }, + { + "type": "number", + "start": 20, + "end": 21, + "value": "0" + }, + { + "type": "whitespace", + "start": 21, + "end": 22, + "value": "\n" + }, + { + "type": "word", + "start": 22, + "end": 33, + "value": "angleOffset" + }, + { + "type": "whitespace", + "start": 33, + "end": 34, + "value": " " + }, + { + "type": "operator", + "start": 34, + "end": 35, + "value": "=" + }, + { + "type": "whitespace", + "start": 35, + "end": 36, + "value": " " + }, + { + "type": "number", + "start": 36, + "end": 39, + "value": "135" + }, + { + "type": "whitespace", + "start": 39, + "end": 40, + "value": "\n" + }, + { + "type": "word", + "start": 40, + "end": 41, + "value": "r" + }, + { + "type": "whitespace", + "start": 41, + "end": 42, + "value": " " + }, + { + "type": "operator", + "start": 42, + "end": 43, + "value": "=" + }, + { + "type": "whitespace", + "start": 43, + "end": 44, + "value": " " + }, + { + "type": "number", + "start": 44, + "end": 45, + "value": "1" + }, + { + "type": "whitespace", + "start": 45, + "end": 46, + "value": "\n" + }, + { + "type": "word", + "start": 46, + "end": 56, + "value": "angleStart" + }, + { + "type": "whitespace", + "start": 56, + "end": 57, + "value": " " + }, + { + "type": "operator", + "start": 57, + "end": 58, + "value": "=" + }, + { + "type": "whitespace", + "start": 58, + "end": 59, + "value": " " + }, + { + "type": "number", + "start": 59, + "end": 62, + "value": "110" + }, + { + "type": "whitespace", + "start": 62, + "end": 64, + "value": "\n\n" + }, + { + "type": "word", + "start": 64, + "end": 77, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 77, + "end": 78, + "value": "(" + }, + { + "type": "string", + "start": 78, + "end": 82, + "value": "'XY'" + }, + { + "type": "brace", + "start": 82, + "end": 83, + "value": ")" + }, + { + "type": "whitespace", + "start": 83, + "end": 86, + "value": "\n " + }, + { + "type": "operator", + "start": 86, + "end": 88, + "value": "|>" + }, + { + "type": "whitespace", + "start": 88, + "end": 89, + "value": " " + }, + { + "type": "word", + "start": 89, + "end": 103, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 103, + "end": 104, + "value": "(" + }, + { + "type": "brace", + "start": 104, + "end": 105, + "value": "[" + }, + { + "type": "word", + "start": 105, + "end": 111, + "value": "startX" + }, + { + "type": "comma", + "start": 111, + "end": 112, + "value": "," + }, + { + "type": "whitespace", + "start": 112, + "end": 113, + "value": " " + }, + { + "type": "word", + "start": 113, + "end": 119, + "value": "startY" + }, + { + "type": "brace", + "start": 119, + "end": 120, + "value": "]" + }, + { + "type": "comma", + "start": 120, + "end": 121, + "value": "," + }, + { + "type": "whitespace", + "start": 121, + "end": 122, + "value": " " + }, + { + "type": "operator", + "start": 122, + "end": 123, + "value": "%" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": ")" + }, + { + "type": "whitespace", + "start": 124, + "end": 127, + "value": "\n " + }, + { + "type": "operator", + "start": 127, + "end": 129, + "value": "|>" + }, + { + "type": "whitespace", + "start": 129, + "end": 130, + "value": " " + }, + { + "type": "word", + "start": 130, + "end": 140, + "value": "angledLine" + }, + { + "type": "brace", + "start": 140, + "end": 141, + "value": "(" + }, + { + "type": "brace", + "start": 141, + "end": 142, + "value": "{" + }, + { + "type": "whitespace", + "start": 142, + "end": 143, + "value": " " + }, + { + "type": "word", + "start": 143, + "end": 148, + "value": "angle" + }, + { + "type": "colon", + "start": 148, + "end": 149, + "value": ":" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": " " + }, + { + "type": "word", + "start": 150, + "end": 160, + "value": "angleStart" + }, + { + "type": "comma", + "start": 160, + "end": 161, + "value": "," + }, + { + "type": "whitespace", + "start": 161, + "end": 162, + "value": " " + }, + { + "type": "word", + "start": 162, + "end": 168, + "value": "length" + }, + { + "type": "colon", + "start": 168, + "end": 169, + "value": ":" + }, + { + "type": "whitespace", + "start": 169, + "end": 170, + "value": " " + }, + { + "type": "number", + "start": 170, + "end": 177, + "value": ".000001" + }, + { + "type": "whitespace", + "start": 177, + "end": 178, + "value": " " + }, + { + "type": "brace", + "start": 178, + "end": 179, + "value": "}" + }, + { + "type": "comma", + "start": 179, + "end": 180, + "value": "," + }, + { + "type": "whitespace", + "start": 180, + "end": 181, + "value": " " + }, + { + "type": "operator", + "start": 181, + "end": 182, + "value": "%" + }, + { + "type": "brace", + "start": 182, + "end": 183, + "value": ")" + }, + { + "type": "whitespace", + "start": 183, + "end": 186, + "value": "\n " + }, + { + "type": "operator", + "start": 186, + "end": 188, + "value": "|>" + }, + { + "type": "whitespace", + "start": 188, + "end": 189, + "value": " " + }, + { + "type": "word", + "start": 189, + "end": 202, + "value": "tangentialArc" + }, + { + "type": "brace", + "start": 202, + "end": 203, + "value": "(" + }, + { + "type": "brace", + "start": 203, + "end": 204, + "value": "{" + }, + { + "type": "whitespace", + "start": 204, + "end": 205, + "value": " " + }, + { + "type": "word", + "start": 205, + "end": 211, + "value": "offset" + }, + { + "type": "colon", + "start": 211, + "end": 212, + "value": ":" + }, + { + "type": "whitespace", + "start": 212, + "end": 213, + "value": " " + }, + { + "type": "word", + "start": 213, + "end": 224, + "value": "angleOffset" + }, + { + "type": "comma", + "start": 224, + "end": 225, + "value": "," + }, + { + "type": "whitespace", + "start": 225, + "end": 226, + "value": " " + }, + { + "type": "word", + "start": 226, + "end": 232, + "value": "radius" + }, + { + "type": "colon", + "start": 232, + "end": 233, + "value": ":" + }, + { + "type": "whitespace", + "start": 233, + "end": 234, + "value": " " + }, + { + "type": "word", + "start": 234, + "end": 235, + "value": "r" + }, + { + "type": "whitespace", + "start": 235, + "end": 236, + "value": " " + }, + { + "type": "brace", + "start": 236, + "end": 237, + "value": "}" + }, + { + "type": "comma", + "start": 237, + "end": 238, + "value": "," + }, + { + "type": "whitespace", + "start": 238, + "end": 239, + "value": " " + }, + { + "type": "operator", + "start": 239, + "end": 240, + "value": "%" + }, + { + "type": "comma", + "start": 240, + "end": 241, + "value": "," + }, + { + "type": "whitespace", + "start": 241, + "end": 242, + "value": " " + }, + { + "type": "dollar", + "start": 242, + "end": 243, + "value": "$" + }, + { + "type": "word", + "start": 243, + "end": 247, + "value": "arc1" + }, + { + "type": "brace", + "start": 247, + "end": 248, + "value": ")" + }, + { + "type": "whitespace", + "start": 248, + "end": 251, + "value": "\n " + }, + { + "type": "operator", + "start": 251, + "end": 253, + "value": "|>" + }, + { + "type": "whitespace", + "start": 253, + "end": 254, + "value": " " + }, + { + "type": "word", + "start": 254, + "end": 267, + "value": "tangentialArc" + }, + { + "type": "brace", + "start": 267, + "end": 268, + "value": "(" + }, + { + "type": "brace", + "start": 268, + "end": 269, + "value": "{" + }, + { + "type": "whitespace", + "start": 269, + "end": 270, + "value": " " + }, + { + "type": "word", + "start": 270, + "end": 276, + "value": "offset" + }, + { + "type": "colon", + "start": 276, + "end": 277, + "value": ":" + }, + { + "type": "whitespace", + "start": 277, + "end": 278, + "value": " " + }, + { + "type": "word", + "start": 278, + "end": 289, + "value": "angleOffset" + }, + { + "type": "comma", + "start": 289, + "end": 290, + "value": "," + }, + { + "type": "whitespace", + "start": 290, + "end": 291, + "value": " " + }, + { + "type": "word", + "start": 291, + "end": 297, + "value": "radius" + }, + { + "type": "colon", + "start": 297, + "end": 298, + "value": ":" + }, + { + "type": "whitespace", + "start": 298, + "end": 299, + "value": " " + }, + { + "type": "number", + "start": 299, + "end": 302, + "value": "0.5" + }, + { + "type": "whitespace", + "start": 302, + "end": 303, + "value": " " + }, + { + "type": "operator", + "start": 303, + "end": 304, + "value": "*" + }, + { + "type": "whitespace", + "start": 304, + "end": 305, + "value": " " + }, + { + "type": "word", + "start": 305, + "end": 306, + "value": "r" + }, + { + "type": "whitespace", + "start": 306, + "end": 307, + "value": " " + }, + { + "type": "brace", + "start": 307, + "end": 308, + "value": "}" + }, + { + "type": "comma", + "start": 308, + "end": 309, + "value": "," + }, + { + "type": "whitespace", + "start": 309, + "end": 310, + "value": " " + }, + { + "type": "operator", + "start": 310, + "end": 311, + "value": "%" + }, + { + "type": "comma", + "start": 311, + "end": 312, + "value": "," + }, + { + "type": "whitespace", + "start": 312, + "end": 313, + "value": " " + }, + { + "type": "dollar", + "start": 313, + "end": 314, + "value": "$" + }, + { + "type": "word", + "start": 314, + "end": 318, + "value": "arc2" + }, + { + "type": "brace", + "start": 318, + "end": 319, + "value": ")" + }, + { + "type": "whitespace", + "start": 319, + "end": 322, + "value": "\n " + }, + { + "type": "operator", + "start": 322, + "end": 324, + "value": "|>" + }, + { + "type": "whitespace", + "start": 324, + "end": 325, + "value": " " + }, + { + "type": "word", + "start": 325, + "end": 338, + "value": "tangentialArc" + }, + { + "type": "brace", + "start": 338, + "end": 339, + "value": "(" + }, + { + "type": "brace", + "start": 339, + "end": 340, + "value": "{" + }, + { + "type": "whitespace", + "start": 340, + "end": 348, + "value": "\n " + }, + { + "type": "word", + "start": 348, + "end": 354, + "value": "offset" + }, + { + "type": "colon", + "start": 354, + "end": 355, + "value": ":" + }, + { + "type": "whitespace", + "start": 355, + "end": 356, + "value": " " + }, + { + "type": "operator", + "start": 356, + "end": 357, + "value": "-" + }, + { + "type": "word", + "start": 357, + "end": 368, + "value": "angleOffset" + }, + { + "type": "comma", + "start": 368, + "end": 369, + "value": "," + }, + { + "type": "whitespace", + "start": 369, + "end": 377, + "value": "\n " + }, + { + "type": "word", + "start": 377, + "end": 383, + "value": "radius" + }, + { + "type": "colon", + "start": 383, + "end": 384, + "value": ":" + }, + { + "type": "whitespace", + "start": 384, + "end": 385, + "value": " " + }, + { + "type": "number", + "start": 385, + "end": 388, + "value": "0.5" + }, + { + "type": "whitespace", + "start": 388, + "end": 389, + "value": " " + }, + { + "type": "operator", + "start": 389, + "end": 390, + "value": "*" + }, + { + "type": "whitespace", + "start": 390, + "end": 391, + "value": " " + }, + { + "type": "word", + "start": 391, + "end": 392, + "value": "r" + }, + { + "type": "whitespace", + "start": 392, + "end": 398, + "value": "\n " + }, + { + "type": "brace", + "start": 398, + "end": 399, + "value": "}" + }, + { + "type": "comma", + "start": 399, + "end": 400, + "value": "," + }, + { + "type": "whitespace", + "start": 400, + "end": 401, + "value": " " + }, + { + "type": "operator", + "start": 401, + "end": 402, + "value": "%" + }, + { + "type": "comma", + "start": 402, + "end": 403, + "value": "," + }, + { + "type": "whitespace", + "start": 403, + "end": 404, + "value": " " + }, + { + "type": "dollar", + "start": 404, + "end": 405, + "value": "$" + }, + { + "type": "word", + "start": 405, + "end": 409, + "value": "arc3" + }, + { + "type": "brace", + "start": 409, + "end": 410, + "value": ")" + }, + { + "type": "whitespace", + "start": 410, + "end": 413, + "value": "\n " + }, + { + "type": "operator", + "start": 413, + "end": 415, + "value": "|>" + }, + { + "type": "whitespace", + "start": 415, + "end": 416, + "value": " " + }, + { + "type": "word", + "start": 416, + "end": 423, + "value": "xLineTo" + }, + { + "type": "brace", + "start": 423, + "end": 424, + "value": "(" + }, + { + "type": "number", + "start": 424, + "end": 425, + "value": "1" + }, + { + "type": "comma", + "start": 425, + "end": 426, + "value": "," + }, + { + "type": "whitespace", + "start": 426, + "end": 427, + "value": " " + }, + { + "type": "operator", + "start": 427, + "end": 428, + "value": "%" + }, + { + "type": "brace", + "start": 428, + "end": 429, + "value": ")" + }, + { + "type": "whitespace", + "start": 429, + "end": 430, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/tangential_arc/ast.snap b/src/wasm-lib/kcl/tests/tangential_arc/ast.snap new file mode 100644 index 000000000..47f6a4b2e --- /dev/null +++ b/src/wasm-lib/kcl/tests/tangential_arc/ast.snap @@ -0,0 +1,273 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing tangential_arc.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 147, + "id": { + "end": 9, + "name": "boxSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "elements": [ + { + "end": 28, + "raw": "0", + "start": 27, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 31, + "raw": "0", + "start": 30, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 32, + "start": 26, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + ], + "callee": { + "end": 25, + "name": "startSketchAt", + "start": 12, + "type": "Identifier" + }, + "end": 33, + "optional": false, + "start": 12, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 46, + "raw": "0", + "start": 45, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 50, + "raw": "10", + "start": 48, + "type": "Literal", + "type": "Literal", + "value": 10 + } + ], + "end": 51, + "start": 44, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 54, + "start": 53, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 43, + "name": "line", + "start": 39, + "type": "Identifier" + }, + "end": 55, + "optional": false, + "start": 39, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 100, + "properties": [ + { + "end": 86, + "key": { + "end": 83, + "name": "radius", + "start": 77, + "type": "Identifier" + }, + "start": 77, + "type": "ObjectProperty", + "value": { + "end": 86, + "raw": "5", + "start": 85, + "type": "Literal", + "type": "Literal", + "value": 5 + } + }, + { + "end": 98, + "key": { + "end": 94, + "name": "offset", + "start": 88, + "type": "Identifier" + }, + "start": 88, + "type": "ObjectProperty", + "value": { + "end": 98, + "raw": "90", + "start": 96, + "type": "Literal", + "type": "Literal", + "value": 90 + } + } + ], + "start": 75, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 103, + "start": 102, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 74, + "name": "tangentialArc", + "start": 61, + "type": "Identifier" + }, + "end": 104, + "optional": false, + "start": 61, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 117, + "raw": "5", + "start": 116, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + { + "argument": { + "end": 122, + "raw": "15", + "start": 120, + "type": "Literal", + "type": "Literal", + "value": 15 + }, + "end": 122, + "operator": "-", + "start": 119, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 123, + "start": 115, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 126, + "start": 125, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 114, + "name": "line", + "start": 110, + "type": "Identifier" + }, + "end": 127, + "optional": false, + "start": 110, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 143, + "raw": "10", + "start": 141, + "type": "Literal", + "type": "Literal", + "value": 10 + }, + { + "end": 146, + "start": 145, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 140, + "name": "extrude", + "start": 133, + "type": "Identifier" + }, + "end": 147, + "optional": false, + "start": 133, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 147, + "start": 12, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 147, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 148, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/tangential_arc/input.kcl b/src/wasm-lib/kcl/tests/tangential_arc/input.kcl new file mode 100644 index 000000000..62fa3ea84 --- /dev/null +++ b/src/wasm-lib/kcl/tests/tangential_arc/input.kcl @@ -0,0 +1,5 @@ +boxSketch = startSketchAt([0, 0]) + |> line([0, 10], %) + |> tangentialArc({ radius: 5, offset: 90 }, %) + |> line([5, -15], %) + |> extrude(10, %) diff --git a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap new file mode 100644 index 000000000..184e43687 --- /dev/null +++ b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap @@ -0,0 +1,213 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing tangential_arc.kcl +snapshot_kind: text +--- +{ + "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": [] + }, + "boxSketch": { + "type": "Solid", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39, + 55, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61, + 104, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 110, + 127, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39, + 55, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61, + 104, + 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": [ + 110, + 127, + 0 + ] + }, + "from": [ + -5.0, + 15.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[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 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12, + 33, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 12, + 33, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 12, + 33, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/tangential_arc/rendered_model.png b/src/wasm-lib/kcl/tests/tangential_arc/rendered_model.png new file mode 100644 index 000000000..ac3223191 Binary files /dev/null and b/src/wasm-lib/kcl/tests/tangential_arc/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/tangential_arc/tokens.snap b/src/wasm-lib/kcl/tests/tangential_arc/tokens.snap new file mode 100644 index 000000000..8a238c97f --- /dev/null +++ b/src/wasm-lib/kcl/tests/tangential_arc/tokens.snap @@ -0,0 +1,477 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing tangential_arc.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 9, + "value": "boxSketch" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "operator", + "start": 10, + "end": 11, + "value": "=" + }, + { + "type": "whitespace", + "start": 11, + "end": 12, + "value": " " + }, + { + "type": "word", + "start": 12, + "end": 25, + "value": "startSketchAt" + }, + { + "type": "brace", + "start": 25, + "end": 26, + "value": "(" + }, + { + "type": "brace", + "start": 26, + "end": 27, + "value": "[" + }, + { + "type": "number", + "start": 27, + "end": 28, + "value": "0" + }, + { + "type": "comma", + "start": 28, + "end": 29, + "value": "," + }, + { + "type": "whitespace", + "start": 29, + "end": 30, + "value": " " + }, + { + "type": "number", + "start": 30, + "end": 31, + "value": "0" + }, + { + "type": "brace", + "start": 31, + "end": 32, + "value": "]" + }, + { + "type": "brace", + "start": 32, + "end": 33, + "value": ")" + }, + { + "type": "whitespace", + "start": 33, + "end": 36, + "value": "\n " + }, + { + "type": "operator", + "start": 36, + "end": 38, + "value": "|>" + }, + { + "type": "whitespace", + "start": 38, + "end": 39, + "value": " " + }, + { + "type": "word", + "start": 39, + "end": 43, + "value": "line" + }, + { + "type": "brace", + "start": 43, + "end": 44, + "value": "(" + }, + { + "type": "brace", + "start": 44, + "end": 45, + "value": "[" + }, + { + "type": "number", + "start": 45, + "end": 46, + "value": "0" + }, + { + "type": "comma", + "start": 46, + "end": 47, + "value": "," + }, + { + "type": "whitespace", + "start": 47, + "end": 48, + "value": " " + }, + { + "type": "number", + "start": 48, + "end": 50, + "value": "10" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "]" + }, + { + "type": "comma", + "start": 51, + "end": 52, + "value": "," + }, + { + "type": "whitespace", + "start": 52, + "end": 53, + "value": " " + }, + { + "type": "operator", + "start": 53, + "end": 54, + "value": "%" + }, + { + "type": "brace", + "start": 54, + "end": 55, + "value": ")" + }, + { + "type": "whitespace", + "start": 55, + "end": 58, + "value": "\n " + }, + { + "type": "operator", + "start": 58, + "end": 60, + "value": "|>" + }, + { + "type": "whitespace", + "start": 60, + "end": 61, + "value": " " + }, + { + "type": "word", + "start": 61, + "end": 74, + "value": "tangentialArc" + }, + { + "type": "brace", + "start": 74, + "end": 75, + "value": "(" + }, + { + "type": "brace", + "start": 75, + "end": 76, + "value": "{" + }, + { + "type": "whitespace", + "start": 76, + "end": 77, + "value": " " + }, + { + "type": "word", + "start": 77, + "end": 83, + "value": "radius" + }, + { + "type": "colon", + "start": 83, + "end": 84, + "value": ":" + }, + { + "type": "whitespace", + "start": 84, + "end": 85, + "value": " " + }, + { + "type": "number", + "start": 85, + "end": 86, + "value": "5" + }, + { + "type": "comma", + "start": 86, + "end": 87, + "value": "," + }, + { + "type": "whitespace", + "start": 87, + "end": 88, + "value": " " + }, + { + "type": "word", + "start": 88, + "end": 94, + "value": "offset" + }, + { + "type": "colon", + "start": 94, + "end": 95, + "value": ":" + }, + { + "type": "whitespace", + "start": 95, + "end": 96, + "value": " " + }, + { + "type": "number", + "start": 96, + "end": 98, + "value": "90" + }, + { + "type": "whitespace", + "start": 98, + "end": 99, + "value": " " + }, + { + "type": "brace", + "start": 99, + "end": 100, + "value": "}" + }, + { + "type": "comma", + "start": 100, + "end": 101, + "value": "," + }, + { + "type": "whitespace", + "start": 101, + "end": 102, + "value": " " + }, + { + "type": "operator", + "start": 102, + "end": 103, + "value": "%" + }, + { + "type": "brace", + "start": 103, + "end": 104, + "value": ")" + }, + { + "type": "whitespace", + "start": 104, + "end": 107, + "value": "\n " + }, + { + "type": "operator", + "start": 107, + "end": 109, + "value": "|>" + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "word", + "start": 110, + "end": 114, + "value": "line" + }, + { + "type": "brace", + "start": 114, + "end": 115, + "value": "(" + }, + { + "type": "brace", + "start": 115, + "end": 116, + "value": "[" + }, + { + "type": "number", + "start": 116, + "end": 117, + "value": "5" + }, + { + "type": "comma", + "start": 117, + "end": 118, + "value": "," + }, + { + "type": "whitespace", + "start": 118, + "end": 119, + "value": " " + }, + { + "type": "operator", + "start": 119, + "end": 120, + "value": "-" + }, + { + "type": "number", + "start": 120, + "end": 122, + "value": "15" + }, + { + "type": "brace", + "start": 122, + "end": 123, + "value": "]" + }, + { + "type": "comma", + "start": 123, + "end": 124, + "value": "," + }, + { + "type": "whitespace", + "start": 124, + "end": 125, + "value": " " + }, + { + "type": "operator", + "start": 125, + "end": 126, + "value": "%" + }, + { + "type": "brace", + "start": 126, + "end": 127, + "value": ")" + }, + { + "type": "whitespace", + "start": 127, + "end": 130, + "value": "\n " + }, + { + "type": "operator", + "start": 130, + "end": 132, + "value": "|>" + }, + { + "type": "whitespace", + "start": 132, + "end": 133, + "value": " " + }, + { + "type": "word", + "start": 133, + "end": 140, + "value": "extrude" + }, + { + "type": "brace", + "start": 140, + "end": 141, + "value": "(" + }, + { + "type": "number", + "start": 141, + "end": 143, + "value": "10" + }, + { + "type": "comma", + "start": 143, + "end": 144, + "value": "," + }, + { + "type": "whitespace", + "start": 144, + "end": 145, + "value": " " + }, + { + "type": "operator", + "start": 145, + "end": 146, + "value": "%" + }, + { + "type": "brace", + "start": 146, + "end": 147, + "value": ")" + }, + { + "type": "whitespace", + "start": 147, + "end": 148, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/kcl/tests/xz_plane/ast.snap b/src/wasm-lib/kcl/tests/xz_plane/ast.snap new file mode 100644 index 000000000..b4ccf441c --- /dev/null +++ b/src/wasm-lib/kcl/tests/xz_plane/ast.snap @@ -0,0 +1,264 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of parsing xz_plane.kcl +snapshot_kind: text +--- +{ + "Ok": { + "body": [ + { + "declarations": [ + { + "end": 149, + "id": { + "end": 7, + "name": "part001", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 28, + "raw": "'XZ'", + "start": 24, + "type": "Literal", + "type": "Literal", + "value": "XZ" + } + ], + "callee": { + "end": 23, + "name": "startSketchOn", + "start": 10, + "type": "Identifier" + }, + "end": 29, + "optional": false, + "start": 10, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 52, + "raw": "0", + "start": 51, + "type": "Literal", + "type": "Literal", + "value": 0 + }, + { + "end": 55, + "raw": "0", + "start": 54, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 56, + "start": 50, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 59, + "start": 58, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 49, + "name": "startProfileAt", + "start": 35, + "type": "Identifier" + }, + "end": 60, + "optional": false, + "start": 35, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 77, + "raw": "100", + "start": 74, + "type": "Literal", + "type": "Literal", + "value": 100 + }, + { + "end": 82, + "raw": "100", + "start": 79, + "type": "Literal", + "type": "Literal", + "value": 100 + } + ], + "end": 83, + "start": 73, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 86, + "start": 85, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72, + "name": "lineTo", + "start": 66, + "type": "Identifier" + }, + "end": 87, + "optional": false, + "start": 66, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 104, + "raw": "100", + "start": 101, + "type": "Literal", + "type": "Literal", + "value": 100 + }, + { + "end": 107, + "raw": "0", + "start": 106, + "type": "Literal", + "type": "Literal", + "value": 0 + } + ], + "end": 108, + "start": 100, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 111, + "start": 110, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 99, + "name": "lineTo", + "start": 93, + "type": "Identifier" + }, + "end": 112, + "optional": false, + "start": 93, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 125, + "start": 124, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 123, + "name": "close", + "start": 118, + "type": "Identifier" + }, + "end": 126, + "optional": false, + "start": 118, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 145, + "left": { + "end": 141, + "raw": "5", + "start": 140, + "type": "Literal", + "type": "Literal", + "value": 5 + }, + "operator": "+", + "right": { + "end": 145, + "raw": "7", + "start": 144, + "type": "Literal", + "type": "Literal", + "value": 7 + }, + "start": 140, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 148, + "start": 147, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 139, + "name": "extrude", + "start": 132, + "type": "Identifier" + }, + "end": 149, + "optional": false, + "start": 132, + "type": "CallExpression", + "type": "CallExpression" + } + ], + "end": 149, + "start": 10, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + } + ], + "end": 149, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + } + ], + "end": 150, + "start": 0 + } +} diff --git a/src/wasm-lib/kcl/tests/xz_plane/input.kcl b/src/wasm-lib/kcl/tests/xz_plane/input.kcl new file mode 100644 index 000000000..2a293c1f7 --- /dev/null +++ b/src/wasm-lib/kcl/tests/xz_plane/input.kcl @@ -0,0 +1,6 @@ +part001 = startSketchOn('XZ') + |> startProfileAt([0, 0], %) + |> lineTo([100, 100], %) + |> lineTo([100, 0], %) + |> close(%) + |> extrude(5 + 7, %) diff --git a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap new file mode 100644 index 000000000..8955c8ea7 --- /dev/null +++ b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap @@ -0,0 +1,208 @@ +--- +source: kcl/src/simulation_tests.rs +description: Program memory after executing xz_plane.kcl +snapshot_kind: text +--- +{ + "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", + "type": "Solid", + "id": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 87, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 93, + 112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 126, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 87, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 100.0, + 100.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 93, + 112, + 0 + ] + }, + "from": [ + 100.0, + 100.0 + ], + "tag": null, + "to": [ + 100.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 126, + 0 + ] + }, + "from": [ + 100.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 12.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + } + }, + "parent": null + } + ], + "currentEnv": 0, + "return": null +} diff --git a/src/wasm-lib/kcl/tests/xz_plane/rendered_model.png b/src/wasm-lib/kcl/tests/xz_plane/rendered_model.png new file mode 100644 index 000000000..0b156fed6 Binary files /dev/null and b/src/wasm-lib/kcl/tests/xz_plane/rendered_model.png differ diff --git a/src/wasm-lib/kcl/tests/xz_plane/tokens.snap b/src/wasm-lib/kcl/tests/xz_plane/tokens.snap new file mode 100644 index 000000000..4e2777924 --- /dev/null +++ b/src/wasm-lib/kcl/tests/xz_plane/tokens.snap @@ -0,0 +1,459 @@ +--- +source: kcl/src/simulation_tests.rs +description: Result of tokenizing xz_plane.kcl +snapshot_kind: text +--- +{ + "Ok": [ + { + "type": "word", + "start": 0, + "end": 7, + "value": "part001" + }, + { + "type": "whitespace", + "start": 7, + "end": 8, + "value": " " + }, + { + "type": "operator", + "start": 8, + "end": 9, + "value": "=" + }, + { + "type": "whitespace", + "start": 9, + "end": 10, + "value": " " + }, + { + "type": "word", + "start": 10, + "end": 23, + "value": "startSketchOn" + }, + { + "type": "brace", + "start": 23, + "end": 24, + "value": "(" + }, + { + "type": "string", + "start": 24, + "end": 28, + "value": "'XZ'" + }, + { + "type": "brace", + "start": 28, + "end": 29, + "value": ")" + }, + { + "type": "whitespace", + "start": 29, + "end": 32, + "value": "\n " + }, + { + "type": "operator", + "start": 32, + "end": 34, + "value": "|>" + }, + { + "type": "whitespace", + "start": 34, + "end": 35, + "value": " " + }, + { + "type": "word", + "start": 35, + "end": 49, + "value": "startProfileAt" + }, + { + "type": "brace", + "start": 49, + "end": 50, + "value": "(" + }, + { + "type": "brace", + "start": 50, + "end": 51, + "value": "[" + }, + { + "type": "number", + "start": 51, + "end": 52, + "value": "0" + }, + { + "type": "comma", + "start": 52, + "end": 53, + "value": "," + }, + { + "type": "whitespace", + "start": 53, + "end": 54, + "value": " " + }, + { + "type": "number", + "start": 54, + "end": 55, + "value": "0" + }, + { + "type": "brace", + "start": 55, + "end": 56, + "value": "]" + }, + { + "type": "comma", + "start": 56, + "end": 57, + "value": "," + }, + { + "type": "whitespace", + "start": 57, + "end": 58, + "value": " " + }, + { + "type": "operator", + "start": 58, + "end": 59, + "value": "%" + }, + { + "type": "brace", + "start": 59, + "end": 60, + "value": ")" + }, + { + "type": "whitespace", + "start": 60, + "end": 63, + "value": "\n " + }, + { + "type": "operator", + "start": 63, + "end": 65, + "value": "|>" + }, + { + "type": "whitespace", + "start": 65, + "end": 66, + "value": " " + }, + { + "type": "word", + "start": 66, + "end": 72, + "value": "lineTo" + }, + { + "type": "brace", + "start": 72, + "end": 73, + "value": "(" + }, + { + "type": "brace", + "start": 73, + "end": 74, + "value": "[" + }, + { + "type": "number", + "start": 74, + "end": 77, + "value": "100" + }, + { + "type": "comma", + "start": 77, + "end": 78, + "value": "," + }, + { + "type": "whitespace", + "start": 78, + "end": 79, + "value": " " + }, + { + "type": "number", + "start": 79, + "end": 82, + "value": "100" + }, + { + "type": "brace", + "start": 82, + "end": 83, + "value": "]" + }, + { + "type": "comma", + "start": 83, + "end": 84, + "value": "," + }, + { + "type": "whitespace", + "start": 84, + "end": 85, + "value": " " + }, + { + "type": "operator", + "start": 85, + "end": 86, + "value": "%" + }, + { + "type": "brace", + "start": 86, + "end": 87, + "value": ")" + }, + { + "type": "whitespace", + "start": 87, + "end": 90, + "value": "\n " + }, + { + "type": "operator", + "start": 90, + "end": 92, + "value": "|>" + }, + { + "type": "whitespace", + "start": 92, + "end": 93, + "value": " " + }, + { + "type": "word", + "start": 93, + "end": 99, + "value": "lineTo" + }, + { + "type": "brace", + "start": 99, + "end": 100, + "value": "(" + }, + { + "type": "brace", + "start": 100, + "end": 101, + "value": "[" + }, + { + "type": "number", + "start": 101, + "end": 104, + "value": "100" + }, + { + "type": "comma", + "start": 104, + "end": 105, + "value": "," + }, + { + "type": "whitespace", + "start": 105, + "end": 106, + "value": " " + }, + { + "type": "number", + "start": 106, + "end": 107, + "value": "0" + }, + { + "type": "brace", + "start": 107, + "end": 108, + "value": "]" + }, + { + "type": "comma", + "start": 108, + "end": 109, + "value": "," + }, + { + "type": "whitespace", + "start": 109, + "end": 110, + "value": " " + }, + { + "type": "operator", + "start": 110, + "end": 111, + "value": "%" + }, + { + "type": "brace", + "start": 111, + "end": 112, + "value": ")" + }, + { + "type": "whitespace", + "start": 112, + "end": 115, + "value": "\n " + }, + { + "type": "operator", + "start": 115, + "end": 117, + "value": "|>" + }, + { + "type": "whitespace", + "start": 117, + "end": 118, + "value": " " + }, + { + "type": "word", + "start": 118, + "end": 123, + "value": "close" + }, + { + "type": "brace", + "start": 123, + "end": 124, + "value": "(" + }, + { + "type": "operator", + "start": 124, + "end": 125, + "value": "%" + }, + { + "type": "brace", + "start": 125, + "end": 126, + "value": ")" + }, + { + "type": "whitespace", + "start": 126, + "end": 129, + "value": "\n " + }, + { + "type": "operator", + "start": 129, + "end": 131, + "value": "|>" + }, + { + "type": "whitespace", + "start": 131, + "end": 132, + "value": " " + }, + { + "type": "word", + "start": 132, + "end": 139, + "value": "extrude" + }, + { + "type": "brace", + "start": 139, + "end": 140, + "value": "(" + }, + { + "type": "number", + "start": 140, + "end": 141, + "value": "5" + }, + { + "type": "whitespace", + "start": 141, + "end": 142, + "value": " " + }, + { + "type": "operator", + "start": 142, + "end": 143, + "value": "+" + }, + { + "type": "whitespace", + "start": 143, + "end": 144, + "value": " " + }, + { + "type": "number", + "start": 144, + "end": 145, + "value": "7" + }, + { + "type": "comma", + "start": 145, + "end": 146, + "value": "," + }, + { + "type": "whitespace", + "start": 146, + "end": 147, + "value": " " + }, + { + "type": "operator", + "start": 147, + "end": 148, + "value": "%" + }, + { + "type": "brace", + "start": 148, + "end": 149, + "value": ")" + }, + { + "type": "whitespace", + "start": 149, + "end": 150, + "value": "\n" + } + ] +} diff --git a/src/wasm-lib/tests/executor/main.rs b/src/wasm-lib/tests/executor/main.rs index 9b261acb7..0546cf091 100644 --- a/src/wasm-lib/tests/executor/main.rs +++ b/src/wasm-lib/tests/executor/main.rs @@ -7,9 +7,6 @@ use kcl_lib::{ /// i.e. how different the current model snapshot can be from the previous saved one. const MIN_DIFF: f64 = 0.99; -mod no_visuals; -mod visuals; - macro_rules! kcl_input { ($file:literal) => { include_str!(concat!("inputs/", $file, ".kcl")) diff --git a/src/wasm-lib/tests/executor/no_visuals.rs b/src/wasm-lib/tests/executor/no_visuals.rs deleted file mode 100644 index 8714aaafe..000000000 --- a/src/wasm-lib/tests/executor/no_visuals.rs +++ /dev/null @@ -1,142 +0,0 @@ -use kcl_lib::{ - ast::types::{ModuleId, Node, Program}, - errors::KclError, - executor::{ExecutorContext, IdGenerator}, - parser, -}; - -macro_rules! gen_test_fail { - ($file:ident, $expected:literal) => { - #[tokio::test] - async fn $file() { - let code = include_str!(concat!("inputs/no_visuals/", stringify!($file), ".kcl")); - let actual = run_fail(&code).await; - assert_eq!(actual.get_message(), $expected); - } - }; -} - -macro_rules! gen_test_parse_fail { - ($file:ident, $expected:literal) => { - #[tokio::test] - async fn $file() { - let code = include_str!(concat!("inputs/no_visuals/", stringify!($file), ".kcl")); - let actual = run_parse_fail(&code).await; - assert_eq!(actual.get_message(), $expected); - } - }; -} - -async fn setup(program: &str) -> (ExecutorContext, Node, IdGenerator) { - let module_id = ModuleId::default(); - let tokens = kcl_lib::token::lexer(program, module_id).unwrap(); - let parser = kcl_lib::parser::Parser::new(tokens); - let program = parser.ast().unwrap(); - let ctx = kcl_lib::executor::ExecutorContext { - engine: std::sync::Arc::new(Box::new( - kcl_lib::engine::conn_mock::EngineConnection::new().await.unwrap(), - )), - fs: std::sync::Arc::new(kcl_lib::fs::FileManager::new()), - stdlib: std::sync::Arc::new(kcl_lib::std::StdLib::new()), - settings: Default::default(), - context_type: kcl_lib::executor::ContextType::Mock, - }; - (ctx, program, IdGenerator::default()) -} - -async fn run_fail(code: &str) -> KclError { - let (ctx, program, id_generator) = setup(code).await; - let Err(e) = ctx - .run( - &program, - None, - id_generator, - Some("tests/executor/inputs/no_visuals/".to_owned()), - ) - .await - else { - panic!("Expected this KCL program to fail, but it (incorrectly) never threw an error."); - }; - e -} - -async fn run_parse_fail(code: &str) -> KclError { - let Err(e) = parser::top_level_parse(code) else { - panic!("Expected this KCL program to fail to parse, but it (incorrectly) never threw an error."); - }; - e -} - -gen_test_fail!( - invalid_index_str, - "semantic: Only integers >= 0 can be used as the index of an array, but you're using a string" -); -gen_test_fail!( - invalid_index_negative, - "semantic: '-1' is negative, so you can't index an array with it" -); -gen_test_fail!( - invalid_index_fractional, - "semantic: Only strings or ints (>= 0) can be properties/indexes" -); -gen_test_fail!( - invalid_member_object, - "semantic: Only arrays and objects can be indexed, but you're trying to index an integer" -); -gen_test_fail!( - invalid_member_object_prop, - "semantic: Only arrays and objects can be indexed, but you're trying to index a boolean (true/false value)" -); -gen_test_fail!( - non_string_key_of_object, - "semantic: Only strings can be used as the property of an object, but you're using a number" -); -gen_test_fail!( - array_index_oob, - "undefined value: The array doesn't have any item at index 0" -); -gen_test_fail!( - object_prop_not_found, - "undefined value: Property 'age' not found in object" -); -gen_test_fail!( - pipe_substitution_inside_function_called_from_pipeline, - "semantic: cannot use % outside a pipe expression" -); -// gen_test_fail!( -// if_else_no_expr, -// "syntax: blocks inside an if/else expression must end in an expression" -// ); -gen_test_fail!( - comparisons_multiple, - "semantic: Expected a number, but found a boolean (true/false value)" -); -gen_test_fail!( - import_cycle1, - "import cycle: circular import of modules is not allowed: tests/executor/inputs/no_visuals/import_cycle2.kcl -> tests/executor/inputs/no_visuals/import_cycle3.kcl -> tests/executor/inputs/no_visuals/import_cycle1.kcl -> tests/executor/inputs/no_visuals/import_cycle2.kcl" -); -gen_test_fail!( - import_constant, - "semantic: Error loading imported file. Open it to view more details. export_constant.kcl: Only functions can be exported" -); -gen_test_fail!( - import_side_effect, - "semantic: Error loading imported file. Open it to view more details. export_side_effect.kcl: Cannot send modeling commands while importing. Wrap your code in a function if you want to import the file." -); -gen_test_parse_fail!( - import_from_other_directory, - "syntax: import path may only contain alphanumeric characters, underscore, hyphen, and period. Files in other directories are not yet supported." -); -// TODO: We'd like these tests. -// gen_test_fail!( -// import_in_if, -// "syntax: Can import only import at the top level" -// ); -// gen_test_fail!( -// import_in_function, -// "syntax: Can import only import at the top level" -// ); -gen_test_fail!( - array_elem_push_fail, - "undefined value: The array doesn't have any item at index 3" -); diff --git a/src/wasm-lib/tests/executor/visuals.rs b/src/wasm-lib/tests/executor/visuals.rs deleted file mode 100644 index df4664957..000000000 --- a/src/wasm-lib/tests/executor/visuals.rs +++ /dev/null @@ -1,74 +0,0 @@ -macro_rules! kcl_input { - ($file:literal) => { - include_str!(concat!("inputs/", $file, ".kcl")) - }; -} - -macro_rules! kcl_test { - ($file:literal, $test_name:ident) => { - #[tokio::test(flavor = "multi_thread")] - async fn $test_name() { - let code = kcl_input!($file); - - let result = super::execute_and_snapshot(code, kcl_lib::settings::types::UnitLength::Mm) - .await - .unwrap(); - super::assert_out($file, &result); - } - }; -} - -kcl_test!("sketch_on_face", kcl_test_sketch_on_face); -kcl_test!("poop_chute", kcl_test_poop_chute); -kcl_test!("neg_xz_plane", kcl_test_neg_xz_plane); -kcl_test!("xz_plane", kcl_test_xz_plane); -kcl_test!( - "sketch_on_face_after_fillets_referencing_face", - kcl_test_sketch_on_face_after_fillets_referencing_face -); -kcl_test!("circular_pattern3d_a_pattern", kcl_test_circular_pattern3d_a_pattern); -kcl_test!("linear_pattern3d_a_pattern", kcl_test_linear_pattern3d_a_pattern); - -kcl_test!("tangential_arc", kcl_test_tangential_arc); -kcl_test!( - "big_number_angle_to_match_length_x", - kcl_test_big_number_angle_to_match_length_x -); -kcl_test!( - "big_number_angle_to_match_length_y", - kcl_test_big_number_angle_to_match_length_y -); -kcl_test!("sketch_on_face_circle_tagged", kcl_test_sketch_on_face_circle_tagged); -kcl_test!("basic_fillet_cube_start", kcl_test_basic_fillet_cube_start); -kcl_test!( - "basic_fillet_cube_next_adjacent", - kcl_test_basic_fillet_cube_next_adjacent -); -kcl_test!( - "basic_fillet_cube_previous_adjacent", - kcl_test_basic_fillet_cube_previous_adjacent -); -kcl_test!("basic_fillet_cube_end", kcl_test_basic_fillet_cube_end); -kcl_test!( - "basic_fillet_cube_close_opposite", - kcl_test_basic_fillet_cube_close_opposite -); -kcl_test!("sketch_on_face_end", kcl_test_sketch_on_face_end); -kcl_test!("sketch_on_face_start", kcl_test_sketch_on_face_start); -kcl_test!( - "sketch_on_face_end_negative_extrude", - kcl_test_sketch_on_face_end_negative_extrude -); -kcl_test!("mike_stress_test", kcl_test_mike_stress_test); -kcl_test!("pentagon_fillet_sugar", kcl_test_pentagon_fillet_sugar); -kcl_test!("pipe_as_arg", kcl_test_pipe_as_arg); -kcl_test!("computed_var", kcl_test_computed_var); -kcl_test!("lego", kcl_test_lego); -kcl_test!("riddle_small", kcl_test_riddle_small); -kcl_test!("tan_arc_x_line", kcl_test_tan_arc_x_line); -kcl_test!("fillet-and-shell", kcl_test_fillet_and_shell); -kcl_test!("sketch-on-chamfer-two-times", kcl_test_sketch_on_chamfer_two_times); -kcl_test!( - "sketch-on-chamfer-two-times-different-order", - kcl_test_sketch_on_chamfer_two_times_different_order -);