diff --git a/src/lang/artifact.test.ts b/src/lang/artifact.test.ts index f17c2a81b0..7114920510 100644 --- a/src/lang/artifact.test.ts +++ b/src/lang/artifact.test.ts @@ -55,6 +55,7 @@ const mySketch001 = startSketchOn('XY') ], id: expect.any(String), artifactId: expect.any(String), + originalId: expect.any(String), units: { type: 'Mm', }, @@ -98,6 +99,7 @@ const mySketch001 = startSketchOn('XY') ], sketch: { id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), units: { type: 'Mm', @@ -203,6 +205,7 @@ const sk2 = startSketchOn('XY') ], sketch: { id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), __meta: expect.any(Array), on: expect.any(Object), @@ -308,6 +311,7 @@ const sk2 = startSketchOn('XY') ], sketch: { id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), units: { type: 'Mm', diff --git a/src/lang/executor.test.ts b/src/lang/executor.test.ts index 2ee8bbead6..c44c6ae585 100644 --- a/src/lang/executor.test.ts +++ b/src/lang/executor.test.ts @@ -221,6 +221,7 @@ const newVar = myVar + 1` }, ], id: expect.any(String), + originalId: expect.any(String), artifactId: expect.any(String), units: { type: 'Mm', diff --git a/src/wasm-lib/kcl/src/std/sketch.rs b/src/wasm-lib/kcl/src/std/sketch.rs index 87368d2811..da9ff1530d 100644 --- a/src/wasm-lib/kcl/src/std/sketch.rs +++ b/src/wasm-lib/kcl/src/std/sketch.rs @@ -1360,6 +1360,7 @@ pub(crate) async fn inner_start_profile_at( let sketch = Sketch { id: path_id, + original_id: path_id, artifact_id: path_id.into(), on: sketch_surface.clone(), paths: vec![], diff --git a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap index a9c24da666..dd87ad766b 100644 --- a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap +++ b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing angled_line.kcl +snapshot_kind: text --- { "environments": [ @@ -346,6 +347,7 @@ description: Program memory after executing angled_line.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap index 08a99d2ff7..6866cdf70f 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap @@ -374,6 +374,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -904,6 +905,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -975,6 +977,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1412,6 +1415,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1878,6 +1882,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1949,6 +1954,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap index c8eeb0260c..42c8b8ab81 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap @@ -468,6 +468,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -609,6 +610,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap index 3dc19d8e89..829cee7109 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap @@ -200,6 +200,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap index 6b3616b860..2ab7374809 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap @@ -274,6 +274,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -695,6 +696,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -757,6 +759,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1332,6 +1335,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1394,6 +1398,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1517,6 +1522,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2236,6 +2242,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2298,6 +2305,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2421,6 +2429,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2483,6 +2492,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2836,6 +2846,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3202,6 +3213,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3264,6 +3276,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3779,6 +3792,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3841,6 +3855,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3964,6 +3979,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4628,6 +4644,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4690,6 +4707,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4813,6 +4831,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4875,6 +4894,7 @@ snapshot_kind: text } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap index d58a5870d8..c2e28eab57 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_close_opposite.kcl +snapshot_kind: text --- { "environments": [ @@ -422,6 +423,7 @@ description: Program memory after executing basic_fillet_cube_close_opposite.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap index acb9cdb970..b649ea4cc1 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_end.kcl +snapshot_kind: text --- { "environments": [ @@ -353,6 +354,7 @@ description: Program memory after executing basic_fillet_cube_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap index f68be7a59e..91f43884f0 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_next_adjacent.kcl +snapshot_kind: text --- { "environments": [ @@ -491,6 +492,7 @@ description: Program memory after executing basic_fillet_cube_next_adjacent.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap index b9980aeaf8..9565f7bb44 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_previous_adjacent.kcl +snapshot_kind: text --- { "environments": [ @@ -491,6 +492,7 @@ description: Program memory after executing basic_fillet_cube_previous_adjacent. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap index 55ca2a4823..916aa63797 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing basic_fillet_cube_start.kcl +snapshot_kind: text --- { "environments": [ @@ -353,6 +354,7 @@ description: Program memory after executing basic_fillet_cube_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap index 6a96f6c03e..51b18a1133 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing big_number_angle_to_match_length_x.kcl +snapshot_kind: text --- { "environments": [ @@ -253,6 +254,7 @@ description: Program memory after executing big_number_angle_to_match_length_x.k } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap index 48bf293b1b..dfac9c2ebf 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing big_number_angle_to_match_length_y.kcl +snapshot_kind: text --- { "environments": [ @@ -253,6 +254,7 @@ description: Program memory after executing big_number_angle_to_match_length_y.k } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap index a604a2458e..ea9139d14a 100644 --- a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing circle_three_point.kcl +snapshot_kind: text --- { "environments": [ @@ -126,6 +127,7 @@ description: Program memory after executing circle_three_point.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap index f02ee6ddeb..38e85449b3 100644 --- a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing circular_pattern3d_a_pattern.kcl +snapshot_kind: text --- { "environments": [ @@ -213,6 +214,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -431,6 +433,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -645,6 +648,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -859,6 +863,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1073,6 +1078,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1287,6 +1293,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1501,6 +1508,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1715,6 +1723,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1934,6 +1943,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2148,6 +2158,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2362,6 +2373,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2576,6 +2588,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2790,6 +2803,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3004,6 +3018,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3218,6 +3233,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3432,6 +3448,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3646,6 +3663,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3860,6 +3878,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4074,6 +4093,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4288,6 +4308,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4502,6 +4523,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4716,6 +4738,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4930,6 +4953,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5144,6 +5168,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5358,6 +5383,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5572,6 +5598,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5786,6 +5813,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6000,6 +6028,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6214,6 +6243,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6428,6 +6458,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6642,6 +6673,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6856,6 +6888,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7070,6 +7103,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7284,6 +7318,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7498,6 +7533,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7712,6 +7748,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7926,6 +7963,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8140,6 +8178,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8354,6 +8393,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8568,6 +8608,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8782,6 +8823,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8996,6 +9038,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9210,6 +9253,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9424,6 +9468,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9638,6 +9683,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9852,6 +9898,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10066,6 +10113,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10280,6 +10328,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10494,6 +10543,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10708,6 +10758,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10922,6 +10973,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11136,6 +11188,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11350,6 +11403,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11564,6 +11618,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11778,6 +11833,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11992,6 +12048,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12206,6 +12263,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12420,6 +12478,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12634,6 +12693,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12848,6 +12908,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13062,6 +13123,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13276,6 +13338,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13490,6 +13553,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13704,6 +13768,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -13918,6 +13983,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14132,6 +14198,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14346,6 +14413,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14560,6 +14628,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14774,6 +14843,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -14988,6 +15058,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15202,6 +15273,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15416,6 +15488,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15630,6 +15703,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -15844,6 +15918,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16058,6 +16133,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16272,6 +16348,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16486,6 +16563,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16700,6 +16778,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -16914,6 +16993,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17128,6 +17208,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17342,6 +17423,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17556,6 +17638,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17770,6 +17853,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -17984,6 +18068,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18198,6 +18283,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18412,6 +18498,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18626,6 +18713,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -18840,6 +18928,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19054,6 +19143,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19268,6 +19358,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19482,6 +19573,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19696,6 +19788,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -19910,6 +20003,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20124,6 +20218,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20338,6 +20433,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20552,6 +20648,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20766,6 +20863,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -20980,6 +21078,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21194,6 +21293,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21408,6 +21508,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21622,6 +21723,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -21836,6 +21938,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22050,6 +22153,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22264,6 +22368,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22478,6 +22583,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22692,6 +22798,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -22906,6 +23013,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23120,6 +23228,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23334,6 +23443,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23548,6 +23658,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23762,6 +23873,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -23976,6 +24088,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24190,6 +24303,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24404,6 +24518,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24618,6 +24733,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -24832,6 +24948,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25046,6 +25163,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25260,6 +25378,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25474,6 +25593,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25688,6 +25808,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -25902,6 +26023,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26116,6 +26238,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26330,6 +26453,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26544,6 +26668,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26758,6 +26883,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -26972,6 +27098,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27186,6 +27313,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27400,6 +27528,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27614,6 +27743,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -27828,6 +27958,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28042,6 +28173,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28256,6 +28388,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28470,6 +28603,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28684,6 +28818,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -28898,6 +29033,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29112,6 +29248,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29326,6 +29463,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29540,6 +29678,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29754,6 +29893,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -29968,6 +30108,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30182,6 +30323,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30396,6 +30538,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30610,6 +30753,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -30824,6 +30968,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31038,6 +31183,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31252,6 +31398,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31466,6 +31613,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31680,6 +31828,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -31894,6 +32043,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32108,6 +32258,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32322,6 +32473,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32536,6 +32688,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32750,6 +32903,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -32964,6 +33118,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33178,6 +33333,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33392,6 +33548,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33606,6 +33763,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -33820,6 +33978,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34034,6 +34193,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34248,6 +34408,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34462,6 +34623,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34676,6 +34838,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -34890,6 +35053,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35104,6 +35268,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35318,6 +35483,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35532,6 +35698,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35746,6 +35913,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -35960,6 +36128,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36174,6 +36343,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36388,6 +36558,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36602,6 +36773,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -36816,6 +36988,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37030,6 +37203,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37244,6 +37418,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37458,6 +37633,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37672,6 +37848,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -37886,6 +38063,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38100,6 +38278,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38314,6 +38493,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38528,6 +38708,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38742,6 +38923,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -38956,6 +39138,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39170,6 +39353,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39384,6 +39568,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39598,6 +39783,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -39812,6 +39998,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40026,6 +40213,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40240,6 +40428,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40454,6 +40643,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40668,6 +40858,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -40882,6 +41073,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41096,6 +41288,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41310,6 +41503,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41524,6 +41718,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41738,6 +41933,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -41952,6 +42148,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42166,6 +42363,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42380,6 +42578,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42594,6 +42793,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -42808,6 +43008,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43022,6 +43223,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43236,6 +43438,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43450,6 +43653,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43664,6 +43868,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -43878,6 +44083,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44092,6 +44298,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44306,6 +44513,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44520,6 +44728,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44734,6 +44943,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -44948,6 +45158,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45162,6 +45373,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45376,6 +45588,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45590,6 +45803,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -45804,6 +46018,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46018,6 +46233,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46232,6 +46448,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46446,6 +46663,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46660,6 +46878,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -46874,6 +47093,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47088,6 +47308,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47302,6 +47523,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47516,6 +47738,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47730,6 +47953,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -47944,6 +48168,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48158,6 +48383,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48372,6 +48598,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48586,6 +48813,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -48800,6 +49028,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49014,6 +49243,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49228,6 +49458,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49442,6 +49673,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49656,6 +49888,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -49870,6 +50103,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50084,6 +50318,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50298,6 +50533,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50512,6 +50748,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50726,6 +50963,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -50940,6 +51178,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51154,6 +51393,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51368,6 +51608,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51582,6 +51823,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -51796,6 +52038,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52010,6 +52253,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52224,6 +52468,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52438,6 +52683,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52652,6 +52898,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -52866,6 +53113,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53080,6 +53328,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53294,6 +53543,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53508,6 +53758,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53722,6 +53973,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -53936,6 +54188,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54150,6 +54403,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54364,6 +54618,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54578,6 +54833,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -54792,6 +55048,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55006,6 +55263,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55220,6 +55478,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55434,6 +55693,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55648,6 +55908,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -55862,6 +56123,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56076,6 +56338,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56290,6 +56553,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56504,6 +56768,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56718,6 +56983,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -56932,6 +57198,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57146,6 +57413,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57360,6 +57628,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57574,6 +57843,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -57788,6 +58058,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58002,6 +58273,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58216,6 +58488,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58430,6 +58703,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58644,6 +58918,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -58858,6 +59133,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59072,6 +59348,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59286,6 +59563,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59500,6 +59778,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59714,6 +59993,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -59928,6 +60208,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60142,6 +60423,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60356,6 +60638,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60570,6 +60853,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60784,6 +61068,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -60998,6 +61283,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61212,6 +61498,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61426,6 +61713,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61640,6 +61928,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -61854,6 +62143,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62068,6 +62358,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62282,6 +62573,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62496,6 +62788,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62710,6 +63003,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -62924,6 +63218,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -63138,6 +63433,7 @@ description: Program memory after executing circular_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/cube/program_memory.snap b/src/wasm-lib/kcl/tests/cube/program_memory.snap index 51ba27aa25..dbd4efa6e8 100644 --- a/src/wasm-lib/kcl/tests/cube/program_memory.snap +++ b/src/wasm-lib/kcl/tests/cube/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing cube.kcl +snapshot_kind: text --- { "environments": [ @@ -944,6 +945,7 @@ description: Program memory after executing cube.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap index 1444814801..c84f47843a 100644 --- a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing fillet-and-shell.kcl +snapshot_kind: text --- { "environments": [ @@ -504,6 +505,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1787,6 +1789,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2389,6 +2392,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2674,6 +2678,7 @@ description: Program memory after executing fillet-and-shell.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap index a529a23a29..f034544e18 100644 --- a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing function_sketch.kcl +snapshot_kind: text --- { "environments": [ @@ -622,6 +623,7 @@ description: Program memory after executing function_sketch.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap index d039d541c2..c178837fd5 100644 --- a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing function_sketch_with_position.kcl +snapshot_kind: text --- { "environments": [ @@ -608,6 +609,7 @@ description: Program memory after executing function_sketch_with_position.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap index 8a207eb9af..f4145dca76 100644 --- a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap +++ b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing helix_ccw.kcl +snapshot_kind: text --- { "environments": [ @@ -126,6 +127,7 @@ description: Program memory after executing helix_ccw.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap index 4bf54b88c0..d0c41e3a14 100644 --- a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap +++ b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing i_shape.kcl +snapshot_kind: text --- { "environments": [ @@ -643,6 +644,7 @@ description: Program memory after executing i_shape.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1623,6 +1625,7 @@ description: Program memory after executing i_shape.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1923,6 +1926,7 @@ description: Program memory after executing i_shape.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap b/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap index 9a99380ce2..4537d1c572 100644 --- a/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing import_function_not_sketch.kcl +snapshot_kind: text --- { "environments": [ @@ -471,6 +472,7 @@ description: Program memory after executing import_function_not_sketch.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -905,6 +907,7 @@ description: Program memory after executing import_function_not_sketch.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap index bd86bd7ab9..5b2facea90 100644 --- a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing import_whole.kcl +snapshot_kind: text --- { "environments": [ @@ -126,6 +127,7 @@ description: Program memory after executing import_whole.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Inches" }, diff --git a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap index 41fa7b8729..601d299d2b 100644 --- a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing kittycad_svg.kcl +snapshot_kind: text --- { "environments": [ @@ -8820,6 +8821,7 @@ description: Program memory after executing kittycad_svg.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap index c109d5d693..4b45486044 100644 --- a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing linear_pattern3d_a_pattern.kcl +snapshot_kind: text --- { "environments": [ @@ -213,6 +214,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -431,6 +433,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -645,6 +648,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -859,6 +863,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1073,6 +1078,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1287,6 +1293,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1501,6 +1508,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1715,6 +1723,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1934,6 +1943,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2148,6 +2158,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2362,6 +2373,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2576,6 +2588,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2790,6 +2803,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3004,6 +3018,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3218,6 +3233,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3432,6 +3448,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3646,6 +3663,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3860,6 +3878,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4074,6 +4093,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4288,6 +4308,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4502,6 +4523,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4716,6 +4738,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4930,6 +4953,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5144,6 +5168,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5358,6 +5383,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5572,6 +5598,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -5786,6 +5813,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6000,6 +6028,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6214,6 +6243,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6428,6 +6458,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6642,6 +6673,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -6856,6 +6888,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7070,6 +7103,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7284,6 +7318,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7498,6 +7533,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7712,6 +7748,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -7926,6 +7963,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8140,6 +8178,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8354,6 +8393,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8568,6 +8608,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8782,6 +8823,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -8996,6 +9038,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9210,6 +9253,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9424,6 +9468,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9638,6 +9683,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -9852,6 +9898,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10066,6 +10113,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10280,6 +10328,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10494,6 +10543,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10708,6 +10758,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -10922,6 +10973,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11136,6 +11188,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11350,6 +11403,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11564,6 +11618,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11778,6 +11833,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -11992,6 +12048,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -12206,6 +12263,7 @@ description: Program memory after executing linear_pattern3d_a_pattern.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap index f45635096d..523a1806a1 100644 --- a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap +++ b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing mike_stress_test.kcl +snapshot_kind: text --- { "environments": [ @@ -31120,6 +31121,7 @@ description: Program memory after executing mike_stress_test.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap index ddbd6f73b7..c126aadf24 100644 --- a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing neg_xz_plane.kcl +snapshot_kind: text --- { "environments": [ @@ -182,6 +183,7 @@ description: Program memory after executing neg_xz_plane.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/parametric/program_memory.snap b/src/wasm-lib/kcl/tests/parametric/program_memory.snap index ea6ed2a6ef..a651ea5362 100644 --- a/src/wasm-lib/kcl/tests/parametric/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing parametric.kcl +snapshot_kind: text --- { "environments": [ @@ -288,6 +289,7 @@ description: Program memory after executing parametric.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap index 6425c6b1aa..d11b953e86 100644 --- a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing parametric_with_tan_arc.kcl +snapshot_kind: text --- { "environments": [ @@ -360,6 +361,7 @@ description: Program memory after executing parametric_with_tan_arc.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap index a9342181a4..065169e9cf 100644 --- a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing pentagon_fillet_sugar.kcl +snapshot_kind: text --- { "environments": [ @@ -713,6 +714,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -842,6 +844,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1297,6 +1300,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1426,6 +1430,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2318,6 +2323,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2782,6 +2788,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3275,6 +3282,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3404,6 +3412,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3913,6 +3922,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4042,6 +4052,7 @@ description: Program memory after executing pentagon_fillet_sugar.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap index 33375cae45..ebf1a26ca8 100644 --- a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing pipe_as_arg.kcl +snapshot_kind: text --- { "environments": [ @@ -1765,6 +1766,7 @@ description: Program memory after executing pipe_as_arg.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap index 3cdf5c8333..2b99727b4d 100644 --- a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap +++ b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing poop_chute.kcl +snapshot_kind: text --- { "environments": [ @@ -680,6 +681,7 @@ description: Program memory after executing poop_chute.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1213,6 +1215,7 @@ description: Program memory after executing poop_chute.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1764,6 +1767,7 @@ description: Program memory after executing poop_chute.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap index 9200fe8359..eeb9efcdbc 100644 --- a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap +++ b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing riddle_small.kcl +snapshot_kind: text --- { "environments": [ @@ -322,6 +323,7 @@ description: Program memory after executing riddle_small.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap index 59f1e3bc98..322697ee03 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch-on-chamfer-two-times-different-order.kcl +snapshot_kind: text --- { "environments": [ @@ -544,6 +545,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1330,6 +1332,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1604,6 +1607,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2622,6 +2626,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3294,6 +3299,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3568,6 +3574,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4240,6 +4247,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4469,6 +4477,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap index 5de66051b8..3be1ab4f53 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch-on-chamfer-two-times.kcl +snapshot_kind: text --- { "environments": [ @@ -544,6 +545,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1330,6 +1332,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1604,6 +1607,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -2622,6 +2626,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3294,6 +3299,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -3568,6 +3574,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4240,6 +4247,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -4469,6 +4477,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap index 520bcb444b..e986a41985 100644 --- a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_in_object.kcl +snapshot_kind: text --- { "environments": [ @@ -1173,6 +1174,7 @@ description: Program memory after executing sketch_in_object.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1330,6 +1332,7 @@ description: Program memory after executing sketch_in_object.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap index 873ee9531d..bdeb2380c2 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face.kcl +snapshot_kind: text --- { "environments": [ @@ -344,6 +345,7 @@ description: Program memory after executing sketch_on_face.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -787,6 +789,7 @@ description: Program memory after executing sketch_on_face.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -849,6 +852,7 @@ description: Program memory after executing sketch_on_face.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap index 9b1546d96a..d8c42abf6f 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_after_fillets_referencing_face.kcl +snapshot_kind: text --- { "environments": [ @@ -537,6 +538,7 @@ description: Program memory after executing sketch_on_face_after_fillets_referen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1448,6 +1450,7 @@ description: Program memory after executing sketch_on_face_after_fillets_referen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1526,6 +1529,7 @@ description: Program memory after executing sketch_on_face_after_fillets_referen } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap index 1632d276f5..b80e225a14 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_circle_tagged.kcl +snapshot_kind: text --- { "environments": [ @@ -607,6 +608,7 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -902,6 +904,7 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1031,6 +1034,7 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap index d476066a03..914475e8eb 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_end.kcl +snapshot_kind: text --- { "environments": [ @@ -541,6 +542,7 @@ description: Program memory after executing sketch_on_face_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -913,6 +915,7 @@ description: Program memory after executing sketch_on_face_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -975,6 +978,7 @@ description: Program memory after executing sketch_on_face_end.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap index af13675656..a0ab1b8066 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_end_negative_extrude.kcl +snapshot_kind: text --- { "environments": [ @@ -541,6 +542,7 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -913,6 +915,7 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -975,6 +978,7 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap index f18bc42162..c9155b3b01 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing sketch_on_face_start.kcl +snapshot_kind: text --- { "environments": [ @@ -541,6 +542,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -758,6 +760,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1130,6 +1133,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, @@ -1192,6 +1196,7 @@ description: Program memory after executing sketch_on_face_start.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap index bef41e2136..514a4d04b3 100644 --- a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing tangential_arc.kcl +snapshot_kind: text --- { "environments": [ @@ -187,6 +188,7 @@ description: Program memory after executing tangential_arc.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" }, diff --git a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap index 9a197bc7ba..45fedb2e62 100644 --- a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap @@ -1,6 +1,7 @@ --- source: kcl/src/simulation_tests.rs description: Program memory after executing xz_plane.kcl +snapshot_kind: text --- { "environments": [ @@ -182,6 +183,7 @@ description: Program memory after executing xz_plane.kcl } }, "artifactId": "[uuid]", + "originalId": "[uuid]", "units": { "type": "Mm" },