diff --git a/indoor_house/bpy_render_views.py b/indoor_house/bpy_render_views.py new file mode 100644 index 0000000000000000000000000000000000000000..d83fedd477da81ef87ee229a9d507f2296b20f12 --- /dev/null +++ b/indoor_house/bpy_render_views.py @@ -0,0 +1,192 @@ +import argparse +import os +import json +from math import radians +import bpy +import numpy as np + +COLOR_SPACES = ["display", "linear"] +DEVICES = ["cpu", "cuda", "optix"] + +def listify_matrix(matrix): + matrix_list = [] + for row in matrix: + matrix_list.append(list(row)) + return matrix_list + +def parent_obj_to_camera(b_camera, origin): + b_empty = bpy.data.objects.new("Empty", None) + b_empty.location = origin + b_camera.parent = b_empty + + scn = bpy.context.scene + scn.collection.objects.link(b_empty) + bpy.context.view_layer.objects.active = b_empty + + return b_empty + +def main(args): + bpy.ops.wm.open_mainfile(filepath=args.blend_path) + + scene = bpy.data.scenes["Scene"] + scene.render.engine = "CYCLES" + scene.render.use_persistent_data = True + scene.cycles.samples = 256 + bpy.context.scene.unit_settings.scale_length = 0.01 + if args.device == "cpu": + bpy.context.preferences.addons["cycles"].preferences.compute_device_type = "NONE" + bpy.context.scene.cycles.device = "CPU" + elif args.device == "cuda": + bpy.context.preferences.addons["cycles"].preferences.compute_device_type = "CUDA" + bpy.context.scene.cycles.device = "GPU" + elif args.device == "optix": + bpy.context.preferences.addons["cycles"].preferences.compute_device_type = "OPTIX" + bpy.context.scene.cycles.device = "GPU" + bpy.context.preferences.addons["cycles"].preferences.get_devices() + + scene.view_layers[0].use_pass_combined = True + scene.use_nodes = True + tree = scene.node_tree + + if args.depth: + scene.view_layers[0].use_pass_z = True + combine_color = tree.nodes.new("CompositorNodeCombineColor") + depth_output = tree.nodes.new("CompositorNodeOutputFile") + if args.normal: + scene.view_layers[0].use_pass_normal = True + normal_output = tree.nodes.new("CompositorNodeOutputFile") + if args.depth or args.normal: + render_layers = tree.nodes.new("CompositorNodeRLayers") + + scene.render.filepath = args.renders_path + scene.render.use_file_extension = True + scene.render.use_overwrite = True + scene.render.image_settings.color_mode = "RGBA" + + if args.color_space == "display": + scene.render.image_settings.file_format = "PNG" + scene.render.image_settings.color_depth = "8" + scene.render.image_settings.color_management = "FOLLOW_SCENE" + elif args.color_space == "linear": + scene.render.image_settings.file_format = "OPEN_EXR" + scene.render.image_settings.color_depth = "32" + + if args.depth: + depth_output.base_path = os.path.join(args.renders_path, "depth") + depth_output.file_slots[0].use_node_format = True + scene.frame_set(0) + + depth_output.format.file_format = "OPEN_EXR" + depth_output.format.color_mode = "RGB" + depth_output.format.color_depth = "32" + depth_output.format.exr_codec = "NONE" + + links = tree.links + combine_color.mode = "RGB" + links.new(render_layers.outputs["Depth"], combine_color.inputs["Red"]) + combine_color.inputs["Green"].default_value = 0 + combine_color.inputs["Blue"].default_value = 0 + combine_color.inputs["Alpha"].default_value = 1 + + links.new(combine_color.outputs["Image"], depth_output.inputs["Image"]) + + if args.normal: + normal_output.base_path = os.path.join(args.renders_path, "normal") + normal_output.file_slots[0].use_node_format = True + scene.frame_set(0) + + normal_output.format.file_format = "OPEN_EXR" + normal_output.format.color_mode = "RGB" + normal_output.format.color_depth = "32" + normal_output.format.exr_codec = "NONE" + + links = tree.links + combine_color.mode = "RGB" + links.new(render_layers.outputs["Normal"], normal_output.inputs["Image"]) + + scene.render.dither_intensity = 0.0 + scene.render.film_transparent = True + scene.render.resolution_percentage = 100 + scene.render.resolution_x = args.resolution[0] + scene.render.resolution_y = args.resolution[1] + + cam = bpy.data.objects["Camera"] + cam.location = (4.0, -214.736, 120.0) + cam.rotation_mode = "XYZ" + cam_constraint = cam.constraints.new(type="TRACK_TO") + cam_constraint.track_axis = "TRACK_NEGATIVE_Z" + cam_constraint.up_axis = "UP_Y" + b_empty = parent_obj_to_camera(cam, (0, 0, 100.0)) + cam_constraint.target = b_empty + + args.renders_path = os.path.normpath(args.renders_path) + folder_name = os.path.basename(args.renders_path) + renders_parent_path = os.path.dirname(args.renders_path) + transforms_path = os.path.join(renders_parent_path, f"transforms_{folder_name}.json") + + stepsize = 360.0 / args.num_views + out_data = { + "camera_angle_x": cam.data.angle_x, + "frames": [] + } + + for i in range(args.num_views): + if args.random_views: + if args.upper_views: + # 从上半球随机采样视图 + # 限制 x 轴(pitch)的旋转范围以避免向下拍摄 + pitch = radians(np.random.uniform(-20.0 , 30.0)) # 限制俯仰角在 0 到 90 度之间 + yaw = radians(np.random.uniform(0, 360)) # 随机偏航角 + b_empty.rotation_euler = (pitch, 0, yaw) + else: + # 完全随机采样视图 + b_empty.rotation_euler = ( + radians(np.random.uniform(0, 180)), + 0, + radians(np.random.uniform(0, 360)) + ) + else: + # 等间隔采样视图 + b_empty.rotation_euler[2] = radians(i * stepsize) + + scene.render.filepath = os.path.join(args.renders_path, f"r_{i}") + if args.depth: + depth_output.file_slots[0].path = f"r_{i}" + if args.normal: + normal_output.file_slots[0].path = f"r_{i}" + bpy.ops.render.render(write_still=True) + + if args.depth: + os.rename(os.path.join(depth_output.base_path, f"r_{i}0000.exr"), + os.path.join(depth_output.base_path, f"r_{i}.exr")) + if args.normal: + os.rename(os.path.join(normal_output.base_path, f"r_{i}0000.exr"), + os.path.join(normal_output.base_path, f"r_{i}.exr")) + + frame_data = { + "file_path": os.path.join(".", os.path.relpath(scene.render.filepath, start=renders_parent_path)), + "rotation": radians(i * stepsize), + "transform_matrix": listify_matrix(cam.matrix_world) + } + out_data["frames"].append(frame_data) + + with open(transforms_path, "w") as out_file: + json.dump(out_data, out_file, indent=4) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Script for rendering novel views of synthetic Blender scenes.") + parser.add_argument("blend_path", type=str, help="Path to the blend-file of the synthetic Blender scene.") + parser.add_argument("renders_path", type=str, help="Desired path to the novel view renders.") + parser.add_argument("num_views", type=int, help="Number of novel view renders.") + parser.add_argument("resolution", type=int, nargs=2, default=[1080, 720], help="Image resolution of the novel view renders.") + parser.add_argument("--color_space", type=str, choices=COLOR_SPACES, default="display", help="Color space of the output novel view images.") + parser.add_argument("--device", type=str, choices=DEVICES, default="cuda", help="Compute device type for rendering.") + parser.add_argument("--random_views", action="store_true", help="Randomly sample novel views.") + parser.add_argument("--upper_views", action="store_true", help="Only sample novel views from the upper hemisphere.") + parser.add_argument("--depth", action="store_true", help="Render depth maps too.") + parser.add_argument("--normal", action="store_true", help="Render normal maps too.") + args = parser.parse_args() + + main(args) + +# bpy.context.scene.unit_settings.scale_length = 0.01 diff --git a/indoor_house/views/test/r_1.png b/indoor_house/views/test/r_1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc96780c7cc4ba2ca17f09541270db4efe9c295d --- /dev/null +++ b/indoor_house/views/test/r_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a21c69bd13e8e00346d438e3fd65169bdd923c63188286e429764dc0d79d1f +size 786139 diff --git a/indoor_house/views/test/r_100.png b/indoor_house/views/test/r_100.png new file mode 100644 index 0000000000000000000000000000000000000000..3b81c39f6a3f7f5d20dc163101434a8e3b5eb0e9 --- /dev/null +++ b/indoor_house/views/test/r_100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0966c106d9d5df281f848b375559dae23c5eb1d71505204cf557cc60edfea2af +size 884665 diff --git a/indoor_house/views/test/r_101.png b/indoor_house/views/test/r_101.png new file mode 100644 index 0000000000000000000000000000000000000000..5a5dec9a0fb582e721b1e54e8a4308328b5e2255 --- /dev/null +++ b/indoor_house/views/test/r_101.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b19d81593e5928d658cb11fc83cbb1d3980a0f1074d2c80b4ea68e99f645089f +size 926693 diff --git a/indoor_house/views/test/r_103.png b/indoor_house/views/test/r_103.png new file mode 100644 index 0000000000000000000000000000000000000000..ed798e938465ee5751ceaeb227f15937b2266635 --- /dev/null +++ b/indoor_house/views/test/r_103.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf97a7b4df3665c7f39b4dfa7f3312d1deb6dfd4309259c542dbda64e985c70a +size 798709 diff --git a/indoor_house/views/test/r_104.png b/indoor_house/views/test/r_104.png new file mode 100644 index 0000000000000000000000000000000000000000..d8623a01c242bb152d14ee47aa46cb16b1d10b99 --- /dev/null +++ b/indoor_house/views/test/r_104.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74bc37c43de3b22db3457c7076249196c4ccbd2a3e7f7f6711aab9fdc3589871 +size 954177 diff --git a/indoor_house/views/test/r_105.png b/indoor_house/views/test/r_105.png new file mode 100644 index 0000000000000000000000000000000000000000..8865806fd8f84e7cb6eba71b585ff036dcc250cd --- /dev/null +++ b/indoor_house/views/test/r_105.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785469f86aa6f283e97197f4603f437f342ecd73cfe6f4fba0810f4d1b0959de +size 984661 diff --git a/indoor_house/views/test/r_106.png b/indoor_house/views/test/r_106.png new file mode 100644 index 0000000000000000000000000000000000000000..02539a70a39d415317b8fd95236674983580f001 --- /dev/null +++ b/indoor_house/views/test/r_106.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c634802688d7f3a0d5edfcf85d8cfe523ac7828eeb825c1d0ab3e5d60ff0691 +size 1018570 diff --git a/indoor_house/views/test/r_108.png b/indoor_house/views/test/r_108.png new file mode 100644 index 0000000000000000000000000000000000000000..d9913bc9e439d28c5b4567b412a2d4e0a9478157 --- /dev/null +++ b/indoor_house/views/test/r_108.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd0eabee4dd93bdfacdec86c0ee7b3653bf675dee23959dc28959ad20f32263 +size 725165 diff --git a/indoor_house/views/test/r_109.png b/indoor_house/views/test/r_109.png new file mode 100644 index 0000000000000000000000000000000000000000..3ae65bcc82cf38e11339fd50c3ff451ea3773c21 --- /dev/null +++ b/indoor_house/views/test/r_109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3ffeac21f3a59bc38862a99685de5ca970f65bf3a7856a5cc4c3e2f05b6fad7 +size 825418 diff --git a/indoor_house/views/test/r_111.png b/indoor_house/views/test/r_111.png new file mode 100644 index 0000000000000000000000000000000000000000..db0d4d721f250c6759d84a2948e04a81272cb2d1 --- /dev/null +++ b/indoor_house/views/test/r_111.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc0e25284f4a99bea2c3e8eb014804e68124679706f5f3f592e51c933716af1 +size 873701 diff --git a/indoor_house/views/test/r_112.png b/indoor_house/views/test/r_112.png new file mode 100644 index 0000000000000000000000000000000000000000..ae65aac270e020951d0000506e6cf5caf852a32e --- /dev/null +++ b/indoor_house/views/test/r_112.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9540e9ee8fab764fdf0a791ee60110f0376bdae00db80eef2d36bf6f97455cbd +size 811608 diff --git a/indoor_house/views/test/r_113.png b/indoor_house/views/test/r_113.png new file mode 100644 index 0000000000000000000000000000000000000000..d94c4cecdfef4c6be6e111c8a04fdbccd3473287 --- /dev/null +++ b/indoor_house/views/test/r_113.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d54726c78e965dfc5788b250a7767bab4c5b7077f09394be2eab8d5abda7194 +size 807955 diff --git a/indoor_house/views/test/r_114.png b/indoor_house/views/test/r_114.png new file mode 100644 index 0000000000000000000000000000000000000000..2e675fb2cde136fb69824cdcebf6de0d31740b9a --- /dev/null +++ b/indoor_house/views/test/r_114.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faf623e4a0ad5581d0056bc64395b6b8f34dc865c16d9ab842acf88d440cc4b1 +size 793054 diff --git a/indoor_house/views/test/r_116.png b/indoor_house/views/test/r_116.png new file mode 100644 index 0000000000000000000000000000000000000000..c8aa327a88efb59e5adaa2bdfa14bc8a23ab072b --- /dev/null +++ b/indoor_house/views/test/r_116.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd8945028c4d6c32fae0719fd8486e3f144af8769509c4a18d6e14416280db8 +size 878466 diff --git a/indoor_house/views/test/r_117.png b/indoor_house/views/test/r_117.png new file mode 100644 index 0000000000000000000000000000000000000000..bc81e9c92fe590a0a4636904636949ea68ea4430 --- /dev/null +++ b/indoor_house/views/test/r_117.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d853c559afccf7a5062daf2a359d96ac9d61d9a6422ef196c85a6fd48aab845 +size 750348 diff --git a/indoor_house/views/test/r_118.png b/indoor_house/views/test/r_118.png new file mode 100644 index 0000000000000000000000000000000000000000..f9006c444b03573899890a56ead5843d8ec72774 --- /dev/null +++ b/indoor_house/views/test/r_118.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6f39d46dee51241639df09a19085429f7e3b2028499ad5a97e75b3c4dea95c +size 749414 diff --git a/indoor_house/views/test/r_120.png b/indoor_house/views/test/r_120.png new file mode 100644 index 0000000000000000000000000000000000000000..bf7b02d65e707ba1846a191b48bbbfd1ea1fc3d1 --- /dev/null +++ b/indoor_house/views/test/r_120.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eadc310e308dc5a06da698e7ddd23512eaf59896b85f99393aa321edd099f8fd +size 923253 diff --git a/indoor_house/views/test/r_121.png b/indoor_house/views/test/r_121.png new file mode 100644 index 0000000000000000000000000000000000000000..d51fdb811a854acef736b2b39cf1df66b554deb4 --- /dev/null +++ b/indoor_house/views/test/r_121.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf26f291ddc191921201791f6222e82f99092d99a5844b27171fcf4961eeda13 +size 938410 diff --git a/indoor_house/views/test/r_124.png b/indoor_house/views/test/r_124.png new file mode 100644 index 0000000000000000000000000000000000000000..82c6be4a9800f59be982725b974c76093afee2c5 --- /dev/null +++ b/indoor_house/views/test/r_124.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0b53e4de7b7e990f8e0cde4626b0a54370deee4eaee82fc6686dd09303148d +size 750660 diff --git a/indoor_house/views/test/r_125.png b/indoor_house/views/test/r_125.png new file mode 100644 index 0000000000000000000000000000000000000000..dc401fb631db2d8e452aaea21b2be1faec820b3d --- /dev/null +++ b/indoor_house/views/test/r_125.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:808f9dd96c79a99f6f6dd6f67befb3a53390ee36ccbd216221a1293071bb631d +size 807586 diff --git a/indoor_house/views/test/r_127.png b/indoor_house/views/test/r_127.png new file mode 100644 index 0000000000000000000000000000000000000000..46797c78edbab51873c66346f29b2ad2d18e5b1f --- /dev/null +++ b/indoor_house/views/test/r_127.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b481a2daf277216e232e5f475033a24b44039769f0754c1cecd1f4a58a611d70 +size 729660 diff --git a/indoor_house/views/test/r_128.png b/indoor_house/views/test/r_128.png new file mode 100644 index 0000000000000000000000000000000000000000..b07222b23482430c180a3b759c6710065bf8ece5 --- /dev/null +++ b/indoor_house/views/test/r_128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b68d981b887554dfcecd38306ae5b4decb7e14444c5c6e3daa4150c42bf3297 +size 727769 diff --git a/indoor_house/views/test/r_131.png b/indoor_house/views/test/r_131.png new file mode 100644 index 0000000000000000000000000000000000000000..52177d6e2b997f28ab8c4b26411dc6d3bc052684 --- /dev/null +++ b/indoor_house/views/test/r_131.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3279783762f1046c8f8b9233c3c129bda51f0853cba3e98445666d23538d2bb4 +size 898253 diff --git a/indoor_house/views/test/r_132.png b/indoor_house/views/test/r_132.png new file mode 100644 index 0000000000000000000000000000000000000000..9b619c17ac986a584524ed549fa31e9ee251db35 --- /dev/null +++ b/indoor_house/views/test/r_132.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c8db8983b36ef272af84460df2e9ebac32691897dbe6feee1e0c5e314ac916c +size 895373 diff --git a/indoor_house/views/test/r_134.png b/indoor_house/views/test/r_134.png new file mode 100644 index 0000000000000000000000000000000000000000..d62193f504136b7dd775f35a0d1c57d9240cdcf1 --- /dev/null +++ b/indoor_house/views/test/r_134.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503552aee39bcb9303549271cda01ff49ebca68d51c625130a4eeaa94a1a9a3c +size 945424 diff --git a/indoor_house/views/test/r_142.png b/indoor_house/views/test/r_142.png new file mode 100644 index 0000000000000000000000000000000000000000..9f0048fb338680cb54b2e267a363b1719e131aa5 --- /dev/null +++ b/indoor_house/views/test/r_142.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac4a4f9f87de9540b705918564365b1973fce5c0439770c9fe10400978f9fc2 +size 743238 diff --git a/indoor_house/views/test/r_143.png b/indoor_house/views/test/r_143.png new file mode 100644 index 0000000000000000000000000000000000000000..8a4394803c034e3da029f6bb6be461d6f55393fa --- /dev/null +++ b/indoor_house/views/test/r_143.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0331ee6fbeb726c7a2e6b8f485520ed4d4e96cf055a8a699c8524b2310511364 +size 1051808 diff --git a/indoor_house/views/test/r_144.png b/indoor_house/views/test/r_144.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe27d47a395e361ba793016eb45852ed3a34d64 --- /dev/null +++ b/indoor_house/views/test/r_144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4851aec33ac02de1acf0850c31072be9a264ffee672cbb8708158ce143bb7ce +size 817528 diff --git a/indoor_house/views/test/r_146.png b/indoor_house/views/test/r_146.png new file mode 100644 index 0000000000000000000000000000000000000000..b7aba0ca4d0226c807b4847d3f0dec4d979dd2c6 --- /dev/null +++ b/indoor_house/views/test/r_146.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb72e692e0f613687f652694f42d2d816d62a6730ab6ad452ad931b488d34fe +size 955598 diff --git a/indoor_house/views/test/r_148.png b/indoor_house/views/test/r_148.png new file mode 100644 index 0000000000000000000000000000000000000000..ac3b98f4f56c531cee0137a5402ac777f004b329 --- /dev/null +++ b/indoor_house/views/test/r_148.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da827fa1aa5cdb3915cc35ab0f81f417dfd9777acd329fbbb40f9d1aca2cf39 +size 957695 diff --git a/indoor_house/views/test/r_152.png b/indoor_house/views/test/r_152.png new file mode 100644 index 0000000000000000000000000000000000000000..b4f6f83353b3c05714bb91e83bcbf22337698dd8 --- /dev/null +++ b/indoor_house/views/test/r_152.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ae436be9cc61503670ec9648dc66177c546bdcfdb26270c40927ef911da340 +size 916507 diff --git a/indoor_house/views/test/r_157.png b/indoor_house/views/test/r_157.png new file mode 100644 index 0000000000000000000000000000000000000000..9bcb4edd4ed34a4817ffffb175ce095e9421fb4d --- /dev/null +++ b/indoor_house/views/test/r_157.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47b0316d5d873d51e8a93dd59a187f60dfbb8dcae3acbf02655c5e77dd0489d +size 842493 diff --git a/indoor_house/views/test/r_158.png b/indoor_house/views/test/r_158.png new file mode 100644 index 0000000000000000000000000000000000000000..464216cbe560bd7a387cea4cc620206e8fac3647 --- /dev/null +++ b/indoor_house/views/test/r_158.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d029f78d4c15d9b093e79c4b6323b2e153f95adff059fa52550eb733b2ed7451 +size 781484 diff --git a/indoor_house/views/test/r_159.png b/indoor_house/views/test/r_159.png new file mode 100644 index 0000000000000000000000000000000000000000..75ce4b8cfc552806b05df4c1df9928d3d11bba9a --- /dev/null +++ b/indoor_house/views/test/r_159.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c3616fe5a0131b6b3791dff9ef278a0e71c91c433f10f898c029e4ab0f2de6 +size 1056783 diff --git a/indoor_house/views/test/r_160.png b/indoor_house/views/test/r_160.png new file mode 100644 index 0000000000000000000000000000000000000000..8a493ae655182bbabeb9fb76fbcf4c483495f0bc --- /dev/null +++ b/indoor_house/views/test/r_160.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589f7f2d0acf5a49adbabaf18596fb5604c3e3e4c470dced0f98ae9e02b3cfb9 +size 935147 diff --git a/indoor_house/views/test/r_162.png b/indoor_house/views/test/r_162.png new file mode 100644 index 0000000000000000000000000000000000000000..335b249ac446ba0dc12aee87609c095ab5d8a01a --- /dev/null +++ b/indoor_house/views/test/r_162.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51488b6a3693e76a91af7cf331f341118154f2a14883678931ab73dd5d94682e +size 960940 diff --git a/indoor_house/views/test/r_163.png b/indoor_house/views/test/r_163.png new file mode 100644 index 0000000000000000000000000000000000000000..44dcdf9dd81dbba848a30cbbdb6fd200b68935a5 --- /dev/null +++ b/indoor_house/views/test/r_163.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d11883407139f024ee2d0f15d89f146eb4b9e7d292cd9b39c92bcb6c865c49 +size 924088 diff --git a/indoor_house/views/test/r_165.png b/indoor_house/views/test/r_165.png new file mode 100644 index 0000000000000000000000000000000000000000..6747bf53692776d2020add886c91c04764950309 --- /dev/null +++ b/indoor_house/views/test/r_165.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c51469a719605a98db9bfbc03d26a085ab42ef1308340032e3362e10cdd38b2 +size 964371 diff --git a/indoor_house/views/test/r_166.png b/indoor_house/views/test/r_166.png new file mode 100644 index 0000000000000000000000000000000000000000..847b1ca2c0b6181d48942270ecef0ae89b6eee81 --- /dev/null +++ b/indoor_house/views/test/r_166.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daaab495fdf667eefc4fd730f880290934715ce1bd865feb4796208b6315ef0e +size 842539 diff --git a/indoor_house/views/test/r_168.png b/indoor_house/views/test/r_168.png new file mode 100644 index 0000000000000000000000000000000000000000..54ecb234c580c3d50635e7635bd930c026d01a58 --- /dev/null +++ b/indoor_house/views/test/r_168.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037e3b85b6122cdc3b1bf3da8825d6f79b844ee7af725f06422425bb0e4f8b47 +size 947040 diff --git a/indoor_house/views/test/r_169.png b/indoor_house/views/test/r_169.png new file mode 100644 index 0000000000000000000000000000000000000000..c60349c43dedec6bc8577688b72b2916c2198ec7 --- /dev/null +++ b/indoor_house/views/test/r_169.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83ccc0cecca78411ac849c8811de0847dac85a38d75ea242e145d9d142b38aa +size 784650 diff --git a/indoor_house/views/test/r_174.png b/indoor_house/views/test/r_174.png new file mode 100644 index 0000000000000000000000000000000000000000..7115b9506fd6457ebaaf35c21c3686bedd355fcb --- /dev/null +++ b/indoor_house/views/test/r_174.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e17691d58d3816245519a273d050a32df19480a63cc50b3db924a57844c24c +size 932879 diff --git a/indoor_house/views/test/r_175.png b/indoor_house/views/test/r_175.png new file mode 100644 index 0000000000000000000000000000000000000000..58dd9ae20cb237208cae798089eb846b7bbbec1e --- /dev/null +++ b/indoor_house/views/test/r_175.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aad30b0110a7384def48819afcc09b6b67a75f7836034ebc896e4a962cb53bc +size 956454 diff --git a/indoor_house/views/test/r_177.png b/indoor_house/views/test/r_177.png new file mode 100644 index 0000000000000000000000000000000000000000..b93729a39d6cde044026927c5a9fc5df1f02fc78 --- /dev/null +++ b/indoor_house/views/test/r_177.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcea2d01dea7f38195012d22fef8bec9efa91d5c62c339579a7ed2730300c4b0 +size 987958 diff --git a/indoor_house/views/test/r_178.png b/indoor_house/views/test/r_178.png new file mode 100644 index 0000000000000000000000000000000000000000..8870c75fc3b381471939ca407ce2fea765b9512b --- /dev/null +++ b/indoor_house/views/test/r_178.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d255c0b9ac10159fb37e86cd6307ff012ac27c9bb90caec49db18ce8cede187 +size 935723 diff --git a/indoor_house/views/test/r_179.png b/indoor_house/views/test/r_179.png new file mode 100644 index 0000000000000000000000000000000000000000..1e231698034191c7fd865f91ba2452bc3518fc48 --- /dev/null +++ b/indoor_house/views/test/r_179.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d93cf72215131d8e4c67b835d53b1d6c0d9c7bc5bc142a1a207d5e99629bac +size 851365 diff --git a/indoor_house/views/test/r_18.png b/indoor_house/views/test/r_18.png new file mode 100644 index 0000000000000000000000000000000000000000..9e0236580f186e96ec04346bce379abb624be985 --- /dev/null +++ b/indoor_house/views/test/r_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26dc53338a0adf1fa012cb0105646c792ad4d8e257c01d811101b853f0022b17 +size 899711 diff --git a/indoor_house/views/test/r_180.png b/indoor_house/views/test/r_180.png new file mode 100644 index 0000000000000000000000000000000000000000..ca3b45d21f1b69c09b24a0bd059b6be1c407f140 --- /dev/null +++ b/indoor_house/views/test/r_180.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ba05cccde60894098edff43478ca915270531844799c85d49360a19c3900bd +size 978068 diff --git a/indoor_house/views/test/r_185.png b/indoor_house/views/test/r_185.png new file mode 100644 index 0000000000000000000000000000000000000000..1f36acf66df6466b812de7b7415a518b169ecc75 --- /dev/null +++ b/indoor_house/views/test/r_185.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46dc195a301e1ab87b5e35c34919a18f26adca3c1d98e4f352d0017a86cdd087 +size 973151 diff --git a/indoor_house/views/test/r_186.png b/indoor_house/views/test/r_186.png new file mode 100644 index 0000000000000000000000000000000000000000..e66dad0adda38ac0f7dfc2fe4385874b0cfde9d3 --- /dev/null +++ b/indoor_house/views/test/r_186.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1324beb765f30cdc730b3bce0ecd24e3db50273c33bd9898e65e895837e0d78 +size 742676 diff --git a/indoor_house/views/test/r_188.png b/indoor_house/views/test/r_188.png new file mode 100644 index 0000000000000000000000000000000000000000..6a887693e7783474a3b5b6ba13927729bc2327b5 --- /dev/null +++ b/indoor_house/views/test/r_188.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dadb020906b38eeb6c208fac64eb350e52495560f9f5b516eddaca6a9031a40f +size 968458 diff --git a/indoor_house/views/test/r_191.png b/indoor_house/views/test/r_191.png new file mode 100644 index 0000000000000000000000000000000000000000..c5bf6fc9c6521b0a6558fecfd0004098d9d02df1 --- /dev/null +++ b/indoor_house/views/test/r_191.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3e0e8525ac86295633e7a5d396e47a823146711edd190aa755e4d0ced56b1c +size 952206 diff --git a/indoor_house/views/test/r_193.png b/indoor_house/views/test/r_193.png new file mode 100644 index 0000000000000000000000000000000000000000..efb1b1f2afa266a1513edf8927f61be728531195 --- /dev/null +++ b/indoor_house/views/test/r_193.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f32eda8de35eef375ce309401e5a257c726aab1244a95ac901b3efe59b828a +size 909606 diff --git a/indoor_house/views/test/r_194.png b/indoor_house/views/test/r_194.png new file mode 100644 index 0000000000000000000000000000000000000000..74312fcd07e6943c9e31968ce3adac5f70d09353 --- /dev/null +++ b/indoor_house/views/test/r_194.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacb66eecff4f809ce537a6e366d993e3150e9e36e783927cd1bc0bea2a819b4 +size 848759 diff --git a/indoor_house/views/test/r_195.png b/indoor_house/views/test/r_195.png new file mode 100644 index 0000000000000000000000000000000000000000..b0b898b16d69c89aeba614daf7fabe6f05da04a1 --- /dev/null +++ b/indoor_house/views/test/r_195.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b152da535ebaeaf656e5ed39fad4ad9d5a9543bca1ad6990fd517fcafaebe6f +size 982342 diff --git a/indoor_house/views/test/r_196.png b/indoor_house/views/test/r_196.png new file mode 100644 index 0000000000000000000000000000000000000000..49e37b0a6f3bd04627573dcff924256bfd600543 --- /dev/null +++ b/indoor_house/views/test/r_196.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314c8fda605ad1746d5f2f9387417c8f51312994e280d1bdedd5a0718f3bf1d3 +size 885950 diff --git a/indoor_house/views/test/r_197.png b/indoor_house/views/test/r_197.png new file mode 100644 index 0000000000000000000000000000000000000000..b6054810703249e5e44fa0e24f2a737dbe086197 --- /dev/null +++ b/indoor_house/views/test/r_197.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0032649f5f745f94b3f8fd9faccdc8af54b310aa7d0f21c6730a6e887349571f +size 941264 diff --git a/indoor_house/views/test/r_198.png b/indoor_house/views/test/r_198.png new file mode 100644 index 0000000000000000000000000000000000000000..bb3557570ff35c0afeae51ace81021188a4bb485 --- /dev/null +++ b/indoor_house/views/test/r_198.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57a961e74450f5cd1faf17055fcdb4171e5d44478b07aa657ff50a6db730dff +size 744869 diff --git a/indoor_house/views/test/r_199.png b/indoor_house/views/test/r_199.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf554608c755518df1581c1ec78afe0d8b877ce --- /dev/null +++ b/indoor_house/views/test/r_199.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0de93b10ffcc18c2d0e4e47276182035699ed4beb091cb34ae7341e5a91c750 +size 878510 diff --git a/indoor_house/views/test/r_2.png b/indoor_house/views/test/r_2.png new file mode 100644 index 0000000000000000000000000000000000000000..a3c2040407bda0608c1a10be5499f8dcf784d0bb --- /dev/null +++ b/indoor_house/views/test/r_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fce973ea715bb9adbfed4c18df206dc1fcd2684e6a2134aa3f36f8f188cc88a +size 875302 diff --git a/indoor_house/views/test/r_20.png b/indoor_house/views/test/r_20.png new file mode 100644 index 0000000000000000000000000000000000000000..1b3f1dee8ea73590fba9f6e46ef3cf14f7c850ce --- /dev/null +++ b/indoor_house/views/test/r_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c97e02da1947fc324316b80b4d65b5ce7ada4781dfb205f9f7498dc5ba31d7c +size 743236 diff --git a/indoor_house/views/test/r_21.png b/indoor_house/views/test/r_21.png new file mode 100644 index 0000000000000000000000000000000000000000..2e2d5d1db07b256f8f84aba90d63a864bec6a4c0 --- /dev/null +++ b/indoor_house/views/test/r_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b00c95f03354f3bdb713abc63c990a3679cb188965689e397902bbc0294f15e +size 772894 diff --git a/indoor_house/views/test/r_22.png b/indoor_house/views/test/r_22.png new file mode 100644 index 0000000000000000000000000000000000000000..538bb7bfb230f4c6e86bd48e2e91ad24a53ecefc --- /dev/null +++ b/indoor_house/views/test/r_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bcc2d7ca8ce808f88111c66d7e61820cfd1dea7c5011232fff7fa20d1e7e8a8 +size 787149 diff --git a/indoor_house/views/test/r_23.png b/indoor_house/views/test/r_23.png new file mode 100644 index 0000000000000000000000000000000000000000..0383a7de82b4333703e12b2670da204369ff51ef --- /dev/null +++ b/indoor_house/views/test/r_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc0424e323030c46e55f59ea8a5120254e8a541fe19fa0921dd1cca59fdcf10 +size 948098 diff --git a/indoor_house/views/test/r_24.png b/indoor_house/views/test/r_24.png new file mode 100644 index 0000000000000000000000000000000000000000..9d3854750b2ddd22c89e348f8e269c4342014037 --- /dev/null +++ b/indoor_house/views/test/r_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:281450c7fa730adf2e80172f58a660d0a5b58d5b6f4df1784031e84b4353f834 +size 978045 diff --git a/indoor_house/views/test/r_26.png b/indoor_house/views/test/r_26.png new file mode 100644 index 0000000000000000000000000000000000000000..1ef34a111b5cd6fc24f0e61efeec05dcaee3096f --- /dev/null +++ b/indoor_house/views/test/r_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c719c6a0d0728b7c729fef123ae67fc0c1d5ce3279e10479bbdfabfdbf8b2cb8 +size 963543 diff --git a/indoor_house/views/test/r_29.png b/indoor_house/views/test/r_29.png new file mode 100644 index 0000000000000000000000000000000000000000..8011ed4b8622b1b8fd8305202c70913b522b496c --- /dev/null +++ b/indoor_house/views/test/r_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba1ee609d56a3e74e372b1c504f92fde35e540ad37f29b8b8e8205aae38377af +size 735972 diff --git a/indoor_house/views/test/r_31.png b/indoor_house/views/test/r_31.png new file mode 100644 index 0000000000000000000000000000000000000000..433131be28fc9c2fef3da970406a24d13be39704 --- /dev/null +++ b/indoor_house/views/test/r_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad245c3cd9b55af417e278fed66ba560d1807a0e49d304b3fc3639ca53bac487 +size 864704 diff --git a/indoor_house/views/test/r_32.png b/indoor_house/views/test/r_32.png new file mode 100644 index 0000000000000000000000000000000000000000..2c13722f07dca14a0f838bfbc1b5e43424b62e68 --- /dev/null +++ b/indoor_house/views/test/r_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92873460de0865c456b515910e5480594fede7e3ebda0769d6fea087f36d397 +size 969373 diff --git a/indoor_house/views/test/r_38.png b/indoor_house/views/test/r_38.png new file mode 100644 index 0000000000000000000000000000000000000000..25eecd8b8e92ca2afa56e72fe47d6ab053ea0e0a --- /dev/null +++ b/indoor_house/views/test/r_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b179affb0f4ec57a2831de4b10609fb4ecd4c022af732c113230e358340e342 +size 923290 diff --git a/indoor_house/views/test/r_39.png b/indoor_house/views/test/r_39.png new file mode 100644 index 0000000000000000000000000000000000000000..488a7ef40517e30b4cd4cc6071988cbf9f281d68 --- /dev/null +++ b/indoor_house/views/test/r_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc65c2a621b07d62e760ed70dcff0c109f94ab0cf80bd39a5744f2a7a3c9568 +size 963430 diff --git a/indoor_house/views/test/r_4.png b/indoor_house/views/test/r_4.png new file mode 100644 index 0000000000000000000000000000000000000000..885952f5dcd48908ec75203d1b674a1f68146e4a --- /dev/null +++ b/indoor_house/views/test/r_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a2151becb79749e7d23a75efc4ef847dae458000df7416e8da3306274100f5 +size 779030 diff --git a/indoor_house/views/test/r_41.png b/indoor_house/views/test/r_41.png new file mode 100644 index 0000000000000000000000000000000000000000..262a490a803bd44b0cb16fdb3f9acf564ebd142e --- /dev/null +++ b/indoor_house/views/test/r_41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0312da431e28803ccc7033325f95231e5e04e6019d3b558edd0177d5016a0b6 +size 937047 diff --git a/indoor_house/views/test/r_45.png b/indoor_house/views/test/r_45.png new file mode 100644 index 0000000000000000000000000000000000000000..fe4fe52f5ddce82c8407c52b538d3a47ce7f77d6 --- /dev/null +++ b/indoor_house/views/test/r_45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a6f6c12405c7a2fb57833f3c6b2f4f45065412907756a97a4df6474a561835 +size 919767 diff --git a/indoor_house/views/test/r_46.png b/indoor_house/views/test/r_46.png new file mode 100644 index 0000000000000000000000000000000000000000..d6055deddb4683e5b1d3276c1931458b02d12c00 --- /dev/null +++ b/indoor_house/views/test/r_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d222387280451e7e78ae82f03350ea9183e0fc7a4b2bee4516b58c92422a8ab +size 918705 diff --git a/indoor_house/views/test/r_47.png b/indoor_house/views/test/r_47.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd1f2ec0f1f7c1bdfcf4700b455f6b860a60c35 --- /dev/null +++ b/indoor_house/views/test/r_47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc08cc1d4b2f90175b0b1d0c87ce44bbf17a1d1db3517a4e0097b39d177933a +size 921319 diff --git a/indoor_house/views/test/r_5.png b/indoor_house/views/test/r_5.png new file mode 100644 index 0000000000000000000000000000000000000000..445b59ed59a69419b6db52e29e67da646bd84963 --- /dev/null +++ b/indoor_house/views/test/r_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684e70eb08189f4eea94aad8b01a81f69062b51604bc545c3d10d66949cae832 +size 1060948 diff --git a/indoor_house/views/test/r_52.png b/indoor_house/views/test/r_52.png new file mode 100644 index 0000000000000000000000000000000000000000..10439a4c37c7d6177890ffd85d8cbf55148cbe9d --- /dev/null +++ b/indoor_house/views/test/r_52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8df034902b110884aba3f075a88aaba108d0e6da570605748d992e8ae7a472b9 +size 1053928 diff --git a/indoor_house/views/test/r_59.png b/indoor_house/views/test/r_59.png new file mode 100644 index 0000000000000000000000000000000000000000..ea6a7ac96a6d1b3fbef02edc898602d00559bdba --- /dev/null +++ b/indoor_house/views/test/r_59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83b4f3919f7076ea89a708b975aee2b5a26119f8cc4e9613d4e0c1f8593dce6d +size 974024 diff --git a/indoor_house/views/test/r_63.png b/indoor_house/views/test/r_63.png new file mode 100644 index 0000000000000000000000000000000000000000..73a60df70aa47c659879dd0056637511318e9ad3 --- /dev/null +++ b/indoor_house/views/test/r_63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703f00fd8710ecaece141b2fee9de675d5f71445858edfeebde8ae10186441d9 +size 819981 diff --git a/indoor_house/views/test/r_66.png b/indoor_house/views/test/r_66.png new file mode 100644 index 0000000000000000000000000000000000000000..35c3b508e806a7b83f608a6b10f37be798415e7a --- /dev/null +++ b/indoor_house/views/test/r_66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66a18324e7be15b5131c208393afab65d0d958c1bcb3ed2df9f68c970a5a53b +size 809450 diff --git a/indoor_house/views/test/r_68.png b/indoor_house/views/test/r_68.png new file mode 100644 index 0000000000000000000000000000000000000000..fc0cbdf1aae92ab18584fe174c9f14a8e3d2d107 --- /dev/null +++ b/indoor_house/views/test/r_68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec28ee8fffaa8a410db497f2d62c8cb6dcfc56c584987ebf62b2131057948ed +size 923655 diff --git a/indoor_house/views/test/r_70.png b/indoor_house/views/test/r_70.png new file mode 100644 index 0000000000000000000000000000000000000000..05e7642521d886c41ffb91b7b25902722d508808 --- /dev/null +++ b/indoor_house/views/test/r_70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54363f05c82401b7574e13c985d6e70979dae1e680d6aa8289ce8e496b02b4cd +size 855501 diff --git a/indoor_house/views/test/r_71.png b/indoor_house/views/test/r_71.png new file mode 100644 index 0000000000000000000000000000000000000000..059f42ec2c2afd1765f6e91f3b2997cba3b772b2 --- /dev/null +++ b/indoor_house/views/test/r_71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1937b5914ea313f8871d317e04b83eced9d11f5a4f2421dd341c0523388cf6b7 +size 952098 diff --git a/indoor_house/views/test/r_72.png b/indoor_house/views/test/r_72.png new file mode 100644 index 0000000000000000000000000000000000000000..d1b52678102c41384ec115db4f3294703426a932 --- /dev/null +++ b/indoor_house/views/test/r_72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7277642d2168a92f1dab73253b286a7f312d1823c606f3f0b4990de36cdf6bec +size 887813 diff --git a/indoor_house/views/test/r_73.png b/indoor_house/views/test/r_73.png new file mode 100644 index 0000000000000000000000000000000000000000..c66c3518a35dc8143f400cd07e75c146c768102e --- /dev/null +++ b/indoor_house/views/test/r_73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6fe5ac9c74c704899cdb87ffbbddf744520a3e6add62649217c271a70499049 +size 845607 diff --git a/indoor_house/views/test/r_75.png b/indoor_house/views/test/r_75.png new file mode 100644 index 0000000000000000000000000000000000000000..94eb3bda73abd6e23c92b6d4baa3fa14c40b12e5 --- /dev/null +++ b/indoor_house/views/test/r_75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c81b92b0a4ab4033c81425bca6b0e035ba4a00ca3e56760a83b332640543b44 +size 1002524 diff --git a/indoor_house/views/test/r_76.png b/indoor_house/views/test/r_76.png new file mode 100644 index 0000000000000000000000000000000000000000..dad3858f0bec1ec528614f75ac07ce19acbf4e32 --- /dev/null +++ b/indoor_house/views/test/r_76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:313b39dce337364f505da710fda7679012bbd7049c83e221265d3867358283ba +size 907533 diff --git a/indoor_house/views/test/r_77.png b/indoor_house/views/test/r_77.png new file mode 100644 index 0000000000000000000000000000000000000000..7e78f5fa5cd22ce439b63f9e63bdc7e03ff3eedb --- /dev/null +++ b/indoor_house/views/test/r_77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b31acd0d400fa00468631297cfbd4b96aa51543e9021cc2448e954f0fdb24e2 +size 945068 diff --git a/indoor_house/views/test/r_79.png b/indoor_house/views/test/r_79.png new file mode 100644 index 0000000000000000000000000000000000000000..e53019f623ab93d462d3c2ff78645ec21ed3ef57 --- /dev/null +++ b/indoor_house/views/test/r_79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4582fab2439eece1ae176f49e47c4632bee0b4b65a2bda32157b44494584064 +size 788638 diff --git a/indoor_house/views/test/r_8.png b/indoor_house/views/test/r_8.png new file mode 100644 index 0000000000000000000000000000000000000000..0692730c4a636f01367bce896ca1119027f3cc41 --- /dev/null +++ b/indoor_house/views/test/r_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a02fc5a718f0917acf3105f23a703ae50f069900fadbfbf6f063a60ef532d9 +size 833861 diff --git a/indoor_house/views/test/r_81.png b/indoor_house/views/test/r_81.png new file mode 100644 index 0000000000000000000000000000000000000000..64b24dcd0719f3f9bed46bd15a4ff05f7fe89999 --- /dev/null +++ b/indoor_house/views/test/r_81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:170d7e817c77694b83a371555bb167024c83e366f017588d7cf45f38887c19a3 +size 1061688 diff --git a/indoor_house/views/test/r_84.png b/indoor_house/views/test/r_84.png new file mode 100644 index 0000000000000000000000000000000000000000..c9406edf1ae990411414abe0f3608d8c07b2417b --- /dev/null +++ b/indoor_house/views/test/r_84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b31294ce4356ff6b8993a36c4a3d6186591021cd770db956697fc0be094636 +size 845825 diff --git a/indoor_house/views/test/r_85.png b/indoor_house/views/test/r_85.png new file mode 100644 index 0000000000000000000000000000000000000000..4c91c1ed3bb8779256e6b2db94f651939161cd2b --- /dev/null +++ b/indoor_house/views/test/r_85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c8d7773d238a5495457c58a890ccff7676482e3d2f6bc43a172ee98555cc70d +size 858284 diff --git a/indoor_house/views/test/r_88.png b/indoor_house/views/test/r_88.png new file mode 100644 index 0000000000000000000000000000000000000000..cc157f5d12da3d02fc7d0bb7857b4df58f91e1c8 --- /dev/null +++ b/indoor_house/views/test/r_88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baed2b7a6bcfb48a5f3de731c143120ae079018cc70e3d1b6bc6eeb9504b8c64 +size 1064468 diff --git a/indoor_house/views/test/r_90.png b/indoor_house/views/test/r_90.png new file mode 100644 index 0000000000000000000000000000000000000000..291616155a74f2cf2dc41fe773ab9f87b8283dbb --- /dev/null +++ b/indoor_house/views/test/r_90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14db06c56185a3efea15ccbc31fcdc2e532f565ba8e9fea60db3cfcededa7d0 +size 780600 diff --git a/indoor_house/views/test/r_92.png b/indoor_house/views/test/r_92.png new file mode 100644 index 0000000000000000000000000000000000000000..b534d8321de2434bf88056e9d1e3a74b4d2d1266 --- /dev/null +++ b/indoor_house/views/test/r_92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb910fb79a64eda43b4ae943fc49b69afe650d6bb4b818a6083c62f2bf0e7e9 +size 825213 diff --git a/indoor_house/views/test/r_93.png b/indoor_house/views/test/r_93.png new file mode 100644 index 0000000000000000000000000000000000000000..99a5163e9d039163751c2ca80ca3bd5e763b55ff --- /dev/null +++ b/indoor_house/views/test/r_93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62eb9ce7ef94714f40169e6471667b5b5bc24544d89a2cb9043181fdc9d4a7c +size 892588 diff --git a/indoor_house/views/test/r_95.png b/indoor_house/views/test/r_95.png new file mode 100644 index 0000000000000000000000000000000000000000..9cd65a018efb4f2d015ce38b7e680727d16fc41b --- /dev/null +++ b/indoor_house/views/test/r_95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d56d8d7f0029c2c53ab6f6ec817ae45b91966fc6379f5520e9b3e4d96b4701 +size 769975 diff --git a/indoor_house/views/test/r_97.png b/indoor_house/views/test/r_97.png new file mode 100644 index 0000000000000000000000000000000000000000..5bdb35f508cbe5c72c83127ade8a607d89034c50 --- /dev/null +++ b/indoor_house/views/test/r_97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43eaee190775bd90f5e552b140b79db4ba8efdcc5e8280c749c2e0365fc3244 +size 884076 diff --git a/indoor_house/views/transforms_test.json b/indoor_house/views/transforms_test.json new file mode 100644 index 0000000000000000000000000000000000000000..5a33dfe954a5c05511cc289dffdcacffac752cac --- /dev/null +++ b/indoor_house/views/transforms_test.json @@ -0,0 +1,6005 @@ +{ + "camera_angle_x": 0.6911112070083618, + "frames": [ + { + "file_path": "./test/r_0", + "rotation": 0.0, + "transform_matrix": [ + [ + 0.9199625253677368, + 0.12612010538578033, + -0.3711642026901245, + -91.31510925292969 + ], + [ + -0.39200663566589355, + 0.2959790825843811, + -0.8710494637489319, + -214.29861450195312 + ], + [ + -7.450581485102248e-09, + 0.9468315839767456, + 0.32172951102256775, + 179.15301513671875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_1", + "rotation": 0.031415926535897934, + "transform_matrix": [ + [ + -0.9985108971595764, + -0.018237873911857605, + 0.051415327936410904, + 12.64937686920166 + ], + [ + 0.054554156959056854, + -0.33380985260009766, + 0.9410605430603027, + 231.52296447753906 + ], + [ + 0.0, + 0.9424639940261841, + 0.3343077301979065, + 182.24754333496094 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_2", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + -0.8985167145729065, + 0.02874000556766987, + -0.4379972219467163, + -107.7575912475586 + ], + [ + -0.43893903493881226, + -0.0588313452899456, + 0.8965887427330017, + 220.5818634033203 + ], + [ + 0.0, + 0.9978540539741516, + 0.06547607481479645, + 116.10865020751953 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_3", + "rotation": 0.0942477796076938, + "transform_matrix": [ + [ + 0.6115244626998901, + 0.20241864025592804, + -0.7648951411247253, + -188.18215942382812 + ], + [ + -0.7912256121635437, + 0.15644583106040955, + -0.5911740660667419, + -145.4427032470703 + ], + [ + 7.450580596923828e-09, + 0.9667218923568726, + 0.25582924485206604, + 162.94000244140625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_4", + "rotation": 0.12566370614359174, + "transform_matrix": [ + [ + -0.05751534551382065, + -0.2799991965293884, + 0.9582757353782654, + 235.75833129882812 + ], + [ + 0.9983446598052979, + -0.016130950301885605, + 0.055206943303346634, + 13.582204818725586 + ], + [ + -9.31322685637781e-10, + 0.9598646759986877, + 0.28046345710754395, + 169.00059509277344 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_5", + "rotation": 0.15707963267948966, + "transform_matrix": [ + [ + -0.330239862203598, + 0.7075673341751099, + -0.6247318983078003, + -153.69871520996094 + ], + [ + -0.943897008895874, + -0.24755552411079407, + 0.21857401728630066, + 53.77433776855469 + ], + [ + 0.0, + 0.6618644595146179, + 0.7496235370635986, + 284.42498779296875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_6", + "rotation": 0.1884955592153876, + "transform_matrix": [ + [ + -0.37734946608543396, + 0.6399754285812378, + -0.6693569421768188, + -164.67750549316406 + ], + [ + -0.9260708689689636, + -0.2607731223106384, + 0.2727453112602234, + 67.10174560546875 + ], + [ + 0.0, + 0.7227923274040222, + 0.6910653114318848, + 270.0182800292969 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_7", + "rotation": 0.21991148575128552, + "transform_matrix": [ + [ + 0.9873206615447998, + -0.023297535255551338, + 0.1570194810628891, + 38.63047409057617 + ], + [ + 0.15873844921588898, + 0.14490589499473572, + -0.9766290783882141, + -240.27366638183594 + ], + [ + 1.862645149230957e-09, + 0.9891710877418518, + 0.1467668116092682, + 136.1080780029297 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_8", + "rotation": 0.25132741228718347, + "transform_matrix": [ + [ + 0.8802201151847839, + -0.07331590354442596, + 0.4688681662082672, + 115.35256958007812 + ], + [ + 0.47456565499305725, + 0.13598567247390747, + -0.8696524500846863, + -213.95489501953125 + ], + [ + 7.450580596923828e-09, + 0.9879941940307617, + 0.15449056029319763, + 138.00830078125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_9", + "rotation": 0.2827433388230814, + "transform_matrix": [ + [ + -0.6610425710678101, + -0.20885799825191498, + 0.7206948399543762, + 177.30783081054688 + ], + [ + 0.7503483891487122, + -0.1839999109506607, + 0.6349183917045593, + 156.20481872558594 + ], + [ + 0.0, + 0.960480272769928, + 0.27834805846214294, + 168.4801483154297 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_10", + "rotation": 0.3141592653589793, + "transform_matrix": [ + [ + -0.6712618470191956, + 0.522430956363678, + -0.5258074998855591, + -129.36097717285156 + ], + [ + -0.7412204146385193, + -0.4731224477291107, + 0.4761803150177002, + 117.15152740478516 + ], + [ + 1.4901159417490817e-08, + 0.7093808650970459, + 0.7048254609107971, + 273.4035949707031 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_11", + "rotation": 0.3455751918948773, + "transform_matrix": [ + [ + -0.7300763130187988, + 0.2509370744228363, + -0.6356250047683716, + -156.37869262695312 + ], + [ + -0.6833657026290894, + -0.26808956265449524, + 0.6790723204612732, + 167.0677490234375 + ], + [ + 0.0, + 0.9301389455795288, + 0.3672076165676117, + 190.34170532226562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_12", + "rotation": 0.3769911184307752, + "transform_matrix": [ + [ + 0.9357573390007019, + 0.04398702085018158, + -0.3498905897140503, + -86.08129119873047 + ], + [ + -0.3526447117328644, + 0.11672138422727585, + -0.9284491539001465, + -228.42027282714844 + ], + [ + 0.0, + 0.9921901822090149, + 0.12473466247320175, + 130.68765258789062 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_13", + "rotation": 0.4084070449666731, + "transform_matrix": [ + [ + -0.8448275327682495, + -0.175747349858284, + 0.5053505897521973, + 124.32811737060547 + ], + [ + 0.5350386500358582, + -0.2775055468082428, + 0.7979499697685242, + 196.31443786621094 + ], + [ + 0.0, + 0.9445122480392456, + 0.3284759819507599, + 180.81280517578125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_14", + "rotation": 0.43982297150257105, + "transform_matrix": [ + [ + -0.650043249130249, + 0.009279374033212662, + -0.7598404884338379, + -186.9385986328125 + ], + [ + -0.7598971128463745, + -0.007937910035252571, + 0.6499947905540466, + 159.9139862060547 + ], + [ + -4.6566125955216364e-10, + 0.9999254941940308, + 0.012211354449391365, + 103.00428009033203 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_15", + "rotation": 0.47123889803846897, + "transform_matrix": [ + [ + 0.9289339780807495, + 0.05590788275003433, + -0.36600008606910706, + -90.04460906982422 + ], + [ + -0.3702455461025238, + 0.14027103781700134, + -0.9182822704315186, + -225.91897583007812 + ], + [ + -3.725290298461914e-09, + 0.9885333776473999, + 0.1510022133588791, + 137.15008544921875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_16", + "rotation": 0.5026548245743669, + "transform_matrix": [ + [ + -0.2569097876548767, + 0.5921291708946228, + -0.763793408870697, + -187.91111755371094 + ], + [ + -0.9664353728294373, + -0.15740709006786346, + 0.2030409872531891, + 49.952850341796875 + ], + [ + 0.0, + 0.7903202772140503, + 0.6126939654350281, + 250.7371063232422 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_17", + "rotation": 0.5340707511102649, + "transform_matrix": [ + [ + 0.8076246976852417, + -0.3291296660900116, + 0.48930153250694275, + 120.37966918945312 + ], + [ + 0.5896968245506287, + 0.4507625102996826, + -0.6701273918151855, + -164.86708068847656 + ], + [ + 1.4901161193847656e-08, + 0.8297510147094727, + 0.5581336617469788, + 237.31399536132812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_18", + "rotation": 0.5654866776461628, + "transform_matrix": [ + [ + 0.45513731241226196, + -0.5147599577903748, + 0.7265481352806091, + 178.74789428710938 + ], + [ + 0.8904213905334473, + 0.26311859488487244, + -0.3713737726211548, + -91.36666870117188 + ], + [ + 2.980232594040899e-08, + 0.8159600496292114, + 0.5781082510948181, + 242.22821044921875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_19", + "rotation": 0.5969026041820608, + "transform_matrix": [ + [ + -0.9357800483703613, + 0.1737666130065918, + -0.3067910671234131, + -75.47779846191406 + ], + [ + -0.3525841534137726, + -0.4611872732639313, + 0.8142423629760742, + 200.32272338867188 + ], + [ + 0.0, + 0.8701214790344238, + 0.49283725023269653, + 221.24952697753906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_20", + "rotation": 0.6283185307179586, + "transform_matrix": [ + [ + -0.9910176396369934, + -0.0070502921007573605, + 0.13354553282260895, + 32.8553352355957 + ], + [ + 0.13373151421546936, + -0.052246205508708954, + 0.9896394610404968, + 243.47451782226562 + ], + [ + 4.656612873077393e-10, + 0.9986093044281006, + 0.05271976441144943, + 112.97029876708984 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_21", + "rotation": 0.6597344572538566, + "transform_matrix": [ + [ + 0.7070640921592712, + -0.0930081233382225, + 0.7010064125061035, + 172.46401977539062 + ], + [ + 0.7071495056152344, + 0.09299688786268234, + -0.7009217143058777, + -172.44317626953125 + ], + [ + -7.4505797087454084e-09, + 0.9913128018379211, + 0.1315254122018814, + 132.35833740234375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_22", + "rotation": 0.6911503837897546, + "transform_matrix": [ + [ + -0.14795860648155212, + 0.24193258583545685, + -0.9589456915855408, + -235.9231414794922 + ], + [ + -0.9889935851097107, + -0.03619438409805298, + 0.14346329867839813, + 35.29533767700195 + ], + [ + 0.0, + 0.9696176648139954, + 0.244625061750412, + 160.18350219726562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_23", + "rotation": 0.7225663103256524, + "transform_matrix": [ + [ + -0.489644318819046, + -0.5793129801750183, + 0.6516477465629578, + 160.32064819335938 + ], + [ + 0.8719222545623779, + -0.32532408833503723, + 0.3659450113773346, + 90.03106689453125 + ], + [ + 1.4901161193847656e-08, + 0.7473690509796143, + 0.6644089818000793, + 263.460205078125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_24", + "rotation": 0.7539822368615504, + "transform_matrix": [ + [ + -0.30357369780540466, + -0.7108020782470703, + 0.634510338306427, + 156.10443115234375 + ], + [ + 0.9528079628944397, + -0.2264683097600937, + 0.20216104388237, + 49.736358642578125 + ], + [ + -1.4901161193847656e-08, + 0.6659371852874756, + 0.7460077404975891, + 283.535400390625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_25", + "rotation": 0.7853981633974483, + "transform_matrix": [ + [ + -0.645484447479248, + 0.4571537673473358, + -0.6118497252464294, + -150.52938842773438 + ], + [ + -0.7637733221054077, + -0.38635241985321045, + 0.5170899629592896, + 127.21626281738281 + ], + [ + 0.0, + 0.8010879755020142, + 0.5985464453697205, + 247.2564697265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_26", + "rotation": 0.8168140899333463, + "transform_matrix": [ + [ + 0.3555442988872528, + 0.4466554820537567, + -0.8210281133651733, + -201.99217224121094 + ], + [ + -0.9346596002578735, + 0.16990765929222107, + -0.31231892108917236, + -76.83778381347656 + ], + [ + 0.0, + 0.8784248232841492, + 0.4778805375099182, + 217.56982421875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_27", + "rotation": 0.8482300164692442, + "transform_matrix": [ + [ + 0.31061500310897827, + -0.24888552725315094, + 0.9173736572265625, + 225.6954345703125 + ], + [ + 0.9505358338356018, + 0.08133052289485931, + -0.2997783124446869, + -73.75249481201172 + ], + [ + 0.0, + 0.9651119709014893, + 0.2618371248245239, + 164.41807556152344 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_28", + "rotation": 0.8796459430051421, + "transform_matrix": [ + [ + -0.9960576891899109, + 0.03365686163306236, + -0.08207456022500992, + -20.1922664642334 + ], + [ + -0.08870748430490494, + -0.3779182732105255, + 0.9215795397758484, + 226.7301788330078 + ], + [ + -1.8626449271863521e-09, + 0.9252270460128784, + 0.37941405177116394, + 193.34475708007812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_29", + "rotation": 0.9110618695410401, + "transform_matrix": [ + [ + -0.3809317648410797, + -0.0010401316685602069, + 0.9246025681495667, + 227.4739227294922 + ], + [ + 0.9246031045913696, + -0.0004285289905965328, + 0.3809315860271454, + 93.71810913085938 + ], + [ + 0.0, + 0.999999463558197, + 0.0011249493109062314, + 100.27676391601562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_30", + "rotation": 0.9424777960769379, + "transform_matrix": [ + [ + -0.7655871510505676, + -0.010916389524936676, + 0.6432396173477173, + 158.2520294189453 + ], + [ + 0.6433322429656982, + -0.012990872375667095, + 0.7654769420623779, + 188.32528686523438 + ], + [ + 0.0, + 0.9998558759689331, + 0.016968512907624245, + 104.17465209960938 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_31", + "rotation": 0.9738937226128359, + "transform_matrix": [ + [ + -0.8455100059509277, + -0.27160605788230896, + 0.45972034335136414, + 113.10198974609375 + ], + [ + 0.5339593291282654, + -0.430080771446228, + 0.7279545664787292, + 179.09390258789062 + ], + [ + 0.0, + 0.8609649538993835, + 0.5086642503738403, + 225.14334106445312 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_32", + "rotation": 1.0053096491487339, + "transform_matrix": [ + [ + -0.299489289522171, + 0.5656136274337769, + -0.7683666944503784, + -189.03622436523438 + ], + [ + -0.9540995955467224, + -0.17754460871219635, + 0.24118825793266296, + 59.33797073364258 + ], + [ + 1.4901160305669237e-08, + 0.8053315877914429, + 0.5928245186805725, + 245.84873962402344 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_33", + "rotation": 1.0367255756846316, + "transform_matrix": [ + [ + 0.9900067448616028, + -0.062063273042440414, + 0.12662869691848755, + 31.153629302978516 + ], + [ + 0.14102011919021606, + 0.43570417165756226, + -0.8889743089675903, + -218.70852661132812 + ], + [ + 3.7252898543727042e-09, + 0.8979476094245911, + 0.44010233879089355, + 208.27549743652344 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_34", + "rotation": 1.0681415022205298, + "transform_matrix": [ + [ + -0.7215051054954529, + -0.4506922662258148, + 0.5256488919258118, + 129.3219757080078 + ], + [ + 0.6924089789390564, + -0.46963104605674744, + 0.5477374792098999, + 134.75628662109375 + ], + [ + 0.0, + 0.759159505367279, + 0.6509045958518982, + 260.1378173828125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_35", + "rotation": 1.0995574287564276, + "transform_matrix": [ + [ + 0.983791708946228, + 0.12072155624628067, + -0.13259068131446838, + -32.62042236328125 + ], + [ + -0.17931532859802246, + 0.662324070930481, + -0.7274426221847534, + -178.96795654296875 + ], + [ + 0.0, + 0.7394274473190308, + 0.6732361316680908, + 265.63189697265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_36", + "rotation": 1.1309733552923256, + "transform_matrix": [ + [ + -0.5038899183273315, + 0.597348153591156, + -0.6239151954650879, + -153.49778747558594 + ], + [ + -0.8637679219245911, + -0.3484705686569214, + 0.3639688193798065, + 89.54487609863281 + ], + [ + 2.9802322387695312e-08, + 0.722318172454834, + 0.6915609240531921, + 270.1402282714844 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_37", + "rotation": 1.1623892818282235, + "transform_matrix": [ + [ + -0.9480429887771606, + 0.2048705816268921, + -0.24339798092842102, + -59.88161849975586 + ], + [ + -0.318142294883728, + -0.6105007529258728, + 0.7253098487854004, + 178.44325256347656 + ], + [ + 0.0, + 0.7650600671768188, + 0.6439589262008667, + 258.42901611328125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_38", + "rotation": 1.1938052083641215, + "transform_matrix": [ + [ + 0.6589238047599792, + 0.13618484139442444, + -0.7397790551185608, + -182.00302124023438 + ], + [ + -0.7522096633911133, + 0.11929577589035034, + -0.6480348110198975, + -159.43177795410156 + ], + [ + 0.0, + 0.983474612236023, + 0.18104636669158936, + 144.54165649414062 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_39", + "rotation": 1.2252211349000195, + "transform_matrix": [ + [ + 0.9951877593994141, + -0.03833635896444321, + 0.09017478674650192, + 22.185115814208984 + ], + [ + 0.09798554331064224, + 0.38936227560043335, + -0.9158579707145691, + -225.32257080078125 + ], + [ + 0.0, + 0.9202865362167358, + 0.3912450075149536, + 196.25546264648438 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_40", + "rotation": 1.2566370614359172, + "transform_matrix": [ + [ + -0.3003418743610382, + -0.02693350426852703, + 0.9534511566162109, + 234.57139587402344 + ], + [ + 0.953831672668457, + -0.008480804972350597, + 0.3002220690250397, + 73.86168670654297 + ], + [ + 9.31322685637781e-10, + 0.9996012449264526, + 0.02823716588318348, + 106.94700622558594 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_41", + "rotation": 1.2880529879718152, + "transform_matrix": [ + [ + -0.7412247657775879, + 0.35602885484695435, + -0.5690600872039795, + -140.00213623046875 + ], + [ + -0.671256959438324, + -0.39313915371894836, + 0.6283755302429199, + 154.59512329101562 + ], + [ + 1.4901161193847656e-08, + 0.8477529883384705, + 0.530391275882721, + 230.4886932373047 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_42", + "rotation": 1.3194689145077132, + "transform_matrix": [ + [ + 0.4008599519729614, + 0.44682562351226807, + -0.7997863292694092, + -196.76620483398438 + ], + [ + -0.9161393642425537, + 0.1955101042985916, + -0.34994930028915405, + -86.09573364257812 + ], + [ + -1.4901161193847656e-08, + 0.8729963302612305, + 0.48772674798965454, + 219.99221801757812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_43", + "rotation": 1.3508848410436112, + "transform_matrix": [ + [ + 0.891438364982605, + 0.07489366084337234, + -0.4469100534915924, + -109.95035552978516 + ], + [ + -0.453141987323761, + 0.14733369648456573, + -0.8791787028312683, + -216.298583984375 + ], + [ + 0.0, + 0.9862473011016846, + 0.16527637839317322, + 140.661865234375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_44", + "rotation": 1.3823007675795091, + "transform_matrix": [ + [ + -0.8145126104354858, + -0.19790469110012054, + 0.5453466773033142, + 134.16810607910156 + ], + [ + 0.5801459550857544, + -0.27785396575927734, + 0.7656550407409668, + 188.369140625 + ], + [ + 1.4901162970204496e-08, + 0.9400164484977722, + 0.3411290645599365, + 183.92576599121094 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_45", + "rotation": 1.413716694115407, + "transform_matrix": [ + [ + 0.9801706075668335, + -0.042730990797281265, + 0.19349323213100433, + 47.603878021240234 + ], + [ + 0.19815541803836823, + 0.21136774122714996, + -0.9571092128753662, + -235.47134399414062 + ], + [ + 0.0, + 0.9764722585678101, + 0.21564379334449768, + 153.05343627929688 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_46", + "rotation": 1.4451326206513049, + "transform_matrix": [ + [ + 0.5677859783172607, + 0.20914945006370544, + -0.796163022518158, + -195.87478637695312 + ], + [ + -0.8231762051582336, + 0.14426089823246002, + -0.5491536855697632, + -135.1046905517578 + ], + [ + 0.0, + 0.9671841263771057, + 0.25407618284225464, + 162.50869750976562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_47", + "rotation": 1.4765485471872029, + "transform_matrix": [ + [ + -0.9627408385276794, + 0.1712721884250641, + -0.20927467942237854, + -51.48647689819336 + ], + [ + -0.2704257071018219, + -0.6097450256347656, + 0.7450374960899353, + 183.29669189453125 + ], + [ + 1.4901159417490817e-08, + 0.7738713622093201, + 0.6333429217338562, + 255.8172149658203 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_48", + "rotation": 1.5079644737231008, + "transform_matrix": [ + [ + -0.761675238609314, + -0.47958990931510925, + 0.4357112944126129, + 107.19520568847656 + ], + [ + 0.6479589343070984, + -0.563757598400116, + 0.5121783018112183, + 126.00788879394531 + ], + [ + 0.0, + 0.6724365949630737, + 0.7401546835899353, + 282.0954284667969 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_49", + "rotation": 1.5393804002589988, + "transform_matrix": [ + [ + -0.8500558137893677, + 0.18993058800697327, + -0.4912550151348114, + -120.86027526855469 + ], + [ + -0.5266926288604736, + -0.30653852224349976, + 0.7928611636161804, + 195.06248474121094 + ], + [ + 0.0, + 0.9327166676521301, + 0.36060988903045654, + 188.718505859375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_50", + "rotation": 1.5707963267948966, + "transform_matrix": [ + [ + 0.8018962144851685, + 0.4093436896800995, + -0.43520140647888184, + -107.06975555419922 + ], + [ + -0.5974634289741516, + 0.549407958984375, + -0.5841132998466492, + -143.70556640625 + ], + [ + 2.9802322387695312e-08, + 0.7284151315689087, + 0.685136079788208, + 268.5595397949219 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_51", + "rotation": 1.6022122533307945, + "transform_matrix": [ + [ + 0.5122584700584412, + -0.05419429391622543, + 0.8571197390556335, + 210.87158203125 + ], + [ + 0.8588314652442932, + 0.03232472017407417, + -0.5112375020980835, + -125.77642822265625 + ], + [ + -1.862645371275562e-09, + 0.9980069994926453, + 0.0631023719906807, + 115.52466583251953 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_52", + "rotation": 1.6336281798666925, + "transform_matrix": [ + [ + 0.2079310119152069, + 0.6906810998916626, + -0.6926214098930359, + -170.40110778808594 + ], + [ + -0.9781435132026672, + 0.14682306349277496, + -0.14723552763462067, + -36.223392486572266 + ], + [ + 7.4505797087454084e-09, + 0.7080978751182556, + 0.7061142921447754, + 273.7206726074219 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_53", + "rotation": 1.6650441064025905, + "transform_matrix": [ + [ + -0.9334344863891602, + 0.22047366201877594, + -0.2830043435096741, + -69.62571716308594 + ], + [ + -0.3587479591369629, + -0.573655366897583, + 0.7363554239273071, + 181.1607208251953 + ], + [ + 1.4901161193847656e-08, + 0.7888666987419128, + 0.6145642399787903, + 251.19723510742188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_54", + "rotation": 1.6964600329384885, + "transform_matrix": [ + [ + -0.439602255821228, + 0.418556809425354, + -0.7947075366973877, + -195.51669311523438 + ], + [ + -0.8981925249099731, + -0.20485422015190125, + 0.38895365595817566, + 95.69172668457031 + ], + [ + 0.0, + 0.8847852945327759, + 0.46599897742271423, + 214.6466827392578 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_55", + "rotation": 1.7278759594743862, + "transform_matrix": [ + [ + -0.9972888231277466, + -0.018047327175736427, + 0.07133987545967102, + 17.55128288269043 + ], + [ + 0.07358725368976593, + -0.2445857971906662, + 0.9668312668800354, + 237.86317443847656 + ], + [ + 0.0, + 0.9694596529006958, + 0.24525073170661926, + 160.33743286132812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_56", + "rotation": 1.7592918860102842, + "transform_matrix": [ + [ + -0.7495988011360168, + -0.10403720289468765, + 0.6536648869514465, + 160.81692504882812 + ], + [ + 0.6618924736976624, + -0.11782299727201462, + 0.7402809858322144, + 182.12652587890625 + ], + [ + -7.450581485102248e-09, + 0.9875697493553162, + 0.15718139708042145, + 138.67031860351562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_57", + "rotation": 1.7907078125461822, + "transform_matrix": [ + [ + 0.6967536211013794, + -0.133922278881073, + 0.7046979665756226, + 173.37225341796875 + ], + [ + 0.7173106670379639, + 0.13008427619934082, + -0.6845024228096008, + -168.40367126464844 + ], + [ + 0.0, + 0.9824167490005493, + 0.18670056760311127, + 145.93272399902344 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_58", + "rotation": 1.8221237390820801, + "transform_matrix": [ + [ + -0.7298516631126404, + -0.5018200874328613, + 0.4642123579978943, + 114.20714569091797 + ], + [ + 0.6836054921150208, + -0.5357683897018433, + 0.49561652541160583, + 121.93330383300781 + ], + [ + -2.9802322387695312e-08, + 0.6790646314620972, + 0.7340784072875977, + 280.60052490234375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_59", + "rotation": 1.8535396656179781, + "transform_matrix": [ + [ + 0.9340162873268127, + -0.2607841193675995, + 0.24414163827896118, + 60.064571380615234 + ], + [ + 0.3572303354740143, + 0.6818475127220154, + -0.6383339762687683, + -157.04513549804688 + ], + [ + 0.0, + 0.6834291219711304, + 0.7300169467926025, + 279.6012878417969 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_60", + "rotation": 1.8849555921538759, + "transform_matrix": [ + [ + -0.6648377776145935, + -0.2944951057434082, + 0.6864861845970154, + 168.8917236328125 + ], + [ + 0.7469877600669861, + -0.2621080279350281, + 0.6109898686408997, + 150.31785583496094 + ], + [ + 1.4901161193847656e-08, + 0.9190059304237366, + 0.3942435383796692, + 196.9931640625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_61", + "rotation": 1.9163715186897738, + "transform_matrix": [ + [ + -0.5176371335983276, + 0.5287270545959473, + -0.6726807951927185, + -165.49526977539062 + ], + [ + -0.8556003570556641, + -0.3198792338371277, + 0.4069710671901703, + 100.12444305419922 + ], + [ + 0.0, + 0.7862091064453125, + 0.6179603934288025, + 252.03277587890625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_62", + "rotation": 1.9477874452256718, + "transform_matrix": [ + [ + 0.9996671676635742, + 0.018230628222227097, + -0.018258104100823402, + -4.491921901702881 + ], + [ + -0.025801442563533783, + 0.7063388824462891, + -0.7074034214019775, + -174.037841796875 + ], + [ + 9.31322685637781e-10, + 0.7076390981674194, + 0.7065740823745728, + 273.83380126953125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_63", + "rotation": 1.9792033717615698, + "transform_matrix": [ + [ + 0.29488709568977356, + -0.2679210305213928, + 0.9172022342681885, + 225.6532745361328 + ], + [ + 0.9555320143699646, + 0.08268322050571442, + -0.28305813670158386, + -69.63894653320312 + ], + [ + 0.0, + 0.9598862528800964, + 0.2803893983364105, + 168.9823760986328 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_64", + "rotation": 2.0106192982974678, + "transform_matrix": [ + [ + -0.9880409240722656, + -0.0796956941485405, + 0.13199952244758606, + 32.474979400634766 + ], + [ + 0.15419234335422516, + -0.5106778144836426, + 0.8458327054977417, + 208.0946807861328 + ], + [ + 0.0, + 0.8560705184936523, + 0.5168589949607849, + 227.15943908691406 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_65", + "rotation": 2.0420352248333655, + "transform_matrix": [ + [ + 0.7512916326522827, + 0.2990010976791382, + -0.5883527994155884, + -144.74859619140625 + ], + [ + -0.6599701642990112, + 0.34037452936172485, + -0.6697644591331482, + -164.77777099609375 + ], + [ + 0.0, + 0.8914838433265686, + 0.4530524015426636, + 211.46151733398438 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_66", + "rotation": 2.0734511513692633, + "transform_matrix": [ + [ + -0.9898731112480164, + -0.06451162695884705, + 0.1264498084783554, + 31.109622955322266 + ], + [ + 0.14195530116558075, + -0.44984811544418335, + 0.8817512392997742, + 216.9315185546875 + ], + [ + 0.0, + 0.8907720446586609, + 0.4544503092765808, + 211.80545043945312 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_67", + "rotation": 2.1048670779051615, + "transform_matrix": [ + [ + -0.9039576053619385, + 0.2945946156978607, + -0.30995920300483704, + -76.25723266601562 + ], + [ + -0.42762213945388794, + -0.6227484941482544, + 0.6552279591560364, + 161.20144653320312 + ], + [ + 0.0, + 0.7248436212539673, + 0.6889134049415588, + 269.4888610839844 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_68", + "rotation": 2.1362830044410597, + "transform_matrix": [ + [ + 0.951743483543396, + -0.08961367607116699, + 0.293519526720047, + 72.21269226074219 + ], + [ + 0.3068946301937103, + 0.2779104709625244, + -0.9102645516395569, + -223.94642639160156 + ], + [ + 0.0, + 0.9564179182052612, + 0.29200148582458496, + 171.83921813964844 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_69", + "rotation": 2.1676989309769574, + "transform_matrix": [ + [ + 0.8022475242614746, + 0.4437456727027893, + -0.39936044812202454, + -98.2520523071289 + ], + [ + -0.5969916582107544, + 0.5963128805160522, + -0.5366673469543457, + -132.03277587890625 + ], + [ + -2.9802322387695312e-08, + 0.6689549088478088, + 0.7433030009269714, + 282.8699951171875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_70", + "rotation": 2.199114857512855, + "transform_matrix": [ + [ + 0.025093330070376396, + -0.569326639175415, + 0.8217284083366394, + 202.16445922851562 + ], + [ + 0.9996851682662964, + 0.014290799386799335, + -0.02062639594078064, + -5.074577331542969 + ], + [ + 0.0, + 0.8219872117042542, + 0.5695059895515442, + 240.11183166503906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_71", + "rotation": 2.230530784048753, + "transform_matrix": [ + [ + -0.6059244871139526, + -0.5203811526298523, + 0.6017132997512817, + 148.03558349609375 + ], + [ + 0.795522153377533, + -0.3963581323623657, + 0.45830634236335754, + 112.75411224365234 + ], + [ + -1.4901161193847656e-08, + 0.7563751339912415, + 0.6541379690170288, + 260.93328857421875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_72", + "rotation": 2.261946710584651, + "transform_matrix": [ + [ + -0.6581231355667114, + 0.0851588249206543, + -0.7480788230895996, + -184.04495239257812 + ], + [ + -0.7529103755950928, + -0.07443779706954956, + 0.6538998484611511, + 160.8747100830078 + ], + [ + 3.725290298461914e-09, + 0.9935827851295471, + 0.11310620605945587, + 127.8267822265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_73", + "rotation": 2.2933626371205493, + "transform_matrix": [ + [ + 0.34070995450019836, + 0.22782374918460846, + -0.9121475219726562, + -224.40968322753906 + ], + [ + -0.940168559551239, + 0.08256160467863083, + -0.33055537939071655, + -81.32437896728516 + ], + [ + 0.0, + 0.9701957106590271, + 0.24232231080532074, + 159.61697387695312 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_74", + "rotation": 2.324778563656447, + "transform_matrix": [ + [ + -0.554587721824646, + -0.25747188925743103, + 0.7912905812263489, + 194.67604064941406 + ], + [ + 0.8321253061294556, + -0.1715976446866989, + 0.5273725390434265, + 129.7460174560547 + ], + [ + 0.0, + 0.9509271383285522, + 0.3094148337841034, + 176.12330627441406 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_75", + "rotation": 2.356194490192345, + "transform_matrix": [ + [ + -0.7046522498130798, + 0.4955294132232666, + -0.507854163646698, + -124.94403839111328 + ], + [ + -0.7095528244972229, + -0.4921070337295532, + 0.5043466687202454, + 124.08110809326172 + ], + [ + 0.0, + 0.7157382965087891, + 0.6983686089515686, + 271.8150634765625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_76", + "rotation": 2.387610416728243, + "transform_matrix": [ + [ + -0.9400763511657715, + 0.14811737835407257, + -0.30711206793785095, + -75.55677032470703 + ], + [ + -0.3409642279148102, + -0.40837612748146057, + 0.8467422127723694, + 208.31845092773438 + ], + [ + 0.0, + 0.9007164239883423, + 0.43440744280815125, + 206.87442016601562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_77", + "rotation": 2.419026343264141, + "transform_matrix": [ + [ + -0.7137693166732788, + 0.22677011787891388, + -0.6626527309417725, + -163.0281219482422 + ], + [ + -0.7003808617591858, + -0.23110507428646088, + 0.675320029258728, + 166.14456176757812 + ], + [ + -1.4901161193847656e-08, + 0.9461318850517273, + 0.32378122210502625, + 179.65777587890625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_78", + "rotation": 2.450442269800039, + "transform_matrix": [ + [ + 0.45273786783218384, + -0.6234071254730225, + 0.6374887824058533, + 156.83718872070312 + ], + [ + 0.8916435837745667, + 0.31653904914855957, + -0.3236891031265259, + -79.6351089477539 + ], + [ + 0.0, + 0.7149591445922852, + 0.6991662383079529, + 272.01129150390625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_79", + "rotation": 2.4818581963359367, + "transform_matrix": [ + [ + -0.6431365013122559, + -0.27900010347366333, + 0.7131158709526062, + 175.44325256347656 + ], + [ + 0.7657514810562134, + -0.2343255877494812, + 0.5989291071891785, + 147.3506317138672 + ], + [ + 1.4901161193847656e-08, + 0.931262731552124, + 0.3643481433391571, + 189.63819885253906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_80", + "rotation": 2.5132741228718345, + "transform_matrix": [ + [ + -0.9422553777694702, + 0.24483473598957062, + -0.22849662601947784, + -56.215538024902344 + ], + [ + -0.33489513397216797, + -0.6888629794120789, + 0.6428943276405334, + 158.16709899902344 + ], + [ + -1.4901161193847656e-08, + 0.6822929978370667, + 0.7310788035392761, + 279.862548828125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_81", + "rotation": 2.5446900494077327, + "transform_matrix": [ + [ + 0.7381781935691833, + 0.4379826784133911, + -0.5130926370620728, + -126.23284149169922 + ], + [ + -0.6746057868003845, + 0.4792565703392029, + -0.5614446401596069, + -138.12857055664062 + ], + [ + -1.4901162970204496e-08, + 0.7605815529823303, + 0.6492424011230469, + 259.7288818359375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_82", + "rotation": 2.5761059759436304, + "transform_matrix": [ + [ + -0.49508771300315857, + 0.37430858612060547, + -0.7840798497200012, + -192.90203857421875 + ], + [ + -0.8688428997993469, + -0.21329009532928467, + 0.44678768515586853, + 109.92024993896484 + ], + [ + 0.0, + 0.9024413228034973, + 0.4308127164840698, + 205.9900360107422 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_83", + "rotation": 2.6075219024795286, + "transform_matrix": [ + [ + 0.5113507509231567, + -0.18641558289527893, + 0.8389097452163696, + 206.39149475097656 + ], + [ + 0.859372079372406, + 0.11092255264520645, + -0.499175101518631, + -122.80879211425781 + ], + [ + 7.450580596923828e-09, + 0.976189136505127, + 0.21692070364952087, + 153.36758422851562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_84", + "rotation": 2.6389378290154264, + "transform_matrix": [ + [ + -0.7455733418464661, + -0.31346333026885986, + 0.5880994200706482, + 144.68626403808594 + ], + [ + 0.6664234399795532, + -0.35069283843040466, + 0.6579469442367554, + 161.87039184570312 + ], + [ + 1.4901160305669237e-08, + 0.8824710249900818, + 0.47036659717559814, + 215.72122192382812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_85", + "rotation": 2.670353755551324, + "transform_matrix": [ + [ + -0.27511346340179443, + -0.5170398950576782, + 0.810544490814209, + 199.4129638671875 + ], + [ + 0.9614118337631226, + -0.14795391261577606, + 0.23194190859794617, + 57.063148498535156 + ], + [ + 7.450580596923828e-09, + 0.8430773615837097, + 0.5377923846244812, + 232.30953979492188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_86", + "rotation": 2.7017696820872223, + "transform_matrix": [ + [ + -0.3680904507637024, + 0.5164414048194885, + -0.7731737494468689, + -190.2188720703125 + ], + [ + -0.9297900199890137, + -0.20445172488689423, + 0.3060883581638336, + 75.30491638183594 + ], + [ + 0.0, + 0.8315572738647461, + 0.5554388761520386, + 236.65098571777344 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_87", + "rotation": 2.73318560862312, + "transform_matrix": [ + [ + 0.22635477781295776, + 0.06367426365613937, + -0.971961498260498, + -239.12533569335938 + ], + [ + -0.9740450382232666, + 0.0147970300167799, + -0.22587057948112488, + -55.56946563720703 + ], + [ + 9.31322685637781e-10, + 0.9978609681129456, + 0.06537096947431564, + 116.08279418945312 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_88", + "rotation": 2.7646015351590183, + "transform_matrix": [ + [ + 0.8000792264938354, + 0.43658939003944397, + -0.4114157557487488, + -101.21792602539062 + ], + [ + -0.5998944044113159, + 0.5822793245315552, + -0.5487052798271179, + -134.99436950683594 + ], + [ + 0.0, + 0.6858136057853699, + 0.7277771830558777, + 279.0502624511719 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_89", + "rotation": 2.796017461694916, + "transform_matrix": [ + [ + 0.397014856338501, + -0.39276501536369324, + 0.8295269012451172, + 204.08306884765625 + ], + [ + 0.917812168598175, + 0.16989703476428986, + -0.3588256239891052, + -88.2795181274414 + ], + [ + 0.0, + 0.9038089513778687, + 0.42793622612953186, + 205.2823486328125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_90", + "rotation": 2.827433388230814, + "transform_matrix": [ + [ + 0.509971022605896, + -0.03723538666963577, + 0.8593853116035461, + 211.42897033691406 + ], + [ + 0.8601917028427124, + 0.022075273096561432, + -0.5094929337501526, + -125.34722900390625 + ], + [ + 0.0, + 0.9990626573562622, + 0.04328731447458267, + 110.64969635009766 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_91", + "rotation": 2.858849314766712, + "transform_matrix": [ + [ + -0.7033489942550659, + 0.11619284749031067, + -0.7012842297554016, + -172.53236389160156 + ], + [ + -0.7108448147773743, + -0.11496761441230774, + 0.6938892602920532, + 170.71302795410156 + ], + [ + -7.450580596923828e-09, + 0.9865503311157227, + 0.1634574681520462, + 140.21437072753906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_92", + "rotation": 2.8902652413026098, + "transform_matrix": [ + [ + -0.8970558643341064, + -0.195368692278862, + 0.396386057138443, + 97.52027130126953 + ], + [ + 0.4419172704219818, + -0.3965824544429779, + 0.8046312928199768, + 197.9581756591797 + ], + [ + -1.4901162970204496e-08, + 0.8969689607620239, + 0.4420934021472931, + 208.76535034179688 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_93", + "rotation": 2.921681167838508, + "transform_matrix": [ + [ + -0.7156441807746887, + 0.0857909619808197, + -0.69317626953125, + -170.53762817382812 + ], + [ + -0.6984650492668152, + -0.0879010334610939, + 0.7102252840995789, + 174.73208618164062 + ], + [ + 0.0, + 0.9924278855323792, + 0.12282786518335342, + 130.21853637695312 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_94", + "rotation": 2.9530970943744057, + "transform_matrix": [ + [ + 0.9111450910568237, + -0.09498140215873718, + 0.40099015831947327, + 98.65298461914062 + ], + [ + 0.4120855927467346, + 0.21000936627388, + -0.8866124153137207, + -218.12745666503906 + ], + [ + 0.0, + 0.9730747938156128, + 0.23048950731754303, + 156.70582580566406 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_95", + "rotation": 2.9845130209103035, + "transform_matrix": [ + [ + 0.7221128344535828, + -0.07752580940723419, + 0.6874175071716309, + 169.12083435058594 + ], + [ + 0.6917753219604492, + 0.08092568069696426, + -0.7175639271736145, + -176.5375518798828 + ], + [ + -7.450580596923828e-09, + 0.9937005639076233, + 0.11206790804862976, + 127.57133483886719 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_96", + "rotation": 3.0159289474462017, + "transform_matrix": [ + [ + -0.2813744843006134, + -0.34529808163642883, + 0.8953198194503784, + 220.2696990966797 + ], + [ + 0.9595981240272522, + -0.10124871879816055, + 0.2625267505645752, + 64.5877456665039 + ], + [ + 0.0, + 0.9330154657363892, + 0.3598361909389496, + 188.5281524658203 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_97", + "rotation": 3.0473448739820994, + "transform_matrix": [ + [ + -0.3577631711959839, + 0.26179778575897217, + -0.8963634371757507, + -220.52642822265625 + ], + [ + -0.9338123202323914, + -0.10030024498701096, + 0.3434157073497772, + 84.48831939697266 + ], + [ + 0.0, + 0.9598966836929321, + 0.28035375475883484, + 168.97360229492188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_98", + "rotation": 3.0787608005179976, + "transform_matrix": [ + [ + -0.5809978246688843, + 0.4663980305194855, + -0.6670190691947937, + -164.10235595703125 + ], + [ + -0.8139052391052246, + -0.3329334259033203, + 0.4761446714401245, + 117.14276885986328 + ], + [ + -1.4901162970204496e-08, + 0.8195291757583618, + 0.573037326335907, + 240.9806365966797 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_99", + "rotation": 3.1101767270538954, + "transform_matrix": [ + [ + 0.6000511646270752, + -0.5252341628074646, + 0.6033802032470703, + 148.4456787109375 + ], + [ + 0.7999616861343384, + 0.393978089094162, + -0.45259541273117065, + -111.34909057617188 + ], + [ + -1.4901161193847656e-08, + 0.7542612552642822, + 0.6565743088722229, + 261.5326843261719 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_100", + "rotation": 3.141592653589793, + "transform_matrix": [ + [ + 0.0908501148223877, + -0.6452778577804565, + 0.7585266828536987, + 186.6153564453125 + ], + [ + 0.9958646297454834, + 0.05886701121926308, + -0.06919839978218079, + -17.024429321289062 + ], + [ + -3.725290298461914e-09, + 0.7616766095161438, + 0.6479573845863342, + 259.4127197265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_101", + "rotation": 3.1730085801256913, + "transform_matrix": [ + [ + 0.5152658820152283, + -0.5557758808135986, + 0.6523910760879517, + 160.5035400390625 + ], + [ + 0.85703045129776, + 0.3341449201107025, + -0.39223212003707886, + -96.49832153320312 + ], + [ + -1.4901162970204496e-08, + 0.7612228393554688, + 0.648490309715271, + 259.5438537597656 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_102", + "rotation": 3.204424506661589, + "transform_matrix": [ + [ + 0.460094690322876, + -0.291624516248703, + 0.8386107087135315, + 206.31793212890625 + ], + [ + 0.8878698348999023, + 0.15112000703811646, + -0.4345685839653015, + -106.91407775878906 + ], + [ + -1.4901161193847656e-08, + 0.9445198774337769, + 0.3284541368484497, + 180.80743408203125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_103", + "rotation": 3.2358404331974873, + "transform_matrix": [ + [ + 0.5772086977958679, + -0.1528327465057373, + 0.8021672964096069, + 197.3519744873047 + ], + [ + 0.8165966868400574, + 0.1080293282866478, + -0.5670093297958374, + -139.49758911132812 + ], + [ + 0.0, + 0.982329785823822, + 0.18715818226337433, + 146.04530334472656 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_104", + "rotation": 3.267256359733385, + "transform_matrix": [ + [ + -0.5984800457954407, + 0.26929283142089844, + -0.7545218467712402, + -185.63006591796875 + ], + [ + -0.8011379837989807, + -0.20117180049419403, + 0.5636560916900635, + 138.67262268066406 + ], + [ + 2.980232594040899e-08, + 0.9418128132820129, + 0.33613792061805725, + 182.69781494140625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_105", + "rotation": 3.2986722862692828, + "transform_matrix": [ + [ + 0.8601670265197754, + 0.11704864352941513, + -0.49639931321144104, + -122.12588500976562 + ], + [ + -0.5100124478340149, + 0.19740965962409973, + -0.8372076153755188, + -205.9727325439453 + ], + [ + 0.0, + 0.973308265209198, + 0.22950154542922974, + 156.4627685546875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_106", + "rotation": 3.330088212805181, + "transform_matrix": [ + [ + 0.914472758769989, + 0.12403015792369843, + -0.3851704001426697, + -94.7609634399414 + ], + [ + -0.40464770793914795, + 0.2802986204624176, + -0.8704555630683899, + -214.1525115966797 + ], + [ + -7.450581485102248e-09, + 0.951866090297699, + 0.3065139651298523, + 175.40963745117188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_107", + "rotation": 3.3615041393410787, + "transform_matrix": [ + [ + 0.42782968282699585, + 0.27842655777931213, + -0.8599071502685547, + -211.55735778808594 + ], + [ + -0.9038594961166382, + 0.1317894458770752, + -0.40702545642852783, + -100.13782501220703 + ], + [ + -1.4901162970204496e-08, + 0.9513728618621826, + 0.30804187059402466, + 175.78553771972656 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_108", + "rotation": 3.392920065876977, + "transform_matrix": [ + [ + -0.9087370038032532, + -0.020130526274442673, + 0.4168838560581207, + 102.5632095336914 + ], + [ + 0.41736966371536255, + -0.04383010044693947, + 0.9076792597770691, + 223.31039428710938 + ], + [ + 0.0, + 0.998836100101471, + 0.048231907188892365, + 111.86618041992188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_109", + "rotation": 3.4243359924128747, + "transform_matrix": [ + [ + -0.4140879511833191, + -0.4043072462081909, + 0.8155162930488586, + 200.6361541748047 + ], + [ + 0.9102368950843811, + -0.18392877280712128, + 0.3709973096847534, + 91.2740478515625 + ], + [ + 0.0, + 0.8959385752677917, + 0.44417804479599, + 209.27822875976562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_110", + "rotation": 3.4557519189487724, + "transform_matrix": [ + [ + -0.9165717363357544, + 0.2541063725948334, + -0.3087494969367981, + -75.95962524414062 + ], + [ + -0.3998703956604004, + -0.582455575466156, + 0.7077070474624634, + 174.112548828125 + ], + [ + 1.4901161193847656e-08, + 0.7721240520477295, + 0.6354718804359436, + 256.34100341796875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_111", + "rotation": 3.4871678454846706, + "transform_matrix": [ + [ + 0.8181691765785217, + -0.24107849597930908, + 0.5219964385032654, + 128.42337036132812 + ], + [ + 0.574977457523346, + 0.3430447578430176, + -0.7427794337272644, + -182.7411651611328 + ], + [ + 0.0, + 0.9078554511070251, + 0.419283390045166, + 203.15354919433594 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_112", + "rotation": 3.5185837720205684, + "transform_matrix": [ + [ + 0.845590353012085, + -0.08147143572568893, + 0.5275788307189941, + 129.7967987060547 + ], + [ + 0.5338324904441833, + 0.12905070185661316, + -0.8356845378875732, + -205.59803771972656 + ], + [ + 0.0, + 0.988285481929779, + 0.15261609852313995, + 137.54714965820312 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_113", + "rotation": 3.5499996985564666, + "transform_matrix": [ + [ + 0.3696504235267639, + 0.07750154286623001, + -0.9259330034255981, + -227.80126953125 + ], + [ + -0.9291708469390869, + 0.030832305550575256, + -0.36836233735084534, + -90.62578582763672 + ], + [ + -1.862645149230957e-09, + 0.9965152740478516, + 0.08340935409069061, + 120.52066040039062 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_114", + "rotation": 3.5814156250923643, + "transform_matrix": [ + [ + -0.9995880722999573, + -0.006807285360991955, + 0.027878617867827415, + 6.858794689178467 + ], + [ + 0.028697673231363297, + -0.23710918426513672, + 0.9710590243339539, + 238.9033203125 + ], + [ + 4.6566125955216364e-10, + 0.9714592099189758, + 0.2372068613767624, + 158.35845947265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_115", + "rotation": 3.612831551628262, + "transform_matrix": [ + [ + 0.4854675829410553, + 0.2917364239692688, + -0.8241426944732666, + -202.75843811035156 + ], + [ + -0.8742547631263733, + 0.1619991958141327, + -0.45764070749282837, + -112.59034729003906 + ], + [ + 0.0, + 0.9426802396774292, + 0.3336973190307617, + 182.0973663330078 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_116", + "rotation": 3.6442474781641603, + "transform_matrix": [ + [ + 0.11734791100025177, + -0.6255934834480286, + 0.7712731957435608, + 189.7512969970703 + ], + [ + 0.9930909276008606, + 0.07392282783985138, + -0.09113696962594986, + -22.421833038330078 + ], + [ + -3.725290298461914e-09, + 0.7766391038894653, + 0.6299458146095276, + 254.9814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_117", + "rotation": 3.675663404700058, + "transform_matrix": [ + [ + -0.2545764148235321, + -0.1346326768398285, + 0.9576350450515747, + 235.6007080078125 + ], + [ + 0.967052698135376, + -0.03544202074408531, + 0.2520972192287445, + 62.0218391418457 + ], + [ + -3.725290298461914e-09, + 0.9902615547180176, + 0.13921956717967987, + 134.25128173828125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_118", + "rotation": 3.7070793312359562, + "transform_matrix": [ + [ + -0.48452603816986084, + -0.22488246858119965, + 0.8453770875930786, + 207.9825897216797 + ], + [ + 0.8747767806053162, + -0.12455910444259644, + 0.46824195981025696, + 115.1985092163086 + ], + [ + 7.4505797087454084e-09, + 0.9663917422294617, + 0.25707411766052246, + 163.2462615966797 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_119", + "rotation": 3.738495257771854, + "transform_matrix": [ + [ + 0.9862238764762878, + -0.11309061199426651, + 0.12071819603443146, + 29.69951057434082 + ], + [ + 0.16541574895381927, + 0.6742565631866455, + -0.719732940196991, + -177.0712127685547 + ], + [ + 0.0, + 0.7297865152359009, + 0.6836749911308289, + 268.2001037597656 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_120", + "rotation": 3.7699111843077517, + "transform_matrix": [ + [ + 0.7438175082206726, + 0.05573763698339462, + -0.6660546064376831, + -163.86508178710938 + ], + [ + -0.6683827042579651, + 0.06202828511595726, + -0.7412266731262207, + -182.3591766357422 + ], + [ + 3.725290298461914e-09, + 0.996516764163971, + 0.08339180052280426, + 120.51634216308594 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_121", + "rotation": 3.80132711084365, + "transform_matrix": [ + [ + -0.726556122303009, + 0.18196827173233032, + -0.6625735759735107, + -163.00863647460938 + ], + [ + -0.6871071457862854, + -0.19241563975811005, + 0.7006140351295471, + 172.36749267578125 + ], + [ + 1.4901159417490817e-08, + 0.96429443359375, + 0.264832466840744, + 165.15499877929688 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_122", + "rotation": 3.8327430373795477, + "transform_matrix": [ + [ + -0.8304526209831238, + -0.256427139043808, + 0.4945638179779053, + 121.67430877685547 + ], + [ + 0.5570890307426453, + -0.3822559416294098, + 0.7372462749481201, + 181.37989807128906 + ], + [ + 0.0, + 0.8877643346786499, + 0.46029818058013916, + 213.24415588378906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_123", + "rotation": 3.864158963915446, + "transform_matrix": [ + [ + -0.9915384650230408, + -0.06745058298110962, + 0.11091341078281403, + 27.287302017211914 + ], + [ + 0.1298128068447113, + -0.5152022242546082, + 0.8471807837486267, + 208.42636108398438 + ], + [ + -3.725290076417309e-09, + 0.8544103503227234, + 0.5195987820625305, + 227.83349609375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_124", + "rotation": 3.8955748904513436, + "transform_matrix": [ + [ + -0.23322033882141113, + -0.03853582590818405, + 0.9716600775718689, + 239.05117797851562 + ], + [ + 0.9724239706993103, + -0.00924220122396946, + 0.23303712904453278, + 57.33259963989258 + ], + [ + 0.0, + 0.9992144703865051, + 0.03962863236665726, + 109.74957275390625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_125", + "rotation": 3.9269908169872414, + "transform_matrix": [ + [ + -0.9031312465667725, + -0.1736091673374176, + 0.3927004337310791, + 96.613525390625 + ], + [ + 0.4293643832206726, + -0.36517205834388733, + 0.8260117769241333, + 203.21829223632812 + ], + [ + 1.4901160305669237e-08, + 0.9146087169647217, + 0.40433990955352783, + 199.47711181640625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_126", + "rotation": 3.9584067435231396, + "transform_matrix": [ + [ + -0.39627689123153687, + 0.27343544363975525, + -0.8764688372612, + -215.6319122314453 + ], + [ + -0.9181310534477234, + -0.11801816523075104, + 0.3782949447631836, + 93.0694351196289 + ], + [ + 7.450580596923828e-09, + 0.9546228051185608, + 0.2978174388408661, + 173.27008056640625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_127", + "rotation": 3.9898226700590373, + "transform_matrix": [ + [ + -0.9087867736816406, + -0.0015489625511690974, + 0.4172581136226654, + 102.6552963256836 + ], + [ + 0.4172610640525818, + -0.0033736114855855703, + 0.9087803959846497, + 223.58131408691406 + ], + [ + -1.1641533570472262e-10, + 0.9999931454658508, + 0.0037122145295143127, + 100.91329193115234 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_128", + "rotation": 4.0212385965949355, + "transform_matrix": [ + [ + -0.9803975224494934, + -0.028244366869330406, + 0.19499507546424866, + 47.973365783691406 + ], + [ + 0.19703003764152527, + -0.14054054021835327, + 0.9702718257904053, + 238.7096405029297 + ], + [ + 1.862645371275562e-09, + 0.9896718859672546, + 0.14335057139396667, + 135.26760864257812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_129", + "rotation": 4.052654523130833, + "transform_matrix": [ + [ + 0.9810978174209595, + -0.09684433788061142, + 0.16753636300563812, + 41.21788024902344 + ], + [ + 0.19351297616958618, + 0.49099433422088623, + -0.8493981957435608, + -208.97190856933594 + ], + [ + 7.450581485102248e-09, + 0.8657631278038025, + 0.5004540085792542, + 223.12344360351562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_130", + "rotation": 4.084070449666731, + "transform_matrix": [ + [ + 0.9792728424072266, + 0.0699179470539093, + -0.19009557366371155, + -46.76797103881836 + ], + [ + -0.2025459259748459, + 0.33804062008857727, + -0.9190776348114014, + -226.11465454101562 + ], + [ + 0.0, + 0.9385308027267456, + 0.34519556164741516, + 184.92620849609375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_131", + "rotation": 4.11548637620263, + "transform_matrix": [ + [ + 0.2578129768371582, + -0.5818191766738892, + 0.7713747024536133, + 189.77627563476562 + ], + [ + 0.9661948680877686, + 0.1552487462759018, + -0.2058284729719162, + -50.638633728027344 + ], + [ + 0.0, + 0.7983635067939758, + 0.6021758317947388, + 248.14938354492188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_132", + "rotation": 4.146902302738527, + "transform_matrix": [ + [ + 0.7006613612174988, + -0.38324177265167236, + 0.6018300652503967, + 148.06431579589844 + ], + [ + 0.7134940028190613, + 0.37634894251823425, + -0.591005802154541, + -145.4012908935547 + ], + [ + 0.0, + 0.843497097492218, + 0.5371338129043579, + 232.14752197265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_133", + "rotation": 4.178318229274425, + "transform_matrix": [ + [ + 0.3226009011268616, + 0.26201996207237244, + -0.9095461964607239, + -223.7696990966797 + ], + [ + -0.9465351104736328, + 0.0893024206161499, + -0.30999425053596497, + -76.26585388183594 + ], + [ + 0.0, + 0.9609217047691345, + 0.2768201529979706, + 168.104248046875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_134", + "rotation": 4.209734155810323, + "transform_matrix": [ + [ + -0.6934257745742798, + -0.46307483315467834, + 0.5520166754722595, + 135.80905151367188 + ], + [ + 0.7205280661582947, + -0.44565650820732117, + 0.5312528014183044, + 130.70065307617188 + ], + [ + 2.9802322387695312e-08, + 0.76612788438797, + 0.6426881551742554, + 258.1163635253906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_135", + "rotation": 4.241150082346221, + "transform_matrix": [ + [ + 0.9524295330047607, + -0.19689513742923737, + 0.23261640965938568, + 57.229103088378906 + ], + [ + 0.30475908517837524, + 0.6153343319892883, + -0.7269700169563293, + -178.85171508789062 + ], + [ + 0.0, + 0.7632796168327332, + 0.6460680961608887, + 258.94793701171875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_136", + "rotation": 4.272566008882119, + "transform_matrix": [ + [ + 0.9121376276016235, + 0.3024846315383911, + -0.2766009569168091, + -68.05032348632812 + ], + [ + -0.4098842144012451, + 0.67313551902771, + -0.6155351400375366, + -151.4360809326172 + ], + [ + 1.4901161193847656e-08, + 0.6748270392417908, + 0.7379758954048157, + 281.55938720703125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_137", + "rotation": 4.303981935418016, + "transform_matrix": [ + [ + -0.18959450721740723, + -0.050700604915618896, + 0.9805526733398438, + 241.23895263671875 + ], + [ + 0.981862485408783, + -0.00979012344032526, + 0.18934157490730286, + 46.58246994018555 + ], + [ + -9.313225746154785e-10, + 0.9986658692359924, + 0.05163717642426491, + 112.7039566040039 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_138", + "rotation": 4.335397861953915, + "transform_matrix": [ + [ + -0.9230108857154846, + 0.021373780444264412, + -0.3841798007488251, + -94.51724243164062 + ], + [ + -0.3847739100456238, + -0.05127227306365967, + 0.921585738658905, + 226.73170471191406 + ], + [ + -1.862645149230957e-09, + 0.9984559416770935, + 0.05554894730448723, + 113.66634368896484 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_139", + "rotation": 4.366813788489813, + "transform_matrix": [ + [ + -0.6363126039505005, + 0.1268349587917328, + -0.7609331011772156, + -187.2073974609375 + ], + [ + -0.7714313864707947, + -0.10461939126253128, + 0.627653181552887, + 154.4174041748047 + ], + [ + 7.450581485102248e-09, + 0.9863910675048828, + 0.1644151359796524, + 140.44998168945312 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_140", + "rotation": 4.39822971502571, + "transform_matrix": [ + [ + -0.998077929019928, + 0.02394108474254608, + -0.057159919291734695, + -14.062681198120117 + ], + [ + -0.061971213668584824, + -0.3855833411216736, + 0.9205895662307739, + 226.48663330078125 + ], + [ + 0.0, + 0.9223623871803284, + 0.386325865983963, + 195.04522705078125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_141", + "rotation": 4.429645641561609, + "transform_matrix": [ + [ + -0.6436889171600342, + -0.3710091710090637, + 0.6693405508995056, + 164.67349243164062 + ], + [ + 0.7652872800827026, + -0.31205862760543823, + 0.5629873871803284, + 138.50811767578125 + ], + [ + 1.4901161193847656e-08, + 0.8746265769004822, + 0.48479726910591125, + 219.27151489257812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_142", + "rotation": 4.461061568097506, + "transform_matrix": [ + [ + -0.23952659964561462, + 0.03884132578969002, + -0.9701125621795654, + -238.67044067382812 + ], + [ + -0.9708898067474365, + -0.009582477621734142, + 0.239334836602211, + 58.88198471069336 + ], + [ + 0.0, + 0.9991992712020874, + 0.04000590741634369, + 109.84239196777344 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_143", + "rotation": 4.4924774946334045, + "transform_matrix": [ + [ + 0.5381516218185425, + 0.5012684464454651, + -0.6775859594345093, + -166.70205688476562 + ], + [ + -0.8428481817245483, + 0.3200557827949524, + -0.43263307213783264, + -106.4378890991211 + ], + [ + 1.4901162970204496e-08, + 0.8039242625236511, + 0.5947316288948059, + 246.3179473876953 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_144", + "rotation": 4.523893421169302, + "transform_matrix": [ + [ + 0.05118519067764282, + 0.3219101130962372, + -0.9453855156898499, + -232.58705139160156 + ], + [ + -0.9986891746520996, + 0.016498656943440437, + -0.04845324903726578, + -11.920638084411621 + ], + [ + 0.0, + 0.9466264843940735, + 0.32233259081840515, + 179.3013916015625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_145", + "rotation": 4.5553093477052, + "transform_matrix": [ + [ + -0.3285975158214569, + 0.46884194016456604, + -0.819884717464447, + -201.71087646484375 + ], + [ + -0.9444699883460999, + -0.16311824321746826, + 0.2852521240711212, + 70.1787109375 + ], + [ + 1.4901160305669237e-08, + 0.8680895566940308, + 0.49640747904777527, + 222.1278839111328 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_146", + "rotation": 4.586725274241099, + "transform_matrix": [ + [ + 0.7493456602096558, + -0.46228912472724915, + 0.47409912943840027, + 116.6395034790039 + ], + [ + 0.6621791124343872, + 0.52314293384552, + -0.5365075469017029, + -131.99343872070312 + ], + [ + 0.0, + 0.7159680128097534, + 0.6981330513954163, + 271.7571105957031 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_147", + "rotation": 4.618141200776996, + "transform_matrix": [ + [ + 0.8128622770309448, + 0.30218756198883057, + -0.49793341755867004, + -122.50330352783203 + ], + [ + -0.5824560523033142, + 0.4217260181903839, + -0.6949044466018677, + -170.96279907226562 + ], + [ + 0.0, + 0.8548858165740967, + 0.5188161134719849, + 227.64093017578125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_148", + "rotation": 4.649557127312894, + "transform_matrix": [ + [ + -0.5332050323486328, + 0.4397772252559662, + -0.7226952314376831, + -177.8000030517578 + ], + [ + -0.8459861278533936, + -0.2771811783313751, + 0.45549771189689636, + 112.0631332397461 + ], + [ + 0.0, + 0.8542637825012207, + 0.5198397636413574, + 227.89279174804688 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_149", + "rotation": 4.680973053848792, + "transform_matrix": [ + [ + 0.9839763641357422, + 0.07590610533952713, + -0.1613345891237259, + -39.69209671020508 + ], + [ + -0.1782991737127304, + 0.41890159249305725, + -0.8903542757034302, + -219.0480499267578 + ], + [ + -7.450580596923828e-09, + 0.904853343963623, + 0.4257233142852783, + 204.73793029785156 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_150", + "rotation": 4.71238898038469, + "transform_matrix": [ + [ + -0.16843433678150177, + 0.3706207573413849, + -0.9133839011192322, + -224.7138671875 + ], + [ + -0.9857128858566284, + -0.06333006173372269, + 0.15607506036758423, + 38.39812469482422 + ], + [ + -3.725290298461914e-09, + 0.9266226291656494, + 0.37599262595176697, + 192.5030059814453 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_151", + "rotation": 4.743804906920588, + "transform_matrix": [ + [ + -0.33164289593696594, + -0.5828790068626404, + 0.7417985796928406, + 182.49984741210938 + ], + [ + 0.9434049725532532, + -0.2049042284488678, + 0.2607705295085907, + 64.15567016601562 + ], + [ + 0.0, + 0.7862991690635681, + 0.6178460121154785, + 252.00460815429688 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_152", + "rotation": 4.775220833456486, + "transform_matrix": [ + [ + -0.9977450966835022, + -0.04503186419606209, + 0.04976816475391388, + 12.244136810302734 + ], + [ + 0.0671173557639122, + -0.6694292426109314, + 0.7398375272750854, + 182.01739501953125 + ], + [ + 0.0, + 0.7415095567703247, + 0.6709421873092651, + 265.0675354003906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_153", + "rotation": 4.806636759992384, + "transform_matrix": [ + [ + -0.8970133662223816, + 0.2850300967693329, + -0.33782386779785156, + -83.11259460449219 + ], + [ + -0.4420035779476166, + -0.5784474015235901, + 0.6855883598327637, + 168.6708221435547 + ], + [ + -2.9802322387695312e-08, + 0.7643011808395386, + 0.6448594331741333, + 258.6505432128906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_154", + "rotation": 4.838052686528282, + "transform_matrix": [ + [ + 0.01560020912438631, + 0.3860766887664795, + -0.9223347902297974, + -226.916015625 + ], + [ + -0.9998782873153687, + 0.0060236104764044285, + -0.014390368014574051, + -3.5403685569763184 + ], + [ + 0.0, + 0.9224470853805542, + 0.3861236274242401, + 194.9954833984375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_155", + "rotation": 4.869468613064179, + "transform_matrix": [ + [ + -0.6610383987426758, + -0.3251189589500427, + 0.6762587428092957, + 166.37551879882812 + ], + [ + 0.7503520250320435, + -0.28642037510871887, + 0.5957643389701843, + 146.57200622558594 + ], + [ + 1.4901161193847656e-08, + 0.9012551307678223, + 0.43328857421875, + 206.59915161132812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_156", + "rotation": 4.900884539600078, + "transform_matrix": [ + [ + 0.49132201075553894, + -0.5713410377502441, + 0.657397985458374, + 161.73533630371094 + ], + [ + 0.8709781169891357, + 0.3222956359386444, + -0.3708406686782837, + -91.23551177978516 + ], + [ + 0.0, + 0.7547813057899475, + 0.6559764742851257, + 261.3856201171875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_157", + "rotation": 4.932300466135976, + "transform_matrix": [ + [ + 0.37799349427223206, + -0.33689209818840027, + 0.8623366951942444, + 212.1550750732422 + ], + [ + 0.9258083701133728, + 0.13754794001579285, + -0.35207897424697876, + -86.61969757080078 + ], + [ + -1.4901164746561335e-08, + 0.9314419627189636, + 0.3638897240161896, + 189.52542114257812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_158", + "rotation": 4.9637163926718735, + "transform_matrix": [ + [ + -0.5173206329345703, + -0.2960430681705475, + 0.802955687046051, + 197.54592895507812 + ], + [ + 0.8557915091514587, + -0.17895619571208954, + 0.48538172245025635, + 119.41529083251953 + ], + [ + 0.0, + 0.9382606744766235, + 0.34592896699905396, + 185.1066436767578 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_159", + "rotation": 4.995132319207771, + "transform_matrix": [ + [ + 0.8619253039360046, + 0.23741842806339264, + -0.44801467657089233, + -110.22212982177734 + ], + [ + -0.5070351362228394, + 0.4035951793193817, + -0.7615944743156433, + -187.37013244628906 + ], + [ + 0.0, + 0.8835967183113098, + 0.4682484567165375, + 215.2001190185547 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_160", + "rotation": 5.026548245743669, + "transform_matrix": [ + [ + 0.8022233247756958, + -0.3630498945713043, + 0.47395408153533936, + 116.60382843017578 + ], + [ + 0.5970240235328674, + 0.4878314733505249, + -0.636853814125061, + -156.6809844970703 + ], + [ + 1.4901159417490817e-08, + 0.793860912322998, + 0.6080992817878723, + 249.60670471191406 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_161", + "rotation": 5.057964172279568, + "transform_matrix": [ + [ + 0.9513257145881653, + 0.1114889532327652, + -0.2873142659664154, + -70.68605041503906 + ], + [ + -0.3081870377063751, + 0.3441491425037384, + -0.8868946433067322, + -218.19688415527344 + ], + [ + 0.0, + 0.9322722554206848, + 0.36175739765167236, + 189.0008087158203 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_162", + "rotation": 5.089380098815465, + "transform_matrix": [ + [ + 0.9928355813026428, + 0.022521236911416054, + -0.11734655499458313, + -28.87000846862793 + ], + [ + -0.11948815733194351, + 0.18713055551052094, + -0.975040853023529, + -239.88294982910156 + ], + [ + 0.0, + 0.9820768237113953, + 0.1884808987379074, + 146.3707275390625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_163", + "rotation": 5.120796025351363, + "transform_matrix": [ + [ + 0.7118061184883118, + -0.4378305673599243, + 0.549214243888855, + 135.11961364746094 + ], + [ + 0.7023759484291077, + 0.4437089264392853, + -0.5565880537033081, + -136.93374633789062 + ], + [ + 0.0, + 0.781937837600708, + 0.6233563423156738, + 253.36032104492188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_164", + "rotation": 5.152211951887261, + "transform_matrix": [ + [ + -0.6385250091552734, + -0.12595535814762115, + 0.7592240571975708, + 186.78692626953125 + ], + [ + 0.7696011066436768, + -0.10450302809476852, + 0.6299152970314026, + 154.97393798828125 + ], + [ + 0.0, + 0.9865161776542664, + 0.16366319358348846, + 140.26498413085938 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_165", + "rotation": 5.183627878423159, + "transform_matrix": [ + [ + 0.9970446228981018, + -0.046839822083711624, + 0.06089436262845993, + 14.981441497802734 + ], + [ + 0.0768250823020935, + 0.6078925728797913, + -0.7902939915657043, + -194.4308624267578 + ], + [ + 0.0, + 0.7926364541053772, + 0.6096944808959961, + 249.9991455078125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_166", + "rotation": 5.215043804959057, + "transform_matrix": [ + [ + 0.6911112666130066, + -0.25028476119041443, + 0.6780285239219666, + 166.81092834472656 + ], + [ + 0.7227482795715332, + 0.23932898044586182, + -0.6483489871025085, + -159.50906372070312 + ], + [ + 0.0, + 0.9381253719329834, + 0.3462958335876465, + 185.1968994140625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_167", + "rotation": 5.246459731494955, + "transform_matrix": [ + [ + -0.383230060338974, + -0.2612820267677307, + 0.8859269022941589, + 217.95880126953125 + ], + [ + 0.9236530065536499, + -0.10840772837400436, + 0.3675772249698639, + 90.4326171875 + ], + [ + -7.450581485102248e-09, + 0.9591554999351501, + 0.2828790247440338, + 169.59487915039062 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_168", + "rotation": 5.277875658030853, + "transform_matrix": [ + [ + 0.9812976717948914, + 0.014261583797633648, + -0.19196759164333344, + -47.22853469848633 + ], + [ + -0.192496657371521, + 0.0727018341422081, + -0.9786006808280945, + -240.7587432861328 + ], + [ + 0.0, + 0.9972516894340515, + 0.07408743351697922, + 118.22724914550781 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_169", + "rotation": 5.3092915845667505, + "transform_matrix": [ + [ + -0.9966472387313843, + -0.03016199916601181, + 0.07605599611997604, + 18.71156120300293 + ], + [ + 0.08181846141815186, + -0.3674094080924988, + 0.9264534711837769, + 227.92930603027344 + ], + [ + 0.0, + 0.9295700192451477, + 0.36864542961120605, + 190.6954345703125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_170", + "rotation": 5.340707511102648, + "transform_matrix": [ + [ + -0.19274166226387024, + 0.7190301418304443, + -0.6677171587944031, + -164.27410888671875 + ], + [ + -0.9812496304512024, + -0.14123527705669403, + 0.13115613162517548, + 32.26749038696289 + ], + [ + -7.450581485102248e-09, + 0.6804764270782471, + 0.7327699661254883, + 280.27862548828125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_171", + "rotation": 5.372123437638547, + "transform_matrix": [ + [ + -0.9815046191215515, + -0.02903769537806511, + 0.1892232596874237, + 46.55336380004883 + ], + [ + 0.19143830239772797, + -0.14887632429599762, + 0.9701480269432068, + 238.67918395996094 + ], + [ + 0.0, + 0.9884294271469116, + 0.15168170630931854, + 137.3172607421875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_172", + "rotation": 5.403539364174445, + "transform_matrix": [ + [ + 0.7456570267677307, + 0.46429550647735596, + -0.47793856263160706, + -117.5841064453125 + ], + [ + -0.6663299798965454, + 0.5195701718330383, + -0.5348374843597412, + -131.58258056640625 + ], + [ + -2.9802322387695312e-08, + 0.7172702550888062, + 0.6967950463294983, + 271.4279479980469 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_173", + "rotation": 5.4349552907103424, + "transform_matrix": [ + [ + -0.0434519462287426, + 0.5739791989326477, + -0.8177161812782288, + -201.17738342285156 + ], + [ + -0.9990555047988892, + -0.024964092299342155, + 0.03556495159864426, + 8.749813079833984 + ], + [ + 0.0, + 0.8184891939163208, + 0.5745218396186829, + 241.3458709716797 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_174", + "rotation": 5.46637121724624, + "transform_matrix": [ + [ + -0.8017176389694214, + 0.3035614788532257, + -0.5148780345916748, + -126.67207336425781 + ], + [ + -0.5977030992507935, + -0.4071764051914215, + 0.6906217932701111, + 169.90916442871094 + ], + [ + 0.0, + 0.8614277243614197, + 0.5078800916671753, + 224.95040893554688 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_175", + "rotation": 5.497787143782138, + "transform_matrix": [ + [ + 0.9999262690544128, + -0.00825305376201868, + 0.008916109800338745, + 2.1935720443725586 + ], + [ + 0.01214948296546936, + 0.6792425513267517, + -0.7338132858276367, + -180.5352783203125 + ], + [ + -4.656612873077393e-10, + 0.7338674068450928, + 0.6792927384376526, + 267.1219482421875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_176", + "rotation": 5.529203070318037, + "transform_matrix": [ + [ + 0.06569046527147293, + 0.5464810729026794, + -0.8348912000656128, + -205.40281677246094 + ], + [ + -0.9978400468826294, + 0.03597630187869072, + -0.05496310815215111, + -13.52221393585205 + ], + [ + 0.0, + 0.8366984128952026, + 0.5476639866828918, + 234.73818969726562 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_177", + "rotation": 5.560618996853934, + "transform_matrix": [ + [ + 0.11666400730609894, + 0.617303729057312, + -0.7780267596244812, + -191.41282653808594 + ], + [ + -0.9931714534759521, + 0.07251227647066116, + -0.09139179438352585, + -22.484525680541992 + ], + [ + -3.725290298461914e-09, + 0.7833760976791382, + 0.6215479969978333, + 252.91539001464844 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_178", + "rotation": 5.592034923389832, + "transform_matrix": [ + [ + 0.6966165900230408, + 0.1378452628850937, + -0.7040766477584839, + -173.21939086914062 + ], + [ + -0.7174435257911682, + 0.13384367525577545, + -0.6836377382278442, + -168.19093322753906 + ], + [ + -1.4901160305669237e-08, + 0.9813687205314636, + 0.19213391840457916, + 147.2694549560547 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_179", + "rotation": 5.62345084992573, + "transform_matrix": [ + [ + 0.3366263508796692, + -0.3686448633670807, + 0.8664776682853699, + 213.17384338378906 + ], + [ + 0.9416383504867554, + 0.13178688287734985, + -0.30975717306137085, + -76.20753479003906 + ], + [ + 0.0, + 0.9201809763908386, + 0.3914931118488312, + 196.31649780273438 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_180", + "rotation": 5.654866776461628, + "transform_matrix": [ + [ + 0.9474489688873291, + -0.2211737483739853, + 0.23113363981246948, + 56.86430358886719 + ], + [ + 0.31990715861320496, + 0.6550363898277283, + -0.684533953666687, + -168.4114227294922 + ], + [ + 0.0, + 0.7225021719932556, + 0.6913686394691467, + 270.0929260253906 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_181", + "rotation": 5.686282702997526, + "transform_matrix": [ + [ + 0.29864388704299927, + -0.4853246808052063, + 0.8217492699623108, + 202.1696014404297 + ], + [ + 0.9543646574020386, + 0.15186989307403564, + -0.25714531540870667, + -63.26377868652344 + ], + [ + -7.450580596923828e-09, + 0.8610432147979736, + 0.5085317492485046, + 225.11073303222656 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_182", + "rotation": 5.717698629533424, + "transform_matrix": [ + [ + -0.9288181662559509, + -0.034596625715494156, + 0.3689170181751251, + 90.76225280761719 + ], + [ + 0.370535671710968, + -0.08672302216291428, + 0.9247606992721558, + 227.51284790039062 + ], + [ + -3.725290298461914e-09, + 0.9956315159797668, + 0.09336920082569122, + 122.97101593017578 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_183", + "rotation": 5.749114556069322, + "transform_matrix": [ + [ + 0.13215681910514832, + 0.4298059642314911, + -0.8931972980499268, + -219.74749755859375 + ], + [ + -0.9912288188934326, + 0.05730441212654114, + -0.11908663809299469, + -29.29810905456543 + ], + [ + -3.725290298461914e-09, + 0.9011009335517883, + 0.4336091876029968, + 206.67803955078125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_184", + "rotation": 5.7805304826052195, + "transform_matrix": [ + [ + -0.6572232246398926, + 0.46443620324134827, + -0.593596339225769, + -146.0386199951172 + ], + [ + -0.7536959648132324, + -0.4049885869026184, + 0.517616331577301, + 127.34576416015625 + ], + [ + 1.4901161193847656e-08, + 0.7875806093215942, + 0.6162115931510925, + 251.60250854492188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_185", + "rotation": 5.811946409141117, + "transform_matrix": [ + [ + 0.9955415725708008, + -0.044193338602781296, + 0.08333048224449158, + 20.50125503540039 + ], + [ + 0.0943240225315094, + 0.4664379954338074, + -0.8795104026794434, + -216.38021850585938 + ], + [ + 0.0, + 0.8834491968154907, + 0.4685268700122833, + 215.26861572265625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_186", + "rotation": 5.843362335677016, + "transform_matrix": [ + [ + -0.9897291660308838, + -0.008775109425187111, + 0.14268547296524048, + 35.103973388671875 + ], + [ + 0.14295503497123718, + -0.060753241181373596, + 0.9878628253936768, + 243.0374298095703 + ], + [ + 9.313224635931761e-10, + 0.998114287853241, + 0.061383698135614395, + 115.1018295288086 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_187", + "rotation": 5.874778262212914, + "transform_matrix": [ + [ + -0.7857449650764465, + -0.13116808235645294, + 0.6044830083847046, + 148.7169952392578 + ], + [ + 0.6185505390167236, + -0.16662287712097168, + 0.767875075340271, + 188.915283203125 + ], + [ + -7.4505797087454084e-09, + 0.977257251739502, + 0.2120572179555893, + 152.17105102539062 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_188", + "rotation": 5.906194188748811, + "transform_matrix": [ + [ + 0.96919846534729, + -0.10941320657730103, + 0.22064244747161865, + 54.28321838378906 + ], + [ + 0.24628101289272308, + 0.43057769536972046, + -0.8683021068572998, + -213.6226806640625 + ], + [ + 0.0, + 0.8958970308303833, + 0.44426169991493225, + 209.29879760742188 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_189", + "rotation": 5.937610115284709, + "transform_matrix": [ + [ + -0.9978727102279663, + 0.03839315101504326, + -0.052688226103782654, + -12.962539672851562 + ], + [ + -0.06519266217947006, + -0.5876654982566833, + 0.8064733147621155, + 198.41134643554688 + ], + [ + -1.862645149230957e-09, + 0.8081924319267273, + 0.5889183878898621, + 244.8877410888672 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_190", + "rotation": 5.969026041820607, + "transform_matrix": [ + [ + -0.23671019077301025, + -0.32230478525161743, + 0.9165631532669067, + 225.49603271484375 + ], + [ + 0.9715802669525146, + -0.07852447777986526, + 0.22330614924430847, + 54.93854904174805 + ], + [ + 7.4505797087454084e-09, + 0.9433735013008118, + 0.33173254132270813, + 181.61398315429688 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_191", + "rotation": 6.000441968356506, + "transform_matrix": [ + [ + -0.99993896484375, + -0.008104910142719746, + 0.007510760799050331, + 1.8478233814239502 + ], + [ + 0.011049935594201088, + -0.7334355115890503, + 0.6796692609786987, + 167.21458435058594 + ], + [ + 0.0, + 0.6797106266021729, + 0.7334803342819214, + 280.453369140625 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_192", + "rotation": 6.031857894892403, + "transform_matrix": [ + [ + 0.9598898887634277, + -0.16051584482192993, + 0.22988274693489075, + 56.556549072265625 + ], + [ + 0.28037726879119873, + 0.5495364665985107, + -0.7870185971260071, + -193.62503051757812 + ], + [ + 0.0, + 0.8199050426483154, + 0.5724995732307434, + 240.84832763671875 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_193", + "rotation": 6.063273821428301, + "transform_matrix": [ + [ + -0.9529867172241211, + 0.06630127131938934, + -0.29566970467567444, + -72.74168395996094 + ], + [ + -0.30301228165626526, + -0.20852036774158478, + 0.9298940300941467, + 228.77574157714844 + ], + [ + 0.0, + 0.9757681488990784, + 0.21880723536014557, + 153.8317108154297 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_194", + "rotation": 6.094689747964199, + "transform_matrix": [ + [ + -0.5058012008666992, + -0.4198985993862152, + 0.7535585165023804, + 185.39306640625 + ], + [ + 0.8626501560211182, + -0.24620085954666138, + 0.44183701276779175, + 108.7022705078125 + ], + [ + 1.4901161193847656e-08, + 0.8735389709472656, + 0.48675423860549927, + 219.75296020507812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_195", + "rotation": 6.126105674500097, + "transform_matrix": [ + [ + -0.9106171131134033, + 0.28382691740989685, + -0.30036461353302, + -73.8967514038086 + ], + [ + -0.4132513701915741, + -0.6254248023033142, + 0.661866307258606, + 162.83465576171875 + ], + [ + -1.4901164746561335e-08, + 0.7268328070640564, + 0.6868144273757935, + 268.97247314453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_196", + "rotation": 6.157521601035995, + "transform_matrix": [ + [ + -0.2146778553724289, + 0.4266658425331116, + -0.8785611391067505, + -216.1466522216797 + ], + [ + -0.9766848683357239, + -0.09378225356340408, + 0.19311000406742096, + 47.50959014892578 + ], + [ + -7.450580152834618e-09, + 0.8995338082313538, + 0.4368510842323303, + 207.47561645507812 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_197", + "rotation": 6.188937527571893, + "transform_matrix": [ + [ + -0.7125546932220459, + 0.21310849487781525, + -0.6684688329696655, + -164.4590301513672 + ], + [ + -0.7016165852546692, + -0.21643081307411194, + 0.6788901090621948, + 167.0229034423828 + ], + [ + -1.4901162970204496e-08, + 0.9527550339698792, + 0.3037392497062683, + 174.72698974609375 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_198", + "rotation": 6.220353454107791, + "transform_matrix": [ + [ + -0.2852136790752411, + -0.08789793401956558, + 0.954425036907196, + 234.81094360351562 + ], + [ + 0.9584639668464661, + -0.026156116276979446, + 0.2840118110179901, + 69.87356567382812 + ], + [ + 0.0, + 0.9957860112190247, + 0.09170708805322647, + 122.56209564208984 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./test/r_199", + "rotation": 6.2517693806436885, + "transform_matrix": [ + [ + -0.9995591640472412, + -0.01797894388437271, + 0.02362687513232231, + 5.812765598297119 + ], + [ + 0.029689587652683258, + -0.6052969694137573, + 0.7954458594322205, + 195.69833374023438 + ], + [ + -9.313225746154785e-10, + 0.7957965731620789, + 0.6055640578269958, + 248.9829559326172 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + } + ] +} \ No newline at end of file diff --git a/indoor_house/views/transforms_val.json b/indoor_house/views/transforms_val.json new file mode 100644 index 0000000000000000000000000000000000000000..e0177b12fec1f54cb10b5b81281c54774e796d00 --- /dev/null +++ b/indoor_house/views/transforms_val.json @@ -0,0 +1,6005 @@ +{ + "camera_angle_x": 0.6911112070083618, + "frames": [ + { + "file_path": "./val/r_0", + "rotation": 0.0, + "transform_matrix": [ + [ + 0.9998266100883484, + -0.004436340648680925, + 0.0180882066488266, + 4.0 + ], + [ + 0.01862429454922676, + 0.23816047608852386, + -0.9710472226142883, + -214.73599243164062 + ], + [ + 4.656612873077393e-10, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_1", + "rotation": 0.031415926535897934, + "transform_matrix": [ + [ + 0.998748242855072, + -0.011914952658116817, + 0.04858061298727989, + 10.743046760559082 + ], + [ + 0.05002041906118393, + 0.23790360987186432, + -0.9699999094009399, + -214.50437927246094 + ], + [ + -9.313225746154785e-10, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_2", + "rotation": 0.06283185307179587, + "transform_matrix": [ + [ + 0.9966842532157898, + -0.0193818099796772, + 0.07902508229017258, + 17.475492477416992 + ], + [ + 0.08136718720197678, + 0.2374119609594345, + -0.9679953455924988, + -214.06109619140625 + ], + [ + 3.725290298461914e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_3", + "rotation": 0.0942477796076938, + "transform_matrix": [ + [ + 0.9936366677284241, + -0.02682953141629696, + 0.10939154028892517, + 24.190690994262695 + ], + [ + 0.11263363808393478, + 0.23668600618839264, + -0.9650353789329529, + -213.40655517578125 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_4", + "rotation": 0.12566370614359174, + "transform_matrix": [ + [ + 0.9896084070205688, + -0.03425076976418495, + 0.13965004682540894, + 30.882015228271484 + ], + [ + 0.1437889188528061, + 0.23572643101215363, + -0.9611231684684753, + -212.54141235351562 + ], + [ + 3.725290742551124e-09, + 0.9712156653404236, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_5", + "rotation": 0.15707963267948966, + "transform_matrix": [ + [ + 0.9846035242080688, + -0.04163822531700134, + 0.16977077722549438, + 37.54286575317383 + ], + [ + 0.17480233311653137, + 0.23453432321548462, + -0.956262469291687, + -211.4665069580078 + ], + [ + -3.7252898543727042e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_6", + "rotation": 0.1884955592153876, + "transform_matrix": [ + [ + 0.9786270260810852, + -0.0489845871925354, + 0.19972389936447144, + 44.16666030883789 + ], + [ + 0.20564322173595428, + 0.23311074078083038, + -0.9504578113555908, + -210.18289184570312 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_7", + "rotation": 0.21991148575128552, + "transform_matrix": [ + [ + 0.9716847538948059, + -0.05628259852528572, + 0.22947998344898224, + 50.74687194824219 + ], + [ + 0.23628118634223938, + 0.23145703971385956, + -0.9437154531478882, + -208.69187927246094 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_8", + "rotation": 0.25132741228718347, + "transform_matrix": [ + [ + 0.9637835621833801, + -0.06352506577968597, + 0.25900954008102417, + 57.27700424194336 + ], + [ + 0.26668593287467957, + 0.22957496345043182, + -0.9360415935516357, + -206.99490356445312 + ], + [ + -3.725290298461914e-09, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_9", + "rotation": 0.2827433388230814, + "transform_matrix": [ + [ + 0.9549311399459839, + -0.07070483267307281, + 0.28828349709510803, + 63.750606536865234 + ], + [ + 0.2968274652957916, + 0.22746628522872925, + -0.9274440407752991, + -205.09365844726562 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_10", + "rotation": 0.3141592653589793, + "transform_matrix": [ + [ + 0.9451363682746887, + -0.07781484723091125, + 0.31727299094200134, + 70.16130065917969 + ], + [ + 0.3266761600971222, + 0.22513316571712494, + -0.9179311990737915, + -202.99000549316406 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_11", + "rotation": 0.3455751918948773, + "transform_matrix": [ + [ + 0.9344088435173035, + -0.08484804630279541, + 0.34594932198524475, + 76.50274658203125 + ], + [ + 0.3562023639678955, + 0.22257784008979797, + -0.9075124859809875, + -200.68601989746094 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_12", + "rotation": 0.3769911184307752, + "transform_matrix": [ + [ + 0.9227591753005981, + -0.09179753065109253, + 0.3742843270301819, + 82.7686996459961 + ], + [ + 0.3853771388530731, + 0.2198028862476349, + -0.8961981534957886, + -198.18397521972656 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_13", + "rotation": 0.4084070449666731, + "transform_matrix": [ + [ + 0.9101988673210144, + -0.09865640103816986, + 0.40224990248680115, + 88.95296478271484 + ], + [ + 0.41417157649993896, + 0.21681100130081177, + -0.8839994072914124, + -195.48635864257812 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_14", + "rotation": 0.43982297150257105, + "transform_matrix": [ + [ + 0.8967402577400208, + -0.10541791468858719, + 0.42981845140457153, + 95.04944610595703 + ], + [ + 0.4425571858882904, + 0.213605135679245, + -0.870928168296814, + -192.5958251953125 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_15", + "rotation": 0.47123889803846897, + "transform_matrix": [ + [ + 0.8823966979980469, + -0.11207540333271027, + 0.4569629728794098, + 101.05213165283203 + ], + [ + 0.47050613164901733, + 0.21018847823143005, + -0.8569976091384888, + -189.5152130126953 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_16", + "rotation": 0.5026548245743669, + "transform_matrix": [ + [ + 0.8671823740005493, + -0.1186222955584526, + 0.4836564362049103, + 106.95508575439453 + ], + [ + 0.49799075722694397, + 0.20656438171863556, + -0.8422210812568665, + -186.24755859375 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_17", + "rotation": 0.5340707511102649, + "transform_matrix": [ + [ + 0.8511122465133667, + -0.1250520795583725, + 0.5098724961280823, + 112.75247192382812 + ], + [ + 0.524983823299408, + 0.20273645222187042, + -0.8266135454177856, + -182.79612731933594 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_18", + "rotation": 0.5654866776461628, + "transform_matrix": [ + [ + 0.8342021703720093, + -0.13135847449302673, + 0.5355855226516724, + 118.43861389160156 + ], + [ + 0.5514588952064514, + 0.1987084150314331, + -0.8101902008056641, + -179.16429138183594 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_19", + "rotation": 0.5969026041820608, + "transform_matrix": [ + [ + 0.8164686560630798, + -0.13753525912761688, + 0.5607699155807495, + 124.00785064697266 + ], + [ + 0.5773897171020508, + 0.19448430836200714, + -0.7929672002792358, + -175.35562133789062 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_20", + "rotation": 0.6283185307179586, + "transform_matrix": [ + [ + 0.7979296445846558, + -0.14357627928256989, + 0.5854008793830872, + 129.4547119140625 + ], + [ + 0.6027506589889526, + 0.19006825983524323, + -0.7749617695808411, + -171.37393188476562 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_21", + "rotation": 0.6597344572538566, + "transform_matrix": [ + [ + 0.7786030769348145, + -0.14947563409805298, + 0.6094541549682617, + 134.77381896972656 + ], + [ + 0.6275168061256409, + 0.18546463549137115, + -0.7561914920806885, + -167.2230987548828 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_22", + "rotation": 0.6911503837897546, + "transform_matrix": [ + [ + 0.758508026599884, + -0.15522746741771698, + 0.6329060196876526, + 139.9599151611328 + ], + [ + 0.6516636610031128, + 0.18067798018455505, + -0.736674964427948, + -162.9072265625 + ], + [ + 7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_23", + "rotation": 0.7225663103256524, + "transform_matrix": [ + [ + 0.737664520740509, + -0.16082608699798584, + 0.6557332277297974, + 145.00790405273438 + ], + [ + 0.675167441368103, + 0.17571300268173218, + -0.7164313197135925, + -158.4305877685547 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_24", + "rotation": 0.7539822368615504, + "transform_matrix": [ + [ + 0.7160929441452026, + -0.1662660390138626, + 0.6779133677482605, + 149.91278076171875 + ], + [ + 0.698004961013794, + 0.1705746352672577, + -0.6954807043075562, + -153.797607421875 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_25", + "rotation": 0.7853981633974483, + "transform_matrix": [ + [ + 0.693814754486084, + -0.17154185473918915, + 0.6994243860244751, + 154.66970825195312 + ], + [ + 0.7201535105705261, + 0.1652679294347763, + -0.6738438010215759, + -149.01284790039062 + ], + [ + -7.450580152834618e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_26", + "rotation": 0.8168140899333463, + "transform_matrix": [ + [ + 0.6708518862724304, + -0.17664840817451477, + 0.7202451825141907, + 159.27398681640625 + ], + [ + 0.7415914535522461, + 0.15979813039302826, + -0.6515418291091919, + -144.08102416992188 + ], + [ + -7.450581485102248e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_27", + "rotation": 0.8482300164692442, + "transform_matrix": [ + [ + 0.6472269296646118, + -0.18158061802387238, + 0.7403551936149597, + 163.72108459472656 + ], + [ + 0.7622974514961243, + 0.15417061746120453, + -0.6285969018936157, + -139.00701904296875 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_28", + "rotation": 0.8796459430051421, + "transform_matrix": [ + [ + 0.6229631900787354, + -0.18633364140987396, + 0.759734570980072, + 168.00662231445312 + ], + [ + 0.782251238822937, + 0.14839094877243042, + -0.6050315499305725, + -133.7958221435547 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_29", + "rotation": 0.9110618695410401, + "transform_matrix": [ + [ + 0.5980846881866455, + -0.19090275466442108, + 0.7783642411231995, + 172.1263427734375 + ], + [ + 0.8014328479766846, + 0.14246484637260437, + -0.5808692574501038, + -128.4525909423828 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_30", + "rotation": 0.9424777960769379, + "transform_matrix": [ + [ + 0.572615921497345, + -0.19528348743915558, + 0.7962256669998169, + 176.07620239257812 + ], + [ + 0.8198238015174866, + 0.13639813661575317, + -0.5561335682868958, + -122.98258209228516 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_31", + "rotation": 0.9738937226128359, + "transform_matrix": [ + [ + 0.5465821623802185, + -0.19947148859500885, + 0.8133013844490051, + 179.852294921875 + ], + [ + 0.8374055027961731, + 0.13019683957099915, + -0.5308491587638855, + -117.39122009277344 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_32", + "rotation": 1.0053096491487339, + "transform_matrix": [ + [ + 0.5200087428092957, + -0.2034626454114914, + 0.8295745253562927, + 183.45091247558594 + ], + [ + 0.8541609048843384, + 0.12386701256036758, + -0.50504070520401, + -111.68397521972656 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_33", + "rotation": 1.0367255756846316, + "transform_matrix": [ + [ + 0.49292248487472534, + -0.20725300908088684, + 0.845028817653656, + 186.86843872070312 + ], + [ + 0.8700731992721558, + 0.11741502583026886, + -0.4787341058254242, + -105.86656188964844 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_34", + "rotation": 1.0681415022205298, + "transform_matrix": [ + [ + 0.46534955501556396, + -0.21083883941173553, + 0.8596492409706116, + 190.10159301757812 + ], + [ + 0.885127067565918, + 0.1108471006155014, + -0.45195478200912476, + -99.94463348388672 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_35", + "rotation": 1.0995574287564276, + "transform_matrix": [ + [ + 0.437317430973053, + -0.21421658992767334, + 0.8734213709831238, + 193.1471405029297 + ], + [ + 0.8993073105812073, + 0.10416978597640991, + -0.4247295558452606, + -93.92407989501953 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_36", + "rotation": 1.1309733552923256, + "transform_matrix": [ + [ + 0.4088537096977234, + -0.21738295257091522, + 0.8863313794136047, + 196.00204467773438 + ], + [ + 0.9125999808311462, + 0.09738969057798386, + -0.39708513021469116, + -87.81083679199219 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_37", + "rotation": 1.1623892818282235, + "transform_matrix": [ + [ + 0.37998640537261963, + -0.22033478319644928, + 0.8983668088912964, + 198.66354370117188 + ], + [ + 0.924992024898529, + 0.0905134528875351, + -0.3690488040447235, + -81.61092376708984 + ], + [ + 7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_38", + "rotation": 1.1938052083641215, + "transform_matrix": [ + [ + 0.35074421763420105, + -0.22306911647319794, + 0.9095156788825989, + 201.1289825439453 + ], + [ + 0.9364712834358215, + 0.08354790508747101, + -0.3406483232975006, + -75.33048248291016 + ], + [ + -7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_39", + "rotation": 1.2252211349000195, + "transform_matrix": [ + [ + 0.3211559057235718, + -0.22558337450027466, + 0.9197668433189392, + 203.3959197998047 + ], + [ + 0.9470263719558716, + 0.07649991661310196, + -0.3119116425514221, + -68.97569274902344 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_40", + "rotation": 1.2566370614359172, + "transform_matrix": [ + [ + 0.29125064611434937, + -0.2278749942779541, + 0.9291104078292847, + 205.46214294433594 + ], + [ + 0.9566468596458435, + 0.06937641650438309, + -0.2828671634197235, + -62.55283737182617 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_41", + "rotation": 1.2880529879718152, + "transform_matrix": [ + [ + 0.26105788350105286, + -0.22994163632392883, + 0.9375369548797607, + 207.32559204101562 + ], + [ + 0.9653232097625732, + 0.06218443810939789, + -0.253543496131897, + -56.0682487487793 + ], + [ + -3.725290742551124e-09, + 0.9712156653404236, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_42", + "rotation": 1.3194689145077132, + "transform_matrix": [ + [ + 0.23060762882232666, + -0.2317814975976944, + 0.9450383186340332, + 208.98443603515625 + ], + [ + 0.9730468392372131, + 0.0549311488866806, + -0.2239697426557541, + -49.528350830078125 + ], + [ + 3.725290298461914e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_43", + "rotation": 1.3508848410436112, + "transform_matrix": [ + [ + 0.19992969930171967, + -0.23339256644248962, + 0.9516071081161499, + 210.43702697753906 + ], + [ + 0.9798102974891663, + 0.047623611986637115, + -0.1941748559474945, + -42.93954849243164 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_44", + "rotation": 1.3823007675795091, + "transform_matrix": [ + [ + 0.16905444860458374, + -0.23477327823638916, + 0.9572367072105408, + 211.68194580078125 + ], + [ + 0.9856067299842834, + 0.040269073098897934, + -0.16418832540512085, + -36.30836868286133 + ], + [ + -3.725290298461914e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_45", + "rotation": 1.413716694115407, + "transform_matrix": [ + [ + 0.1380123645067215, + -0.23592232167720795, + 0.9619216322898865, + 212.7179718017578 + ], + [ + 0.9904305338859558, + 0.03287479281425476, + -0.1340397745370865, + -29.6413631439209 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_46", + "rotation": 1.4451326206513049, + "transform_matrix": [ + [ + 0.1068340614438057, + -0.23683853447437286, + 0.9656572937965393, + 213.5440673828125 + ], + [ + 0.9942768216133118, + 0.025448067113757133, + -0.10375892370939255, + -22.945098876953125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_47", + "rotation": 1.4765485471872029, + "transform_matrix": [ + [ + 0.07555034756660461, + -0.2375209927558899, + 0.9684399962425232, + 214.159423828125 + ], + [ + 0.9971420764923096, + 0.017996223643422127, + -0.07337567955255508, + -16.226192474365234 + ], + [ + 1.862645149230957e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_48", + "rotation": 1.5079644737231008, + "transform_matrix": [ + [ + 0.04419207200407982, + -0.23796910047531128, + 0.9702668786048889, + 214.56341552734375 + ], + [ + 0.9990231394767761, + 0.010526630096137524, + -0.042920030653476715, + -9.491273880004883 + ], + [ + 9.313225746154785e-10, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_49", + "rotation": 1.5393804002589988, + "transform_matrix": [ + [ + 0.012790177948772907, + -0.23818232119083405, + 0.9711362719535828, + 214.7556610107422 + ], + [ + 0.9999182224273682, + 0.003046643454581499, + -0.012422021478414536, + -2.7469875812530518 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_50", + "rotation": 1.5707963267948966, + "transform_matrix": [ + [ + -0.018624339252710342, + -0.23816047608852386, + 0.9710472226142883, + 214.73599243164062 + ], + [ + 0.9998266100883484, + -0.004436350427567959, + 0.01808824948966503, + 4.000009536743164 + ], + [ + -4.656612873077393e-10, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_51", + "rotation": 1.6022122533307945, + "transform_matrix": [ + [ + -0.050020474940538406, + -0.23790360987186432, + 0.9699999094009399, + 214.50437927246094 + ], + [ + 0.998748242855072, + -0.011914966627955437, + 0.04858066886663437, + 10.743059158325195 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_52", + "rotation": 1.6336281798666925, + "transform_matrix": [ + [ + -0.0813671350479126, + -0.2374119609594345, + 0.9679953455924988, + 214.06109619140625 + ], + [ + 0.9966842532157898, + -0.019381795078516006, + 0.0790250301361084, + 17.475481033325195 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_53", + "rotation": 1.6650441064025905, + "transform_matrix": [ + [ + -0.1126335933804512, + -0.23668602108955383, + 0.9650354385375977, + 213.40655517578125 + ], + [ + 0.9936366081237793, + -0.026829523965716362, + 0.10939151048660278, + 24.19068145751953 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_54", + "rotation": 1.6964600329384885, + "transform_matrix": [ + [ + -0.1437889039516449, + -0.2357264757156372, + 0.9611231684684753, + 212.54141235351562 + ], + [ + 0.9896084666252136, + -0.03425076976418495, + 0.13965001702308655, + 30.882007598876953 + ], + [ + 3.725290742551124e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_55", + "rotation": 1.7278759594743862, + "transform_matrix": [ + [ + -0.17480230331420898, + -0.23453432321548462, + 0.956262469291687, + 211.4665069580078 + ], + [ + 0.9846035242080688, + -0.041638217866420746, + 0.169770747423172, + 37.5428581237793 + ], + [ + -3.7252898543727042e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_56", + "rotation": 1.7592918860102842, + "transform_matrix": [ + [ + -0.20564322173595428, + -0.23311074078083038, + 0.9504578113555908, + 210.18289184570312 + ], + [ + 0.9786270260810852, + -0.0489845871925354, + 0.19972389936447144, + 44.16666030883789 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_57", + "rotation": 1.7907078125461822, + "transform_matrix": [ + [ + -0.23628120124340057, + -0.23145703971385956, + 0.9437154531478882, + 208.69187927246094 + ], + [ + 0.9716847538948059, + -0.05628260225057602, + 0.22947999835014343, + 50.74687576293945 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_58", + "rotation": 1.8221237390820801, + "transform_matrix": [ + [ + -0.26668593287467957, + -0.22957496345043182, + 0.9360415935516357, + 206.99490356445312 + ], + [ + 0.9637834429740906, + -0.06352507323026657, + 0.25900956988334656, + 57.277008056640625 + ], + [ + -3.7252898543727042e-09, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_59", + "rotation": 1.8535396656179781, + "transform_matrix": [ + [ + -0.2968275547027588, + -0.22746630012989044, + 0.9274439811706543, + 205.09364318847656 + ], + [ + 0.9549311399459839, + -0.0707048550248146, + 0.2882835268974304, + 63.750614166259766 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_60", + "rotation": 1.8849555921538759, + "transform_matrix": [ + [ + -0.3266761898994446, + -0.22513318061828613, + 0.9179311990737915, + 202.989990234375 + ], + [ + 0.9451363682746887, + -0.07781485468149185, + 0.31727302074432373, + 70.16130065917969 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_61", + "rotation": 1.9163715186897738, + "transform_matrix": [ + [ + -0.35620230436325073, + -0.22257785499095917, + 0.9075125455856323, + 200.68601989746094 + ], + [ + 0.9344088435173035, + -0.08484803140163422, + 0.34594929218292236, + 76.50273132324219 + ], + [ + 7.450580152834618e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_62", + "rotation": 1.9477874452256718, + "transform_matrix": [ + [ + -0.38537710905075073, + -0.2198028862476349, + 0.8961981534957886, + 198.18397521972656 + ], + [ + 0.9227591753005981, + -0.09179752320051193, + 0.3742842972278595, + 82.76869201660156 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_63", + "rotation": 1.9792033717615698, + "transform_matrix": [ + [ + -0.41417157649993896, + -0.21681100130081177, + 0.8839994072914124, + 195.48635864257812 + ], + [ + 0.9101988673210144, + -0.09865640103816986, + 0.40224990248680115, + 88.95296478271484 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_64", + "rotation": 2.0106192982974678, + "transform_matrix": [ + [ + -0.44255730509757996, + -0.213605135679245, + 0.8709282279014587, + 192.59579467773438 + ], + [ + 0.896740198135376, + -0.10541794449090958, + 0.42981863021850586, + 95.0494613647461 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_65", + "rotation": 2.0420352248333655, + "transform_matrix": [ + [ + -0.4705062508583069, + -0.21018846333026886, + 0.8569974899291992, + 189.51519775390625 + ], + [ + 0.8823966979980469, + -0.11207542568445206, + 0.45696303248405457, + 101.0521469116211 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_66", + "rotation": 2.0734511513692633, + "transform_matrix": [ + [ + -0.4979906380176544, + -0.20656441152095795, + 0.8422211408615112, + 186.24757385253906 + ], + [ + 0.8671824336051941, + -0.11862226575613022, + 0.4836563169956207, + 106.95506286621094 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_67", + "rotation": 2.1048670779051615, + "transform_matrix": [ + [ + -0.5249837636947632, + -0.20273645222187042, + 0.8266136050224304, + 182.796142578125 + ], + [ + 0.8511121869087219, + -0.1250520646572113, + 0.5098724961280823, + 112.7524642944336 + ], + [ + -7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_68", + "rotation": 2.1362830044410597, + "transform_matrix": [ + [ + -0.5514588356018066, + -0.1987084448337555, + 0.8101902008056641, + 179.16429138183594 + ], + [ + 0.8342021703720093, + -0.13135847449302673, + 0.5355854630470276, + 118.4385986328125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_69", + "rotation": 2.1676989309769574, + "transform_matrix": [ + [ + -0.577389657497406, + -0.19448432326316833, + 0.7929672002792358, + 175.3556365966797 + ], + [ + 0.8164687752723694, + -0.1375352442264557, + 0.56076979637146, + 124.0078353881836 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_70", + "rotation": 2.199114857512855, + "transform_matrix": [ + [ + -0.6027505993843079, + -0.19006827473640442, + 0.7749617695808411, + 171.37393188476562 + ], + [ + 0.7979296445846558, + -0.14357627928256989, + 0.5854008197784424, + 129.45469665527344 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_71", + "rotation": 2.230530784048753, + "transform_matrix": [ + [ + -0.6275166869163513, + -0.18546465039253235, + 0.7561914920806885, + 167.2230987548828 + ], + [ + 0.7786030173301697, + -0.14947561919689178, + 0.6094540953636169, + 134.7738037109375 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_72", + "rotation": 2.261946710584651, + "transform_matrix": [ + [ + -0.6516636610031128, + -0.18067798018455505, + 0.736674964427948, + 162.9072265625 + ], + [ + 0.758508026599884, + -0.15522746741771698, + 0.6329060196876526, + 139.9599151611328 + ], + [ + 7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_73", + "rotation": 2.2933626371205493, + "transform_matrix": [ + [ + -0.675167441368103, + -0.17571301758289337, + 0.7164313793182373, + 158.43060302734375 + ], + [ + 0.7376645803451538, + -0.16082608699798584, + 0.6557332277297974, + 145.00790405273438 + ], + [ + -1.4901161193847656e-08, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_74", + "rotation": 2.324778563656447, + "transform_matrix": [ + [ + -0.698004961013794, + -0.1705746352672577, + 0.6954807043075562, + 153.797607421875 + ], + [ + 0.7160929441452026, + -0.1662660390138626, + 0.6779133677482605, + 149.91278076171875 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_75", + "rotation": 2.356194490192345, + "transform_matrix": [ + [ + -0.7201535105705261, + -0.1652679294347763, + 0.6738438010215759, + 149.01284790039062 + ], + [ + 0.693814754486084, + -0.17154185473918915, + 0.6994243860244751, + 154.66970825195312 + ], + [ + -7.450580152834618e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_76", + "rotation": 2.387610416728243, + "transform_matrix": [ + [ + -0.7415914535522461, + -0.15979813039302826, + 0.6515417695045471, + 144.0810089111328 + ], + [ + 0.6708518266677856, + -0.17664842307567596, + 0.7202451825141907, + 159.27398681640625 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_77", + "rotation": 2.419026343264141, + "transform_matrix": [ + [ + -0.762297511100769, + -0.15417060256004333, + 0.6285969018936157, + 139.00701904296875 + ], + [ + 0.6472269296646118, + -0.18158063292503357, + 0.7403552532196045, + 163.72109985351562 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_78", + "rotation": 2.450442269800039, + "transform_matrix": [ + [ + -0.7822512984275818, + -0.14839093387126923, + 0.6050314903259277, + 133.79580688476562 + ], + [ + 0.6229631304740906, + -0.18633365631103516, + 0.7597346305847168, + 168.0066375732422 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_79", + "rotation": 2.4818581963359367, + "transform_matrix": [ + [ + -0.8014329075813293, + -0.14246481657028198, + 0.580869197845459, + 128.45257568359375 + ], + [ + 0.5980846285820007, + -0.19090275466442108, + 0.7783643007278442, + 172.12635803222656 + ], + [ + 7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_80", + "rotation": 2.5132741228718345, + "transform_matrix": [ + [ + -0.8198238611221313, + -0.13639813661575317, + 0.556133508682251, + 122.9825668334961 + ], + [ + 0.5726158618927002, + -0.19528350234031677, + 0.7962257266044617, + 176.0762176513672 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_81", + "rotation": 2.5446900494077327, + "transform_matrix": [ + [ + -0.8374055624008179, + -0.13019680976867676, + 0.5308489799499512, + 117.39119720458984 + ], + [ + 0.546582043170929, + -0.19947150349617004, + 0.8133013844490051, + 179.85231018066406 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_82", + "rotation": 2.5761059759436304, + "transform_matrix": [ + [ + -0.8541609048843384, + -0.12386701256036758, + 0.50504070520401, + 111.68397521972656 + ], + [ + 0.5200087428092957, + -0.2034626454114914, + 0.8295745253562927, + 183.45091247558594 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_83", + "rotation": 2.6075219024795286, + "transform_matrix": [ + [ + -0.8700733184814453, + -0.11741498857736588, + 0.4787338972091675, + 105.86652374267578 + ], + [ + 0.4929223358631134, + -0.20725303888320923, + 0.8450288772583008, + 186.86846923828125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_84", + "rotation": 2.6389378290154264, + "transform_matrix": [ + [ + -0.8851270079612732, + -0.110847108066082, + 0.45195481181144714, + 99.94464874267578 + ], + [ + 0.46534964442253113, + -0.21083880960941315, + 0.859649121761322, + 190.10159301757812 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_85", + "rotation": 2.670353755551324, + "transform_matrix": [ + [ + -0.899307131767273, + -0.1041698157787323, + 0.4247296154499054, + 93.9240951538086 + ], + [ + 0.43731749057769775, + -0.21421658992767334, + 0.8734212517738342, + 193.14712524414062 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_86", + "rotation": 2.7017696820872223, + "transform_matrix": [ + [ + -0.9125999808311462, + -0.09738970547914505, + 0.39708518981933594, + 87.81084442138672 + ], + [ + 0.40885376930236816, + -0.21738295257091522, + 0.8863313794136047, + 196.00204467773438 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_87", + "rotation": 2.73318560862312, + "transform_matrix": [ + [ + -0.9249920845031738, + -0.09051347523927689, + 0.3690488934516907, + 81.6109390258789 + ], + [ + 0.37998655438423157, + -0.22033476829528809, + 0.8983667492866516, + 198.6635284423828 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_88", + "rotation": 2.7646015351590183, + "transform_matrix": [ + [ + -0.9364712834358215, + -0.0835479125380516, + 0.3406483232975006, + 75.33049011230469 + ], + [ + 0.35074424743652344, + -0.22306911647319794, + 0.9095155596733093, + 201.1289825439453 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_89", + "rotation": 2.796017461694916, + "transform_matrix": [ + [ + -0.9470263719558716, + -0.07649992406368256, + 0.3119117021560669, + 68.9757080078125 + ], + [ + 0.32115596532821655, + -0.22558337450027466, + 0.9197668433189392, + 203.3959197998047 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_90", + "rotation": 2.827433388230814, + "transform_matrix": [ + [ + -0.9566468000411987, + -0.06937643140554428, + 0.2828671932220459, + 62.552852630615234 + ], + [ + 0.29125070571899414, + -0.2278749793767929, + 0.9291102886199951, + 205.46212768554688 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_91", + "rotation": 2.858849314766712, + "transform_matrix": [ + [ + -0.9653231501579285, + -0.062184471637010574, + 0.25354358553886414, + 56.06826400756836 + ], + [ + 0.26105797290802, + -0.2299416959285736, + 0.9375369548797607, + 207.32557678222656 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_92", + "rotation": 2.8902652413026098, + "transform_matrix": [ + [ + -0.9730468392372131, + -0.05493113771080971, + 0.22396968305110931, + 49.52833938598633 + ], + [ + 0.23060756921768188, + -0.2317814975976944, + 0.9450383186340332, + 208.98443603515625 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_93", + "rotation": 2.921681167838508, + "transform_matrix": [ + [ + -0.9798102974891663, + -0.04762360081076622, + 0.19417481124401093, + 42.939537048339844 + ], + [ + 0.19992965459823608, + -0.23339256644248962, + 0.9516071081161499, + 210.43702697753906 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_94", + "rotation": 2.9530970943744057, + "transform_matrix": [ + [ + -0.9856067299842834, + -0.04026906192302704, + 0.16418828070163727, + 36.3083610534668 + ], + [ + 0.16905440390110016, + -0.23477327823638916, + 0.9572367072105408, + 211.68194580078125 + ], + [ + -3.725290298461914e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_95", + "rotation": 2.9845130209103035, + "transform_matrix": [ + [ + -0.9904305338859558, + -0.032874785363674164, + 0.1340397298336029, + 29.6413516998291 + ], + [ + 0.13801231980323792, + -0.23592233657836914, + 0.9619216322898865, + 212.7179718017578 + ], + [ + -3.725290298461914e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_96", + "rotation": 3.0159289474462017, + "transform_matrix": [ + [ + -0.9942769408226013, + -0.025448057800531387, + 0.10375888645648956, + 22.945091247558594 + ], + [ + 0.1068340316414833, + -0.23683853447437286, + 0.9656572937965393, + 213.5440673828125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_97", + "rotation": 3.0473448739820994, + "transform_matrix": [ + [ + -0.9971420764923096, + -0.01799621433019638, + 0.0733756348490715, + 16.22618293762207 + ], + [ + 0.07555030286312103, + -0.2375209927558899, + 0.9684399962425232, + 214.159423828125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_98", + "rotation": 3.0787608005179976, + "transform_matrix": [ + [ + -0.9990231394767761, + -0.010526618920266628, + 0.042919985949993134, + 9.491264343261719 + ], + [ + 0.04419202357530594, + -0.23796910047531128, + 0.9702668786048889, + 214.56341552734375 + ], + [ + 9.313225746154785e-10, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_99", + "rotation": 3.1101767270538954, + "transform_matrix": [ + [ + -0.9999182224273682, + -0.003046632744371891, + 0.012421977706253529, + 2.7469780445098877 + ], + [ + 0.012790132313966751, + -0.23818232119083405, + 0.9711362719535828, + 214.7556610107422 + ], + [ + -2.3283062977608182e-10, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_100", + "rotation": 3.141592653589793, + "transform_matrix": [ + [ + -0.9998266100883484, + 0.00443636067211628, + -0.018088290467858315, + -4.00001859664917 + ], + [ + -0.018624382093548775, + -0.23816047608852386, + 0.9710472226142883, + 214.73599243164062 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_101", + "rotation": 3.1730085801256913, + "transform_matrix": [ + [ + -0.998748242855072, + 0.011914975941181183, + -0.048580706119537354, + -10.743067741394043 + ], + [ + -0.05002051219344139, + -0.23790360987186432, + 0.9699999094009399, + 214.50437927246094 + ], + [ + 9.313225746154785e-10, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_102", + "rotation": 3.204424506661589, + "transform_matrix": [ + [ + -0.9966842532157898, + 0.01938183419406414, + -0.07902518659830093, + -17.475515365600586 + ], + [ + -0.08136729151010513, + -0.2374119609594345, + 0.9679953455924988, + 214.06109619140625 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_103", + "rotation": 3.2358404331974873, + "transform_matrix": [ + [ + -0.9936366081237793, + 0.02682950720191002, + -0.10939143598079681, + -24.19066619873047 + ], + [ + -0.11263352632522583, + -0.23668603599071503, + 0.9650353789329529, + 213.40655517578125 + ], + [ + -1.862645149230957e-09, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_104", + "rotation": 3.267256359733385, + "transform_matrix": [ + [ + -0.9896084666252136, + 0.03425075486302376, + -0.13964995741844177, + -30.88199234008789 + ], + [ + -0.14378884434700012, + -0.2357264757156372, + 0.9611231684684753, + 212.54141235351562 + ], + [ + 3.725290742551124e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_105", + "rotation": 3.2986722862692828, + "transform_matrix": [ + [ + -0.9846036434173584, + 0.04163820669054985, + -0.16977067291736603, + -37.542842864990234 + ], + [ + -0.1748022437095642, + -0.234534353017807, + 0.956262469291687, + 211.4665069580078 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_106", + "rotation": 3.330088212805181, + "transform_matrix": [ + [ + -0.9786270260810852, + 0.04898456111550331, + -0.19972385466098785, + -44.16664505004883 + ], + [ + -0.20564311742782593, + -0.233110710978508, + 0.9504579901695251, + 210.1829071044922 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_107", + "rotation": 3.3615041393410787, + "transform_matrix": [ + [ + -0.9716847538948059, + 0.05628257617354393, + -0.22947989404201508, + -50.74686050415039 + ], + [ + -0.23628108203411102, + -0.23145703971385956, + 0.9437154531478882, + 208.69189453125 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_108", + "rotation": 3.392920065876977, + "transform_matrix": [ + [ + -0.9637835621833801, + 0.06352505087852478, + -0.2590094804763794, + -57.27699279785156 + ], + [ + -0.2666858732700348, + -0.22957496345043182, + 0.9360415935516357, + 206.99490356445312 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_109", + "rotation": 3.4243359924128747, + "transform_matrix": [ + [ + -0.9549311399459839, + 0.07070482522249222, + -0.28828346729278564, + -63.7505989074707 + ], + [ + -0.29682743549346924, + -0.22746628522872925, + 0.9274440407752991, + 205.09365844726562 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_110", + "rotation": 3.4557519189487724, + "transform_matrix": [ + [ + -0.9451363682746887, + 0.07781483232975006, + -0.31727299094200134, + -70.16129302978516 + ], + [ + -0.3266761302947998, + -0.22513316571712494, + 0.917931318283081, + 202.99000549316406 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_111", + "rotation": 3.4871678454846706, + "transform_matrix": [ + [ + -0.9344088435173035, + 0.08484804630279541, + -0.34594932198524475, + -76.50274658203125 + ], + [ + -0.3562023639678955, + -0.22257784008979797, + 0.9075124859809875, + 200.68601989746094 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_112", + "rotation": 3.5185837720205684, + "transform_matrix": [ + [ + -0.9227591753005981, + 0.09179753065109253, + -0.3742843270301819, + -82.7686996459961 + ], + [ + -0.3853771388530731, + -0.2198028862476349, + 0.8961981534957886, + 198.18397521972656 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_113", + "rotation": 3.5499996985564666, + "transform_matrix": [ + [ + -0.9101987481117249, + 0.09865641593933105, + -0.40224993228912354, + -88.95296478271484 + ], + [ + -0.4141715168952942, + -0.21681101620197296, + 0.8839994072914124, + 195.48634338378906 + ], + [ + -7.4505792646561986e-09, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_114", + "rotation": 3.5814156250923643, + "transform_matrix": [ + [ + -0.8967403173446655, + 0.10541792213916779, + -0.4298184812068939, + -95.04945373535156 + ], + [ + -0.4425572454929352, + -0.213605135679245, + 0.870928168296814, + 192.5958251953125 + ], + [ + 7.450581485102248e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_115", + "rotation": 3.612831551628262, + "transform_matrix": [ + [ + -0.8823966979980469, + 0.11207540333271027, + -0.4569629430770874, + -101.05213928222656 + ], + [ + -0.4705061614513397, + -0.21018846333026886, + 0.8569974899291992, + 189.5152130126953 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_116", + "rotation": 3.6442474781641603, + "transform_matrix": [ + [ + -0.8671823740005493, + 0.1186222955584526, + -0.4836564362049103, + -106.95508575439453 + ], + [ + -0.49799075722694397, + -0.20656438171863556, + 0.8422210812568665, + 186.24755859375 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_117", + "rotation": 3.675663404700058, + "transform_matrix": [ + [ + -0.8511121869087219, + 0.12505210936069489, + -0.5098726153373718, + -112.75250244140625 + ], + [ + -0.5249839425086975, + -0.20273643732070923, + 0.8266134858131409, + 182.79611206054688 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_118", + "rotation": 3.7070793312359562, + "transform_matrix": [ + [ + -0.8342021107673645, + 0.13135850429534912, + -0.5355855822563171, + -118.4386215209961 + ], + [ + -0.5514589548110962, + -0.1987084299325943, + 0.8101901412010193, + 179.16427612304688 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_119", + "rotation": 3.738495257771854, + "transform_matrix": [ + [ + -0.8164685964584351, + 0.13753527402877808, + -0.5607700347900391, + -124.00787353515625 + ], + [ + -0.5773897767066956, + -0.19448429346084595, + 0.7929672002792358, + 175.35562133789062 + ], + [ + -7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_120", + "rotation": 3.7699111843077517, + "transform_matrix": [ + [ + -0.7979297041893005, + 0.14357627928256989, + -0.5854009985923767, + -129.45474243164062 + ], + [ + -0.6027508974075317, + -0.19006820023059845, + 0.7749616503715515, + 171.37391662597656 + ], + [ + 0.0, + 0.9712156653404236, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_121", + "rotation": 3.80132711084365, + "transform_matrix": [ + [ + -0.7786029577255249, + 0.14947566390037537, + -0.609454333782196, + -134.7738494873047 + ], + [ + -0.6275169849395752, + -0.18546460568904877, + 0.7561913728713989, + 167.2230682373047 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_122", + "rotation": 3.8327430373795477, + "transform_matrix": [ + [ + -0.7585081458091736, + 0.1552274525165558, + -0.632905900478363, + -139.95989990234375 + ], + [ + -0.651663601398468, + -0.18067799508571625, + 0.736674964427948, + 162.90724182128906 + ], + [ + 1.4901161193847656e-08, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_123", + "rotation": 3.864158963915446, + "transform_matrix": [ + [ + -0.7376645803451538, + 0.16082607209682465, + -0.6557331681251526, + -145.0078887939453 + ], + [ + -0.6751673817634583, + -0.17571301758289337, + 0.7164313793182373, + 158.43060302734375 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_124", + "rotation": 3.8955748904513436, + "transform_matrix": [ + [ + -0.7160930633544922, + 0.16626600921154022, + -0.6779131889343262, + -149.9127655029297 + ], + [ + -0.6980048418045044, + -0.17057466506958008, + 0.6954807639122009, + 153.79762268066406 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_125", + "rotation": 3.9269908169872414, + "transform_matrix": [ + [ + -0.6938148736953735, + 0.17154183983802795, + -0.6994243264198303, + -154.66969299316406 + ], + [ + -0.7201534509658813, + -0.1652679443359375, + 0.6738438606262207, + 149.0128631591797 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_126", + "rotation": 3.9584067435231396, + "transform_matrix": [ + [ + -0.6708518862724304, + 0.17664840817451477, + -0.7202451229095459, + -159.2739715576172 + ], + [ + -0.7415913939476013, + -0.15979814529418945, + 0.6515418291091919, + 144.08102416992188 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_127", + "rotation": 3.9898226700590373, + "transform_matrix": [ + [ + -0.6472269892692566, + 0.18158061802387238, + -0.7403551936149597, + -163.72108459472656 + ], + [ + -0.7622974514961243, + -0.15417061746120453, + 0.6285969614982605, + 139.0070343017578 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_128", + "rotation": 4.0212385965949355, + "transform_matrix": [ + [ + -0.622963011264801, + 0.18633365631103516, + -0.7597346305847168, + -168.00665283203125 + ], + [ + -0.7822512984275818, + -0.14839090406894684, + 0.6050313711166382, + 133.79579162597656 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820173740386963, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_129", + "rotation": 4.052654523130833, + "transform_matrix": [ + [ + -0.5980844497680664, + 0.19090278446674347, + -0.778364360332489, + -172.1263885498047 + ], + [ + -0.8014330863952637, + -0.1424647718667984, + 0.5808689594268799, + 128.45254516601562 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_130", + "rotation": 4.084070449666731, + "transform_matrix": [ + [ + -0.5726157426834106, + 0.19528351724147797, + -0.7962258458137512, + -176.07623291015625 + ], + [ + -0.8198239803314209, + -0.1363980919122696, + 0.5561333894729614, + 122.9825439453125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_131", + "rotation": 4.11548637620263, + "transform_matrix": [ + [ + -0.5465822219848633, + 0.19947147369384766, + -0.8133013248443604, + -179.85227966308594 + ], + [ + -0.8374053835868835, + -0.13019686937332153, + 0.530849277973175, + 117.39125061035156 + ], + [ + 7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_132", + "rotation": 4.146902302738527, + "transform_matrix": [ + [ + -0.5200090408325195, + 0.2034626305103302, + -0.8295743465423584, + -183.4508819580078 + ], + [ + -0.8541607856750488, + -0.12386709451675415, + 0.5050409436225891, + 111.68402862548828 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_133", + "rotation": 4.178318229274425, + "transform_matrix": [ + [ + -0.4929226040840149, + 0.20725297927856445, + -0.8450287580490112, + -186.86843872070312 + ], + [ + -0.8700732588768005, + -0.11741503328084946, + 0.47873416543006897, + 105.86658477783203 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_134", + "rotation": 4.209734155810323, + "transform_matrix": [ + [ + -0.4653497338294983, + 0.21083879470825195, + -0.8596491813659668, + -190.10157775878906 + ], + [ + -0.8851269483566284, + -0.1108471229672432, + 0.4519549310207367, + 99.94466400146484 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_135", + "rotation": 4.241150082346221, + "transform_matrix": [ + [ + -0.4373176097869873, + 0.21421657502651215, + -0.8734211921691895, + -193.14712524414062 + ], + [ + -0.8993072509765625, + -0.1041698232293129, + 0.4247296452522278, + 93.92411041259766 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_136", + "rotation": 4.272566008882119, + "transform_matrix": [ + [ + -0.40885382890701294, + 0.21738290786743164, + -0.8863313794136047, + -196.00204467773438 + ], + [ + -0.9125999808311462, + -0.09738970547914505, + 0.3970852494239807, + 87.81085968017578 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_137", + "rotation": 4.303981935418016, + "transform_matrix": [ + [ + -0.37998661398887634, + 0.22033476829528809, + -0.8983667492866516, + -198.6635284423828 + ], + [ + -0.9249919652938843, + -0.09051349759101868, + 0.36904898285865784, + 81.6109619140625 + ], + [ + 7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_138", + "rotation": 4.335397861953915, + "transform_matrix": [ + [ + -0.3507443964481354, + 0.22306910157203674, + -0.9095155000686646, + -201.12896728515625 + ], + [ + -0.9364712238311768, + -0.08354794234037399, + 0.34064844250679016, + 75.33051300048828 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_139", + "rotation": 4.366813788489813, + "transform_matrix": [ + [ + -0.3211560845375061, + 0.22558335959911346, + -0.9197667837142944, + -203.39590454101562 + ], + [ + -0.9470263123512268, + -0.07649995386600494, + 0.31191182136535645, + 68.9757308959961 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_140", + "rotation": 4.39822971502571, + "transform_matrix": [ + [ + -0.2912507653236389, + 0.2278749793767929, + -0.9291103482246399, + -205.46212768554688 + ], + [ + -0.9566468000411987, + -0.06937645375728607, + 0.28286731243133545, + 62.5528678894043 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_141", + "rotation": 4.429645641561609, + "transform_matrix": [ + [ + -0.2610580325126648, + 0.2299416959285736, + -0.9375369548797607, + -207.32557678222656 + ], + [ + -0.9653231501579285, + -0.06218449026346207, + 0.2535436451435089, + 56.068275451660156 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_142", + "rotation": 4.461061568097506, + "transform_matrix": [ + [ + -0.23060765862464905, + 0.2317814975976944, + -0.9450383186340332, + -208.98443603515625 + ], + [ + -0.9730468392372131, + -0.0549311563372612, + 0.22396977245807648, + 49.528358459472656 + ], + [ + 3.725290298461914e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_143", + "rotation": 4.4924774946334045, + "transform_matrix": [ + [ + -0.19992971420288086, + 0.23339256644248962, + -0.9516071081161499, + -210.43702697753906 + ], + [ + -0.9798102974891663, + -0.047623615711927414, + 0.1941748708486557, + 42.939552307128906 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_144", + "rotation": 4.523893421169302, + "transform_matrix": [ + [ + -0.16905447840690613, + 0.23477327823638916, + -0.9572367072105408, + -211.68194580078125 + ], + [ + -0.9856067299842834, + -0.04026908054947853, + 0.16418835520744324, + 36.30837631225586 + ], + [ + -3.725290298461914e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_145", + "rotation": 4.5553093477052, + "transform_matrix": [ + [ + -0.13801242411136627, + 0.23592232167720795, + -0.9619216918945312, + -212.71795654296875 + ], + [ + -0.9904305934906006, + -0.03287480026483536, + 0.13403981924057007, + 29.641368865966797 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_146", + "rotation": 4.586725274241099, + "transform_matrix": [ + [ + -0.10683410614728928, + 0.23683853447437286, + -0.9656572937965393, + -213.5440673828125 + ], + [ + -0.9942768216133118, + -0.02544807828962803, + 0.10375896841287613, + 22.94510841369629 + ], + [ + -1.8626449271863521e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_147", + "rotation": 4.618141200776996, + "transform_matrix": [ + [ + -0.075550377368927, + 0.2375209927558899, + -0.9684399962425232, + -214.159423828125 + ], + [ + -0.99714195728302, + -0.017996234819293022, + 0.07337571680545807, + 16.226200103759766 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_148", + "rotation": 4.649557127312894, + "transform_matrix": [ + [ + -0.044192105531692505, + 0.23796910047531128, + -0.9702668786048889, + -214.56341552734375 + ], + [ + -0.9990231394767761, + -0.010526638478040695, + 0.0429200641810894, + 9.491281509399414 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_149", + "rotation": 4.680973053848792, + "transform_matrix": [ + [ + -0.012790210545063019, + 0.23818232119083405, + -0.9711362719535828, + -214.7556610107422 + ], + [ + -0.9999182224273682, + -0.0030466513708233833, + 0.012422053143382072, + 2.746994733810425 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_150", + "rotation": 4.71238898038469, + "transform_matrix": [ + [ + 0.018624307587742805, + 0.23816047608852386, + -0.9710472226142883, + -214.73599243164062 + ], + [ + -0.9998266100883484, + 0.004436342976987362, + -0.018088217824697495, + -4.000002384185791 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_151", + "rotation": 4.743804906920588, + "transform_matrix": [ + [ + 0.05002044141292572, + 0.23790360987186432, + -0.9699999094009399, + -214.50437927246094 + ], + [ + -0.998748242855072, + 0.011914958246052265, + -0.04858063533902168, + -10.743051528930664 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_152", + "rotation": 4.775220833456486, + "transform_matrix": [ + [ + 0.08136721700429916, + 0.2374119609594345, + -0.9679953455924988, + -214.06109619140625 + ], + [ + -0.9966842532157898, + 0.019381815567612648, + -0.07902511209249496, + -17.475500106811523 + ], + [ + 1.862645149230957e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_153", + "rotation": 4.806636759992384, + "transform_matrix": [ + [ + 0.11263369768857956, + 0.23668600618839264, + -0.9650353789329529, + -213.40655517578125 + ], + [ + -0.9936366677284241, + 0.026829544454813004, + -0.10939159244298935, + -24.190702438354492 + ], + [ + 1.862645371275562e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_154", + "rotation": 4.838052686528282, + "transform_matrix": [ + [ + 0.14378897845745087, + 0.23572643101215363, + -0.9611231684684753, + -212.54141235351562 + ], + [ + -0.9896084070205688, + 0.034250784665346146, + -0.1396501064300537, + -30.88202667236328 + ], + [ + 3.725290742551124e-09, + 0.9712156653404236, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_155", + "rotation": 4.869468613064179, + "transform_matrix": [ + [ + 0.17480240762233734, + 0.2345343381166458, + -0.9562624096870422, + -211.46649169921875 + ], + [ + -0.9846035838127136, + 0.041638247668743134, + -0.16977083683013916, + -37.542877197265625 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_156", + "rotation": 4.900884539600078, + "transform_matrix": [ + [ + 0.20564331114292145, + 0.2331107258796692, + -0.9504578709602356, + -210.18289184570312 + ], + [ + -0.9786270260810852, + 0.04898460581898689, + -0.1997240036725998, + -44.16667938232422 + ], + [ + -3.725290298461914e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_157", + "rotation": 4.932300466135976, + "transform_matrix": [ + [ + 0.23628127574920654, + 0.23145703971385956, + -0.9437154531478882, + -208.69187927246094 + ], + [ + -0.9716847538948059, + 0.05628262087702751, + -0.2294800728559494, + -50.74689483642578 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_158", + "rotation": 4.9637163926718735, + "transform_matrix": [ + [ + 0.2666860520839691, + 0.22957494854927063, + -0.9360415935516357, + -206.99488830566406 + ], + [ + -0.9637834429740906, + 0.06352509558200836, + -0.2590096592903137, + -57.27702331542969 + ], + [ + -3.7252898543727042e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_159", + "rotation": 4.995132319207771, + "transform_matrix": [ + [ + 0.29682764410972595, + 0.22746628522872925, + -0.9274439811706543, + -205.09364318847656 + ], + [ + -0.9549311399459839, + 0.0707048699259758, + -0.2882836163043976, + -63.750633239746094 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_160", + "rotation": 5.026548245743669, + "transform_matrix": [ + [ + 0.32667630910873413, + 0.22513313591480255, + -0.9179311394691467, + -202.989990234375 + ], + [ + -0.945136308670044, + 0.07781487703323364, + -0.3172731399536133, + -70.16133117675781 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_161", + "rotation": 5.057964172279568, + "transform_matrix": [ + [ + 0.35620251297950745, + 0.22257784008979797, + -0.9075124859809875, + -200.68600463867188 + ], + [ + -0.9344088435173035, + 0.0848480835556984, + -0.3459494709968567, + -76.50276947021484 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_162", + "rotation": 5.089380098815465, + "transform_matrix": [ + [ + 0.38537731766700745, + 0.2198028713464737, + -0.8961980938911438, + -198.1839599609375 + ], + [ + -0.9227591156959534, + 0.09179756045341492, + -0.3742844760417938, + -82.76873016357422 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_163", + "rotation": 5.120796025351363, + "transform_matrix": [ + [ + 0.4141717255115509, + 0.21681098639965057, + -0.8839993476867676, + -195.48634338378906 + ], + [ + -0.9101987481117249, + 0.09865645319223404, + -0.4022500813007355, + -88.9530029296875 + ], + [ + 7.450580152834618e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_164", + "rotation": 5.152211951887261, + "transform_matrix": [ + [ + 0.4425574243068695, + 0.2136051207780838, + -0.8709281086921692, + -192.59579467773438 + ], + [ + -0.896740198135376, + 0.10541796684265137, + -0.42981868982315063, + -95.04948425292969 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_165", + "rotation": 5.183627878423159, + "transform_matrix": [ + [ + 0.47050631046295166, + 0.21018844842910767, + -0.8569974303245544, + -189.5151824951172 + ], + [ + -0.8823966383934021, + 0.11207544058561325, + -0.45696309208869934, + -101.05216217041016 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_166", + "rotation": 5.215043804959057, + "transform_matrix": [ + [ + 0.4979909062385559, + 0.20656436681747437, + -0.8422210216522217, + -186.24754333496094 + ], + [ + -0.8671823143959045, + 0.1186223179101944, + -0.48365655541419983, + -106.95511627197266 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_167", + "rotation": 5.246459731494955, + "transform_matrix": [ + [ + 0.5249840021133423, + 0.20273640751838684, + -0.8266133666038513, + -182.79611206054688 + ], + [ + -0.8511120676994324, + 0.12505212426185608, + -0.5098726749420166, + -112.75252532958984 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_168", + "rotation": 5.277875658030853, + "transform_matrix": [ + [ + 0.5514587163925171, + 0.1987084597349167, + -0.8101902604103088, + -179.164306640625 + ], + [ + -0.834202229976654, + 0.13135844469070435, + -0.535585343837738, + -118.4385757446289 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_169", + "rotation": 5.3092915845667505, + "transform_matrix": [ + [ + 0.5773895382881165, + 0.19448435306549072, + -0.7929673790931702, + -175.3556671142578 + ], + [ + -0.8164688944816589, + 0.1375352144241333, + -0.5607697367668152, + -124.0078125 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_170", + "rotation": 5.340707511102648, + "transform_matrix": [ + [ + 0.6027505397796631, + 0.1900682896375656, + -0.7749618887901306, + -171.37396240234375 + ], + [ + -0.7979297637939453, + 0.1435762494802475, + -0.5854007601737976, + -129.45468139648438 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_171", + "rotation": 5.372123437638547, + "transform_matrix": [ + [ + 0.6275166273117065, + 0.18546468019485474, + -0.756191611289978, + -167.22311401367188 + ], + [ + -0.7786031365394592, + 0.1494756042957306, + -0.6094540357589722, + -134.77377319335938 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017970085144, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_172", + "rotation": 5.403539364174445, + "transform_matrix": [ + [ + 0.651663601398468, + 0.18067799508571625, + -0.7366750240325928, + -162.90725708007812 + ], + [ + -0.7585082054138184, + 0.1552274376153946, + -0.632905900478363, + -139.95989990234375 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_173", + "rotation": 5.4349552907103424, + "transform_matrix": [ + [ + 0.6751673221588135, + 0.17571303248405457, + -0.7164314389228821, + -158.4306182861328 + ], + [ + -0.7376646399497986, + 0.16082605719566345, + -0.6557331085205078, + -145.00787353515625 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_174", + "rotation": 5.46637121724624, + "transform_matrix": [ + [ + 0.6980049014091492, + 0.17057465016841888, + -0.6954807639122009, + -153.79763793945312 + ], + [ + -0.716093122959137, + 0.16626599431037903, + -0.6779131889343262, + -149.9127655029297 + ], + [ + -7.450582373280668e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_175", + "rotation": 5.497787143782138, + "transform_matrix": [ + [ + 0.7201533317565918, + 0.1652679592370987, + -0.6738438606262207, + -149.0128631591797 + ], + [ + -0.6938148140907288, + 0.17154183983802795, + -0.6994242668151855, + -154.669677734375 + ], + [ + -7.450580152834618e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_176", + "rotation": 5.529203070318037, + "transform_matrix": [ + [ + 0.7415913939476013, + 0.15979813039302826, + -0.6515418887138367, + -144.08103942871094 + ], + [ + -0.6708519458770752, + 0.17664837837219238, + -0.7202451229095459, + -159.2739715576172 + ], + [ + -7.450581485102248e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_177", + "rotation": 5.560618996853934, + "transform_matrix": [ + [ + 0.7622973918914795, + 0.15417063236236572, + -0.62859708070755, + -139.00704956054688 + ], + [ + -0.6472271084785461, + 0.1815805733203888, + -0.7403551340103149, + -163.7210693359375 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_178", + "rotation": 5.592034923389832, + "transform_matrix": [ + [ + 0.7822511792182922, + 0.1483909636735916, + -0.6050316095352173, + -133.79583740234375 + ], + [ + -0.6229632496833801, + 0.18633362650871277, + -0.7597345113754272, + -168.00660705566406 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_179", + "rotation": 5.62345084992573, + "transform_matrix": [ + [ + 0.8014328479766846, + 0.14246487617492676, + -0.5808693170547485, + -128.45260620117188 + ], + [ + -0.5980848073959351, + 0.1909027397632599, + -0.7783641219139099, + -172.12632751464844 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_180", + "rotation": 5.654866776461628, + "transform_matrix": [ + [ + 0.8198237419128418, + 0.13639815151691437, + -0.5561336278915405, + -122.98258972167969 + ], + [ + -0.5726159811019897, + 0.19528347253799438, + -0.7962256073951721, + -176.07618713378906 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_181", + "rotation": 5.686282702997526, + "transform_matrix": [ + [ + 0.8374055027961731, + 0.13019683957099915, + -0.5308491587638855, + -117.39122009277344 + ], + [ + -0.5465821623802185, + 0.19947148859500885, + -0.8133013844490051, + -179.852294921875 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_182", + "rotation": 5.717698629533424, + "transform_matrix": [ + [ + 0.8541609048843384, + 0.12386705726385117, + -0.5050408244132996, + -111.68399810791016 + ], + [ + -0.52000892162323, + 0.2034626454114914, + -0.8295744061470032, + -183.45089721679688 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_183", + "rotation": 5.749114556069322, + "transform_matrix": [ + [ + 0.8700733184814453, + 0.11741500347852707, + -0.47873398661613464, + -105.86654663085938 + ], + [ + -0.49292245507240295, + 0.20725302398204803, + -0.845028817653656, + -186.8684539794922 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_184", + "rotation": 5.7805304826052195, + "transform_matrix": [ + [ + 0.885127067565918, + 0.1108471006155014, + -0.45195478200912476, + -99.94463348388672 + ], + [ + -0.46534955501556396, + 0.21083883941173553, + -0.8596492409706116, + -190.10159301757812 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_185", + "rotation": 5.811946409141117, + "transform_matrix": [ + [ + 0.8993073105812073, + 0.10416978597640991, + -0.4247295558452606, + -93.92407989501953 + ], + [ + -0.437317430973053, + 0.21421658992767334, + -0.8734213709831238, + -193.1471405029297 + ], + [ + -7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_186", + "rotation": 5.843362335677016, + "transform_matrix": [ + [ + 0.9125999808311462, + 0.09738968312740326, + -0.3970851004123688, + -87.81082916259766 + ], + [ + -0.408853679895401, + 0.21738295257091522, + -0.8863313794136047, + -196.00204467773438 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_187", + "rotation": 5.874778262212914, + "transform_matrix": [ + [ + 0.924992024898529, + 0.0905134528875351, + -0.3690488040447235, + -81.61092376708984 + ], + [ + -0.37998640537261963, + 0.22033478319644928, + -0.8983668088912964, + -198.66354370117188 + ], + [ + 7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_188", + "rotation": 5.906194188748811, + "transform_matrix": [ + [ + 0.9364712834358215, + 0.08354790508747101, + -0.3406483232975006, + -75.33048248291016 + ], + [ + -0.35074421763420105, + 0.22306911647319794, + -0.9095156788825989, + -201.1289825439453 + ], + [ + -7.4505797087454084e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_189", + "rotation": 5.937610115284709, + "transform_matrix": [ + [ + 0.9470263719558716, + 0.07649991661310196, + -0.3119116425514221, + -68.97569274902344 + ], + [ + -0.3211559057235718, + 0.22558337450027466, + -0.9197668433189392, + -203.3959197998047 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_190", + "rotation": 5.969026041820607, + "transform_matrix": [ + [ + 0.9566468596458435, + 0.06937641650438309, + -0.2828671634197235, + -62.55283737182617 + ], + [ + -0.29125064611434937, + 0.2278749942779541, + -0.9291104078292847, + -205.46214294433594 + ], + [ + 7.450580596923828e-09, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_191", + "rotation": 6.000441968356506, + "transform_matrix": [ + [ + 0.9653231501579285, + 0.062184445559978485, + -0.2535434663295746, + -56.06824493408203 + ], + [ + -0.26105785369873047, + 0.2299416959285736, + -0.9375369548797607, + -207.32559204101562 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_192", + "rotation": 6.031857894892403, + "transform_matrix": [ + [ + 0.9730469584465027, + 0.05493111535906792, + -0.22396959364414215, + -49.5283203125 + ], + [ + -0.2306075096130371, + 0.2317814975976944, + -0.9450383186340332, + -208.98443603515625 + ], + [ + -3.725290742551124e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_193", + "rotation": 6.063273821428301, + "transform_matrix": [ + [ + 0.979810357093811, + 0.047623567283153534, + -0.19417472183704376, + -42.93952178955078 + ], + [ + -0.19992958009243011, + 0.23339250683784485, + -0.9516071081161499, + -210.43704223632812 + ], + [ + 0.0, + 0.9712156653404236, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_194", + "rotation": 6.094689747964199, + "transform_matrix": [ + [ + 0.9856067895889282, + 0.04026903212070465, + -0.1641881763935089, + -36.30834197998047 + ], + [ + -0.169054314494133, + 0.23477327823638916, + -0.957236647605896, + -211.6819610595703 + ], + [ + 3.725290742551124e-09, + 0.9712157249450684, + 0.23820175230503082, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_195", + "rotation": 6.126105674500097, + "transform_matrix": [ + [ + 0.9904305338859558, + 0.03287476301193237, + -0.13403964042663574, + -29.641332626342773 + ], + [ + -0.13801223039627075, + 0.23592233657836914, + -0.9619216322898865, + -212.7179718017578 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_196", + "rotation": 6.157521601035995, + "transform_matrix": [ + [ + 0.9942769408226013, + 0.025448037311434746, + -0.103758804500103, + -22.945072174072266 + ], + [ + -0.10683394968509674, + 0.23683853447437286, + -0.9656572937965393, + -213.5440673828125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_197", + "rotation": 6.188937527571893, + "transform_matrix": [ + [ + 0.9971420764923096, + 0.01799619570374489, + -0.07337555289268494, + -16.226165771484375 + ], + [ + -0.07555022835731506, + 0.2375209927558899, + -0.9684399366378784, + -214.159423828125 + ], + [ + 0.0, + 0.9712157249450684, + 0.23820176720619202, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_198", + "rotation": 6.220353454107791, + "transform_matrix": [ + [ + 0.9990231394767761, + 0.010526597499847412, + -0.04291990026831627, + -9.49124526977539 + ], + [ + -0.044191937893629074, + 0.23796910047531128, + -0.9702668786048889, + -214.56341552734375 + ], + [ + 9.313225746154785e-10, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + }, + { + "file_path": "./val/r_199", + "rotation": 6.2517693806436885, + "transform_matrix": [ + [ + 0.9999182820320129, + 0.003046611323952675, + -0.01242189109325409, + -2.7469592094421387 + ], + [ + -0.012790043838322163, + 0.23818230628967285, + -0.9711362719535828, + -214.75567626953125 + ], + [ + 0.0, + 0.9712157249450684, + 0.2382017821073532, + 122.67559814453125 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + } + ] +} \ No newline at end of file diff --git a/indoor_house/views/val/r_1.png b/indoor_house/views/val/r_1.png new file mode 100644 index 0000000000000000000000000000000000000000..fe333435e1d78b1fc519e26c2ccb4248ca11f3cd --- /dev/null +++ b/indoor_house/views/val/r_1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a1c21b2bbeabde2130ab4282f5b2f679add0e84a7835f221d6c0fd15ae3a10 +size 994227 diff --git a/indoor_house/views/val/r_100.png b/indoor_house/views/val/r_100.png new file mode 100644 index 0000000000000000000000000000000000000000..eca02c65fdca7902064c517340b903df431f73a3 --- /dev/null +++ b/indoor_house/views/val/r_100.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21fdd4f16b6d6ef85b533ff4d5d384df66a8559d11388b59fca55be0f10bb89 +size 868110 diff --git a/indoor_house/views/val/r_101.png b/indoor_house/views/val/r_101.png new file mode 100644 index 0000000000000000000000000000000000000000..f88323a238e8d7570036d3e9d9df1fcd3aa08507 --- /dev/null +++ b/indoor_house/views/val/r_101.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8338058d60564d16cb453dd473613c22aeae1214fb2d8d218e128a2a34e9ea +size 882236 diff --git a/indoor_house/views/val/r_103.png b/indoor_house/views/val/r_103.png new file mode 100644 index 0000000000000000000000000000000000000000..ce8bbb64198e4759497f6f039162844ee873b1d1 --- /dev/null +++ b/indoor_house/views/val/r_103.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f58583f23a9c4fbe152e822b6342bea1a4e1f2cfcb458e191321ef68f256c75 +size 909901 diff --git a/indoor_house/views/val/r_104.png b/indoor_house/views/val/r_104.png new file mode 100644 index 0000000000000000000000000000000000000000..a0b5fdf202cf75ea55454565bb53e5733f1a3bd7 --- /dev/null +++ b/indoor_house/views/val/r_104.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c455a784056c6ba5520ee451d8a82471370b61eaab70c429ddfd8bd30cc4f131 +size 911598 diff --git a/indoor_house/views/val/r_105.png b/indoor_house/views/val/r_105.png new file mode 100644 index 0000000000000000000000000000000000000000..9d32ee2a1dc64fd01bd7e2e92fda292d13726197 --- /dev/null +++ b/indoor_house/views/val/r_105.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811d756d403259bf894b39b714aa8de40a8a1ed83a0228bd12325b6d224ed1a8 +size 925284 diff --git a/indoor_house/views/val/r_106.png b/indoor_house/views/val/r_106.png new file mode 100644 index 0000000000000000000000000000000000000000..6b48863f08ced7f499f8bcaa8efb153943704c4f --- /dev/null +++ b/indoor_house/views/val/r_106.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b76188f2404072985c9bc92246a287b73f5fbe51e011a3f8f3513ee1312b9fb8 +size 933219 diff --git a/indoor_house/views/val/r_108.png b/indoor_house/views/val/r_108.png new file mode 100644 index 0000000000000000000000000000000000000000..9eaf249f32079d05157c2c527b808e31485e139c --- /dev/null +++ b/indoor_house/views/val/r_108.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:898051e027c8cab0b0e1d61d6d29e9cf893da92a48d5c23e4dfa7f733a5446f4 +size 958606 diff --git a/indoor_house/views/val/r_109.png b/indoor_house/views/val/r_109.png new file mode 100644 index 0000000000000000000000000000000000000000..7e73a1ed4db70fe8dc4ef3e318423afc7f9b9569 --- /dev/null +++ b/indoor_house/views/val/r_109.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82389b82901214cddec6a45bd98000e5bd9725160f0799d52c1abf3ebf7fd898 +size 963405 diff --git a/indoor_house/views/val/r_111.png b/indoor_house/views/val/r_111.png new file mode 100644 index 0000000000000000000000000000000000000000..d30483aace7e1cfa118106322b3ddd65586fd496 --- /dev/null +++ b/indoor_house/views/val/r_111.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5098b08a952a02f71c25710bc3652805dc59196b63d51c7f11dc4130b4a157 +size 968577 diff --git a/indoor_house/views/val/r_112.png b/indoor_house/views/val/r_112.png new file mode 100644 index 0000000000000000000000000000000000000000..71abfa48feec4cc77c1e3b98d9bd89bbbf7ef6fb --- /dev/null +++ b/indoor_house/views/val/r_112.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3280fccec6d522f656dfded6a71a01095308867630a2b67da8d7fece45015f +size 967849 diff --git a/indoor_house/views/val/r_113.png b/indoor_house/views/val/r_113.png new file mode 100644 index 0000000000000000000000000000000000000000..8ff2fe6d63dc025acdf3d5b7ea2859a9257dac81 --- /dev/null +++ b/indoor_house/views/val/r_113.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e127014039cd7d709a4f2d313116969de3414cde9eee75c128a7e49aa028d6d +size 970357 diff --git a/indoor_house/views/val/r_114.png b/indoor_house/views/val/r_114.png new file mode 100644 index 0000000000000000000000000000000000000000..bfefd3694d72214ffc933ba2cea6f976cadc362b --- /dev/null +++ b/indoor_house/views/val/r_114.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554df44c4de3100af9b180866ea49b4c52cf42f08e0d40658b86b36dd31c0038 +size 971272 diff --git a/indoor_house/views/val/r_116.png b/indoor_house/views/val/r_116.png new file mode 100644 index 0000000000000000000000000000000000000000..090461d9fc0d4df30f6e268dabed3aac106eb394 --- /dev/null +++ b/indoor_house/views/val/r_116.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae408cfddfe3797408d33db8c48b686dc82d4bf638faf6f9e3118ae38507213 +size 975247 diff --git a/indoor_house/views/val/r_117.png b/indoor_house/views/val/r_117.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3d8afd7ecf6599609ad0ddc096b678c21d6b39 --- /dev/null +++ b/indoor_house/views/val/r_117.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea23b2f1867984dec93d927c6eb141b557620627edef1506e3221ee9ffa70745 +size 978226 diff --git a/indoor_house/views/val/r_118.png b/indoor_house/views/val/r_118.png new file mode 100644 index 0000000000000000000000000000000000000000..26bf914caaf7a82486a7a0c99eb871018fd7f856 --- /dev/null +++ b/indoor_house/views/val/r_118.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476a49e67ca4e536f8199c83a68c320c719a6ee2d4349485ad8010e7719ab085 +size 980196 diff --git a/indoor_house/views/val/r_120.png b/indoor_house/views/val/r_120.png new file mode 100644 index 0000000000000000000000000000000000000000..24db09f85ca0c331e042e146b2ad403b5e730eb3 --- /dev/null +++ b/indoor_house/views/val/r_120.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d752543e5c5d778bcf163be0b46e50394716dc2f1d1095e4a7d96422c78d566a +size 988186 diff --git a/indoor_house/views/val/r_121.png b/indoor_house/views/val/r_121.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff83dbde9f58fc1e63f6469bf3576bdc164e9af --- /dev/null +++ b/indoor_house/views/val/r_121.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb61f961eb104b8e423836a8162678a11b437cdc1caca2af8f80abc8e1110d63 +size 991997 diff --git a/indoor_house/views/val/r_124.png b/indoor_house/views/val/r_124.png new file mode 100644 index 0000000000000000000000000000000000000000..3baa5b065967590597c40b7234c6727eb4eb9cde --- /dev/null +++ b/indoor_house/views/val/r_124.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a48c25ca699ad29e17ebdfa81918d45da107e7b7cd78986417aa60877e46fe6 +size 995452 diff --git a/indoor_house/views/val/r_125.png b/indoor_house/views/val/r_125.png new file mode 100644 index 0000000000000000000000000000000000000000..00ffe148b4972678bac76be360029a6acbe60ba7 --- /dev/null +++ b/indoor_house/views/val/r_125.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9fa5332646ec3d0c77f89d3fd974ded6e63e184ab195e30633191bc8f56fcc7 +size 997527 diff --git a/indoor_house/views/val/r_127.png b/indoor_house/views/val/r_127.png new file mode 100644 index 0000000000000000000000000000000000000000..d2e5ac837028098409f05f5445a35a1c27b0936d --- /dev/null +++ b/indoor_house/views/val/r_127.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d4b0a002eefb7b8cfac4adcddb445dac4dffa0569829d6e11edc93f86da34a +size 993464 diff --git a/indoor_house/views/val/r_128.png b/indoor_house/views/val/r_128.png new file mode 100644 index 0000000000000000000000000000000000000000..bc39f2ceb566f3c9fccd7497998b61f04735f87c --- /dev/null +++ b/indoor_house/views/val/r_128.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a3eb2acb70f9b221addb43d41cdbc2a897195ca0ed3e0ba33e0be87411aef9d +size 991985 diff --git a/indoor_house/views/val/r_131.png b/indoor_house/views/val/r_131.png new file mode 100644 index 0000000000000000000000000000000000000000..8f692392997bf126290ee029dd576fabf0d647a5 --- /dev/null +++ b/indoor_house/views/val/r_131.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c6bbadfeb519fedb8bcb06ab11552fb93e6489d46a930399d48b23c6be25a76 +size 1001659 diff --git a/indoor_house/views/val/r_132.png b/indoor_house/views/val/r_132.png new file mode 100644 index 0000000000000000000000000000000000000000..60f3e76f34f6b2426b3f3bffa6412d27911041fe --- /dev/null +++ b/indoor_house/views/val/r_132.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61c154ce313d296764cee56454a2ab4a10916cab13724e6fb94345d90442aae7 +size 1004526 diff --git a/indoor_house/views/val/r_134.png b/indoor_house/views/val/r_134.png new file mode 100644 index 0000000000000000000000000000000000000000..097d86225edc9d8394038aa031dd57671d6b3b5b --- /dev/null +++ b/indoor_house/views/val/r_134.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8418634cbc03198d45f96bcf1420a1f909e1db9769a84ced1a64a574c7702af1 +size 978724 diff --git a/indoor_house/views/val/r_142.png b/indoor_house/views/val/r_142.png new file mode 100644 index 0000000000000000000000000000000000000000..0f8b66ef8fa1d029f623724553bb72c56d3b3b4e --- /dev/null +++ b/indoor_house/views/val/r_142.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e0d735d6cd0561db225b9a68368a87088977ae806a20c7ce1034349b56056e2 +size 855309 diff --git a/indoor_house/views/val/r_143.png b/indoor_house/views/val/r_143.png new file mode 100644 index 0000000000000000000000000000000000000000..88eeec51e1e03716f8325efb030810792a6fdbc8 --- /dev/null +++ b/indoor_house/views/val/r_143.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1288d098d4113af671249093df75d6ed8a506099625baf5cf4ecd9b02ae97f5c +size 854077 diff --git a/indoor_house/views/val/r_144.png b/indoor_house/views/val/r_144.png new file mode 100644 index 0000000000000000000000000000000000000000..70c580c7a6b1644cdff3c2d81ccfbdbf039e09fe --- /dev/null +++ b/indoor_house/views/val/r_144.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814a3f0d37173af42cc776a6dbee46f1201c824674d5694c352a8757e3d3c526 +size 849508 diff --git a/indoor_house/views/val/r_146.png b/indoor_house/views/val/r_146.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7effd6db7063eff4bd8de8ae1380bd3f4bf06c --- /dev/null +++ b/indoor_house/views/val/r_146.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54824737f164e1236b30a54f088ec3e8ed2a84111a92e74975fc8afdc7fa2080 +size 845938 diff --git a/indoor_house/views/val/r_148.png b/indoor_house/views/val/r_148.png new file mode 100644 index 0000000000000000000000000000000000000000..91cdb21666fda09279f1146b9a9dd250802c8466 --- /dev/null +++ b/indoor_house/views/val/r_148.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f6f07bd75683fbb7ab5494684a04fe967d7fd4d26a0f066ece17bea19465d0 +size 849928 diff --git a/indoor_house/views/val/r_152.png b/indoor_house/views/val/r_152.png new file mode 100644 index 0000000000000000000000000000000000000000..29698204db8773e7ff7b60752f96915de354e17c --- /dev/null +++ b/indoor_house/views/val/r_152.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3c8abf9221e1ab8e6a25b186471daec3e8cbc637f6628bf56218b24e46d540 +size 846886 diff --git a/indoor_house/views/val/r_157.png b/indoor_house/views/val/r_157.png new file mode 100644 index 0000000000000000000000000000000000000000..1422d4d4ebf0bea3a3a9092fbd1cb5a4d28e1746 --- /dev/null +++ b/indoor_house/views/val/r_157.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa9061836d61d0f2f9f9b26a25405757bce6db1d11288a9f64397b1b65ebdc0 +size 878553 diff --git a/indoor_house/views/val/r_158.png b/indoor_house/views/val/r_158.png new file mode 100644 index 0000000000000000000000000000000000000000..8af68891a5d254e149f4d8fe00dfd91316242924 --- /dev/null +++ b/indoor_house/views/val/r_158.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47048851404b295b543c8b2baae88a03ca77a8a9540b1ed68dae608380598b57 +size 887918 diff --git a/indoor_house/views/val/r_159.png b/indoor_house/views/val/r_159.png new file mode 100644 index 0000000000000000000000000000000000000000..46050f4b29b9a55a71e7894a9373809b7d987f95 --- /dev/null +++ b/indoor_house/views/val/r_159.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b74ed0329d3718cb22ddedf20fc8cb003038079a6adeb4f30ed99782bbaf3e +size 892791 diff --git a/indoor_house/views/val/r_160.png b/indoor_house/views/val/r_160.png new file mode 100644 index 0000000000000000000000000000000000000000..463f9f5a52e9b50c4bd52a00c3af60f9794d91d7 --- /dev/null +++ b/indoor_house/views/val/r_160.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7b9f53deeacf362300b3b9dbb37282584cd03b9147c457186e1c6c6c418cff +size 901911 diff --git a/indoor_house/views/val/r_162.png b/indoor_house/views/val/r_162.png new file mode 100644 index 0000000000000000000000000000000000000000..5642e3ea04f3cfed79c97e751e4489629834305f --- /dev/null +++ b/indoor_house/views/val/r_162.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82bd993b164a08ac63dc3346654e89db4c4f63f86293960cb3745d9383877d33 +size 912692 diff --git a/indoor_house/views/val/r_163.png b/indoor_house/views/val/r_163.png new file mode 100644 index 0000000000000000000000000000000000000000..5fc064524d543e04e18da5563fd43190469f9b5c --- /dev/null +++ b/indoor_house/views/val/r_163.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2418be200095dd5c881eef836ce5d489551121167ddaef3ddcfcb8348a617873 +size 920389 diff --git a/indoor_house/views/val/r_165.png b/indoor_house/views/val/r_165.png new file mode 100644 index 0000000000000000000000000000000000000000..eb005940f7ad20db5f3dc544c9e29b487fcf2af6 --- /dev/null +++ b/indoor_house/views/val/r_165.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd45e7f31689ae8d9bdbe528ceba541ced1f220afdd53f7b864564d308711cd +size 939742 diff --git a/indoor_house/views/val/r_166.png b/indoor_house/views/val/r_166.png new file mode 100644 index 0000000000000000000000000000000000000000..949af3bf91878ecbcea70274ca1fe79177f1638f --- /dev/null +++ b/indoor_house/views/val/r_166.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:732b79e4281e6e03862c78ce9a36b14b9dafd525d59c8c03add99f33760245c9 +size 946968 diff --git a/indoor_house/views/val/r_168.png b/indoor_house/views/val/r_168.png new file mode 100644 index 0000000000000000000000000000000000000000..8cc1d9b2e52e0cfb22332f88dfd14a86ba82787f --- /dev/null +++ b/indoor_house/views/val/r_168.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f762237ee4452cb92b6b79b85b824d2e9ff42caa01a3d518fa64315a7329792b +size 950277 diff --git a/indoor_house/views/val/r_169.png b/indoor_house/views/val/r_169.png new file mode 100644 index 0000000000000000000000000000000000000000..415bd57e1d29f5fafa4e6df29abb3fd2c0944099 --- /dev/null +++ b/indoor_house/views/val/r_169.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af471ddc6c389080823b2047ac4e8e9d2730aeea9e71c6bf57bb2a5da658bd5 +size 961225 diff --git a/indoor_house/views/val/r_174.png b/indoor_house/views/val/r_174.png new file mode 100644 index 0000000000000000000000000000000000000000..e8bfdf5417e247b04215a632af2c52c5c8bc1379 --- /dev/null +++ b/indoor_house/views/val/r_174.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09055c442f2c09d4b623cb3f1171b6f79ac828ca236f35e2f2b9f632910bf557 +size 985401 diff --git a/indoor_house/views/val/r_175.png b/indoor_house/views/val/r_175.png new file mode 100644 index 0000000000000000000000000000000000000000..ae33bb13b5a49f0c4fa7073f4be9751c5bc9d323 --- /dev/null +++ b/indoor_house/views/val/r_175.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1c9bc2013c8887bd524197396800293c75aff3d61ed19375e8385ad6665497 +size 988357 diff --git a/indoor_house/views/val/r_177.png b/indoor_house/views/val/r_177.png new file mode 100644 index 0000000000000000000000000000000000000000..7019d7a568812ac9c72bcb6504ad78fa37b40ab7 --- /dev/null +++ b/indoor_house/views/val/r_177.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:481e8addfa12519a876364499246a9032c7e856b7db7eae6c28375643822dc29 +size 989478 diff --git a/indoor_house/views/val/r_178.png b/indoor_house/views/val/r_178.png new file mode 100644 index 0000000000000000000000000000000000000000..bdc0055e2705362dbc7ec35881582af31eb83fd4 --- /dev/null +++ b/indoor_house/views/val/r_178.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:488eed23388c724b17e1ee6d49886965ada13c7b48915ca3af8f4863f6d372d7 +size 991243 diff --git a/indoor_house/views/val/r_179.png b/indoor_house/views/val/r_179.png new file mode 100644 index 0000000000000000000000000000000000000000..ea387d675b2dd70892c93629728b3557e4cccdb4 --- /dev/null +++ b/indoor_house/views/val/r_179.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d964e8e5f594e21a3e3a48f65a502addca52c7a79c93848cb5fd1dc914ae0cc +size 995535 diff --git a/indoor_house/views/val/r_18.png b/indoor_house/views/val/r_18.png new file mode 100644 index 0000000000000000000000000000000000000000..ea9925ad2512250056baa60758eecdf482087d6f --- /dev/null +++ b/indoor_house/views/val/r_18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8468b4c1c93658e0c180ef0a8865bfaec329a888b51cb3b659d0a8a7500233bb +size 903424 diff --git a/indoor_house/views/val/r_180.png b/indoor_house/views/val/r_180.png new file mode 100644 index 0000000000000000000000000000000000000000..0d02e34323e2820b15ff1d9a0c3c21a732f4ef75 --- /dev/null +++ b/indoor_house/views/val/r_180.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7bb48dacceb89b46453fcb18156a3adc759fdc7a5f57d70d74c841c9f61dca +size 998306 diff --git a/indoor_house/views/val/r_185.png b/indoor_house/views/val/r_185.png new file mode 100644 index 0000000000000000000000000000000000000000..3449972db38b24f22b73cd175b68a8dad0e730a5 --- /dev/null +++ b/indoor_house/views/val/r_185.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1471957a76c81216f9e2d70dd7744d842c036b8fe7ea5d1cfc34abe783f0323 +size 1023047 diff --git a/indoor_house/views/val/r_186.png b/indoor_house/views/val/r_186.png new file mode 100644 index 0000000000000000000000000000000000000000..2c987d4ea90eddd0bbcf0be46ff994d91413dad2 --- /dev/null +++ b/indoor_house/views/val/r_186.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1de0746d6093b687157de6f19dd11e74314742aef6841591e8898611b5581e +size 1026942 diff --git a/indoor_house/views/val/r_188.png b/indoor_house/views/val/r_188.png new file mode 100644 index 0000000000000000000000000000000000000000..a05369eabe90470a3c548b89c90c89b403809293 --- /dev/null +++ b/indoor_house/views/val/r_188.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713ee07b6de5c082ca6e73a93676e8f79cc6df0f755f67dd3e4e33378197caa0 +size 1026556 diff --git a/indoor_house/views/val/r_191.png b/indoor_house/views/val/r_191.png new file mode 100644 index 0000000000000000000000000000000000000000..ebec84c14bb8f84796283fc2abc2d0f07d92c065 --- /dev/null +++ b/indoor_house/views/val/r_191.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5591297e7f3ab5279c72cdb045f07b3e8f1028bb2fe6d0742ab374b4ba1355a +size 1016890 diff --git a/indoor_house/views/val/r_193.png b/indoor_house/views/val/r_193.png new file mode 100644 index 0000000000000000000000000000000000000000..2c6e54f3ae9e686681adb98adb314b1de4841a82 --- /dev/null +++ b/indoor_house/views/val/r_193.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7871851705ae6a3bd8b962a383609432595fea8133eb236f9932cf9a5b4cef9 +size 1011033 diff --git a/indoor_house/views/val/r_194.png b/indoor_house/views/val/r_194.png new file mode 100644 index 0000000000000000000000000000000000000000..86a33c26ec981d52eacf9682e744196834c51962 --- /dev/null +++ b/indoor_house/views/val/r_194.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4add59a2a1b40956ac7e1126e8e82436f4e9441d1f9c954c267fa2ece863695c +size 1010541 diff --git a/indoor_house/views/val/r_195.png b/indoor_house/views/val/r_195.png new file mode 100644 index 0000000000000000000000000000000000000000..5392842b04b6b855fc20d06e7a083e7923822f30 --- /dev/null +++ b/indoor_house/views/val/r_195.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9b1186df99ce5570e223e0d6115dcad862d227fd71cea496105d24ee049ad2 +size 1010936 diff --git a/indoor_house/views/val/r_196.png b/indoor_house/views/val/r_196.png new file mode 100644 index 0000000000000000000000000000000000000000..01c615a45d23f03bb0fa4ce8641f06616453444d --- /dev/null +++ b/indoor_house/views/val/r_196.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af9a23c1b5b7b52c31f45cad7e3a9e873cfc5798ba4abceb2d6b8ca8df86831 +size 1008345 diff --git a/indoor_house/views/val/r_197.png b/indoor_house/views/val/r_197.png new file mode 100644 index 0000000000000000000000000000000000000000..b5adc2c6c8257a23d823282f073dfa745819a870 --- /dev/null +++ b/indoor_house/views/val/r_197.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe44c971fe87a48565e3ce107fd745b1759661efa1151a1786a4310caf25a511 +size 1006179 diff --git a/indoor_house/views/val/r_198.png b/indoor_house/views/val/r_198.png new file mode 100644 index 0000000000000000000000000000000000000000..a74b28b3a2b54ef404c303ff969e3e7f5c7a3c2f --- /dev/null +++ b/indoor_house/views/val/r_198.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ff6e60d494984e599ec53b678a1e83406b4ac90ac9bf8f607b7a0db1d673c12 +size 1000434 diff --git a/indoor_house/views/val/r_199.png b/indoor_house/views/val/r_199.png new file mode 100644 index 0000000000000000000000000000000000000000..b6146ce22b82fca777cc015874488541a4be3f85 --- /dev/null +++ b/indoor_house/views/val/r_199.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca042b437609c5008f951f39a7fd49827260da833c8fd15287fd2b8a92d0e50 +size 998978 diff --git a/indoor_house/views/val/r_2.png b/indoor_house/views/val/r_2.png new file mode 100644 index 0000000000000000000000000000000000000000..14beaad39efb2d0e3c130cd2cc1d87be41444cba --- /dev/null +++ b/indoor_house/views/val/r_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54304908062b24b97cbdfc67f627f14d58bf14e4fb159f67c78ef3f29aa20555 +size 995454 diff --git a/indoor_house/views/val/r_20.png b/indoor_house/views/val/r_20.png new file mode 100644 index 0000000000000000000000000000000000000000..2c527e29619af84def205ded9cda7feb63ef40bf --- /dev/null +++ b/indoor_house/views/val/r_20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc091429fc1f437eebd77659411024ca8f1dc9d844be8aadaa69a4da0fe8439 +size 882465 diff --git a/indoor_house/views/val/r_21.png b/indoor_house/views/val/r_21.png new file mode 100644 index 0000000000000000000000000000000000000000..d33881161ee02ab82b81306b28ecefc8a29edea0 --- /dev/null +++ b/indoor_house/views/val/r_21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6a7ee87a8b97071658f87705929d97152894d85bfe6147729fdf1aec4bc2fce +size 878084 diff --git a/indoor_house/views/val/r_22.png b/indoor_house/views/val/r_22.png new file mode 100644 index 0000000000000000000000000000000000000000..24effe6f2314e2a580052b7e92493d3e53ac9f8b --- /dev/null +++ b/indoor_house/views/val/r_22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743b4ec18fe8ab6970d968293945b1378784df197b37c75e7ce0ff8d84f8594c +size 879024 diff --git a/indoor_house/views/val/r_23.png b/indoor_house/views/val/r_23.png new file mode 100644 index 0000000000000000000000000000000000000000..4dbc9985a5bb8de9979ccf95ae1aee993c8978a5 --- /dev/null +++ b/indoor_house/views/val/r_23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb44230d6f254d39782062b29ea2c6908312edecfbdc0ce2af3eec0189d4866f +size 877864 diff --git a/indoor_house/views/val/r_24.png b/indoor_house/views/val/r_24.png new file mode 100644 index 0000000000000000000000000000000000000000..052f2b0a5ea136e148241fed43eb3c82e4360a21 --- /dev/null +++ b/indoor_house/views/val/r_24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413b519c9019ff492664667b4a455d04cbb2736647586d0591c06b52f4d05f81 +size 880119 diff --git a/indoor_house/views/val/r_26.png b/indoor_house/views/val/r_26.png new file mode 100644 index 0000000000000000000000000000000000000000..bb32762b9f736a9b330af112a94f94ea00c75fa8 --- /dev/null +++ b/indoor_house/views/val/r_26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4fb90e96480cb4b200bb23ff8e50834f5371853ba1bdc7cef684b9caf449fbd +size 888475 diff --git a/indoor_house/views/val/r_29.png b/indoor_house/views/val/r_29.png new file mode 100644 index 0000000000000000000000000000000000000000..51a154d395f1c9cbaf41fb5faee7bd5cda2b6d3f --- /dev/null +++ b/indoor_house/views/val/r_29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82701e77606a1a13cd89a794f513dfe6519b6d8b5cc7162335233ff948576dca +size 891242 diff --git a/indoor_house/views/val/r_31.png b/indoor_house/views/val/r_31.png new file mode 100644 index 0000000000000000000000000000000000000000..316576d23873e8e129efc81df2749e4367024839 --- /dev/null +++ b/indoor_house/views/val/r_31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50070e60add3e3e0a96bc0e90fd3e5ed3ad3e59c321c758884490d452f063f37 +size 893968 diff --git a/indoor_house/views/val/r_32.png b/indoor_house/views/val/r_32.png new file mode 100644 index 0000000000000000000000000000000000000000..53e41e31d5fcf1648547e03daf57df30b70b0141 --- /dev/null +++ b/indoor_house/views/val/r_32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f594e3cf4beeb3ad4da02b3059ff6cae595d613cb041e3df7b7bce84a0685d7 +size 900671 diff --git a/indoor_house/views/val/r_38.png b/indoor_house/views/val/r_38.png new file mode 100644 index 0000000000000000000000000000000000000000..502cd51cf85975a0415013c87a9d37ce29bc48b6 --- /dev/null +++ b/indoor_house/views/val/r_38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b99245603307d3a742fe818a3002632d4390979a47a5307aa96b8ae58d729c2 +size 917434 diff --git a/indoor_house/views/val/r_39.png b/indoor_house/views/val/r_39.png new file mode 100644 index 0000000000000000000000000000000000000000..92b11726447bcf0097d520634895b88441e9ca17 --- /dev/null +++ b/indoor_house/views/val/r_39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81d7d082aa606f68294c35f0000cc609bc8c6e27324b60a820393735dbb96699 +size 912319 diff --git a/indoor_house/views/val/r_4.png b/indoor_house/views/val/r_4.png new file mode 100644 index 0000000000000000000000000000000000000000..7562bbb890699d5d1abe8f8e3ebc1b90364e292a --- /dev/null +++ b/indoor_house/views/val/r_4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47356958d0e9012e5a2fcd340229aca05d7c9757e233607e2c8b34ae37cdd013 +size 991625 diff --git a/indoor_house/views/val/r_41.png b/indoor_house/views/val/r_41.png new file mode 100644 index 0000000000000000000000000000000000000000..3de2cf1aa17795f3ebf77cc7e6198aaf1db7c13d --- /dev/null +++ b/indoor_house/views/val/r_41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b10ed3631d64a2514e486126ff45d5d552674430d901502f223d8913283bb96 +size 911247 diff --git a/indoor_house/views/val/r_45.png b/indoor_house/views/val/r_45.png new file mode 100644 index 0000000000000000000000000000000000000000..cf747d71fe1cb802636ac240f202c8add3e84a31 --- /dev/null +++ b/indoor_house/views/val/r_45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16034106f4e1b55f142a1d358c383b257b1c8db9d549d5c402b36c87f09c90b1 +size 882944 diff --git a/indoor_house/views/val/r_46.png b/indoor_house/views/val/r_46.png new file mode 100644 index 0000000000000000000000000000000000000000..1b24b4e8430e5dd244e7c2a52d900c769d2591b7 --- /dev/null +++ b/indoor_house/views/val/r_46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbdd9451d53c21b59c1665027968bb1711857230ec2f36aeef7b983db1a0d34f +size 878244 diff --git a/indoor_house/views/val/r_47.png b/indoor_house/views/val/r_47.png new file mode 100644 index 0000000000000000000000000000000000000000..a353fd62e019f2744858ef3c7f6588f1e382fb62 --- /dev/null +++ b/indoor_house/views/val/r_47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9548ed32a41a050332e334d5f2998467b5d011361569256c1dff6c505f9aab3 +size 879148 diff --git a/indoor_house/views/val/r_5.png b/indoor_house/views/val/r_5.png new file mode 100644 index 0000000000000000000000000000000000000000..7dcd27b3b161da42484dbebb8dcc78637538d45c --- /dev/null +++ b/indoor_house/views/val/r_5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d57fb90add01e1900e8a7dae930b84d152b7dc4bd9a444a0bc54d63935d230e9 +size 985528 diff --git a/indoor_house/views/val/r_52.png b/indoor_house/views/val/r_52.png new file mode 100644 index 0000000000000000000000000000000000000000..468867a45c1b837ad9ed1cfdacb72cd64f483573 --- /dev/null +++ b/indoor_house/views/val/r_52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5310d53a83fc62f56044f070b938ae46ad4c72a41e1c5796a76626958f45d2 +size 877583 diff --git a/indoor_house/views/val/r_59.png b/indoor_house/views/val/r_59.png new file mode 100644 index 0000000000000000000000000000000000000000..ac2726c17c9678b9dbff9d825c364ca931f3a697 --- /dev/null +++ b/indoor_house/views/val/r_59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ff633880941f4ea76a43b9394152c202e840750bb813349cdf5fd891e95c87 +size 856299 diff --git a/indoor_house/views/val/r_63.png b/indoor_house/views/val/r_63.png new file mode 100644 index 0000000000000000000000000000000000000000..c7851c9050b0ac0278bceddb7842068a3d64a657 --- /dev/null +++ b/indoor_house/views/val/r_63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b92fbdb0c6236a54f785458933902203758802bb18861f999d5ede7170c7a3 +size 837665 diff --git a/indoor_house/views/val/r_66.png b/indoor_house/views/val/r_66.png new file mode 100644 index 0000000000000000000000000000000000000000..f1dcb4f730828f3895302a91f2819458e28d5a36 --- /dev/null +++ b/indoor_house/views/val/r_66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643aa98623cb8cac4a505a94a64c6a1eda34b8b945cdc249158e039eab33a9a9 +size 828260 diff --git a/indoor_house/views/val/r_68.png b/indoor_house/views/val/r_68.png new file mode 100644 index 0000000000000000000000000000000000000000..fae6f17dc123eb0d2e31b44ddfd3e31e1c7dcb39 --- /dev/null +++ b/indoor_house/views/val/r_68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b754656d8179c2ed77e01d015cb751dcc99a683f0ef11ca1cb93af004195de59 +size 820708 diff --git a/indoor_house/views/val/r_70.png b/indoor_house/views/val/r_70.png new file mode 100644 index 0000000000000000000000000000000000000000..d198c2d52d47e70dfcea01a5f9cc6e7a4898e769 --- /dev/null +++ b/indoor_house/views/val/r_70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237669b97bac52d6c58cf85e4e6fa7ffc7837e4b9a5e13097b4e0b1abacd87fd +size 818559 diff --git a/indoor_house/views/val/r_71.png b/indoor_house/views/val/r_71.png new file mode 100644 index 0000000000000000000000000000000000000000..ed55369a80443a838ac83a34fc214ad1ffb0213e --- /dev/null +++ b/indoor_house/views/val/r_71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8249e2c908d64c255fbbea8af09bcbf06a0e9299617bb4f0cc6d88656297151c +size 819379 diff --git a/indoor_house/views/val/r_72.png b/indoor_house/views/val/r_72.png new file mode 100644 index 0000000000000000000000000000000000000000..0638116f6970152f34d2aa628ae2d033732688f5 --- /dev/null +++ b/indoor_house/views/val/r_72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4aa5abed0b187fc10cab71a9b9df636ac7a6e4d3b2a05e090c9729700a1923 +size 821022 diff --git a/indoor_house/views/val/r_73.png b/indoor_house/views/val/r_73.png new file mode 100644 index 0000000000000000000000000000000000000000..88d97cb13a671d8ddd8817ff32db52c96b9c5625 --- /dev/null +++ b/indoor_house/views/val/r_73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0f682377413beb8c743dcc2af8fa95d148155bf8d2c8dcdcf5581a63cb0589b +size 823459 diff --git a/indoor_house/views/val/r_75.png b/indoor_house/views/val/r_75.png new file mode 100644 index 0000000000000000000000000000000000000000..c7095fe4e478b53be4b7b08d1da4f7b4bd21efab --- /dev/null +++ b/indoor_house/views/val/r_75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac10e993eccd4f82ec5a3c13578be01ad4dab2adb2b835026fe26e8c4a6fe41 +size 823161 diff --git a/indoor_house/views/val/r_76.png b/indoor_house/views/val/r_76.png new file mode 100644 index 0000000000000000000000000000000000000000..3dda51695ceb5abdadd483b131b58d65fa56629e --- /dev/null +++ b/indoor_house/views/val/r_76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fc914e1f7e3b6bdd5d5539dbacb954433ff0c55427b0963d5e1c4205199563 +size 825519 diff --git a/indoor_house/views/val/r_77.png b/indoor_house/views/val/r_77.png new file mode 100644 index 0000000000000000000000000000000000000000..c8e861a48daa7717de3cd15c0980bb7de4f01961 --- /dev/null +++ b/indoor_house/views/val/r_77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bd0d87d7be9ae2f8b0d7c7a8e720ef0c387cb02e98c917e81826992aac3fb3 +size 826151 diff --git a/indoor_house/views/val/r_79.png b/indoor_house/views/val/r_79.png new file mode 100644 index 0000000000000000000000000000000000000000..7019c8798fa3485aca7aa6cd76ce8386bf7c8a98 --- /dev/null +++ b/indoor_house/views/val/r_79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b182c2382a00384b1896a6efc19aa80d8921540058479f16c3f40d1bd714b1da +size 830070 diff --git a/indoor_house/views/val/r_8.png b/indoor_house/views/val/r_8.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7a976822fc55f175ed552922fc7f058fcfe1d1 --- /dev/null +++ b/indoor_house/views/val/r_8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d2ff38b659af6c1211c986612943ee6eefae9cc0ef39cf6c003e335d4300f83 +size 978590 diff --git a/indoor_house/views/val/r_81.png b/indoor_house/views/val/r_81.png new file mode 100644 index 0000000000000000000000000000000000000000..714e0929c64cdeffca2c232ea4e756e1e5ede8ea --- /dev/null +++ b/indoor_house/views/val/r_81.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1c97cb6745002c71f8392452d50de239670397dc8714485b8523dc241e5de4 +size 833127 diff --git a/indoor_house/views/val/r_84.png b/indoor_house/views/val/r_84.png new file mode 100644 index 0000000000000000000000000000000000000000..9e5dd127fc112fd5a56c30c7dd42932fe083d578 --- /dev/null +++ b/indoor_house/views/val/r_84.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ad1782dfd0d2e4c691b930a0b777bf2b7d7d1e9e2b83bb2bd9e3cb4a537c4b +size 832548 diff --git a/indoor_house/views/val/r_85.png b/indoor_house/views/val/r_85.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a22f1ec44b244fda188eca858b63573e21906c --- /dev/null +++ b/indoor_house/views/val/r_85.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2c44f7f56de24ce75b8b612d76db3110bd7f13468745a3add960fa62b25539 +size 833142 diff --git a/indoor_house/views/val/r_88.png b/indoor_house/views/val/r_88.png new file mode 100644 index 0000000000000000000000000000000000000000..12e66503f75d132bf0f3ddacc100847e9f239027 --- /dev/null +++ b/indoor_house/views/val/r_88.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141c354d90e6d84e59b3d3108d0575153f9fa68a55591ea1e9c04cf9fe0b6f71 +size 832067 diff --git a/indoor_house/views/val/r_90.png b/indoor_house/views/val/r_90.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d98705b5e4f1db7a71d402c78f4e0b86217e04 --- /dev/null +++ b/indoor_house/views/val/r_90.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ad2b530881e210158f8e2a5cf2d4181cfb0bc74d67bb5edb29556c423533012 +size 828983 diff --git a/indoor_house/views/val/r_92.png b/indoor_house/views/val/r_92.png new file mode 100644 index 0000000000000000000000000000000000000000..b8ffb79ff475b8f7c2362c445de42b2141183ec7 --- /dev/null +++ b/indoor_house/views/val/r_92.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46877e2020ed4b2fb3863259892275a8828700eb694ed4cca61257cf5b80ccb3 +size 827579 diff --git a/indoor_house/views/val/r_93.png b/indoor_house/views/val/r_93.png new file mode 100644 index 0000000000000000000000000000000000000000..2e3d56cb922b394a6bb9ed277d9d72a510725a67 --- /dev/null +++ b/indoor_house/views/val/r_93.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aafd7327d2bb172f425d23546b026157dab1800de05e13e1a2e8364e1e6613a9 +size 826988 diff --git a/indoor_house/views/val/r_95.png b/indoor_house/views/val/r_95.png new file mode 100644 index 0000000000000000000000000000000000000000..527b23900c8615e0d6cf8e38eeddbc6a611dd050 --- /dev/null +++ b/indoor_house/views/val/r_95.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e621474c6fd437f8e0a17665e7252416f80f2d48ea536b42ec25f382d78442c4 +size 822942 diff --git a/indoor_house/views/val/r_97.png b/indoor_house/views/val/r_97.png new file mode 100644 index 0000000000000000000000000000000000000000..aef55f1ef2ad22f2a19d82782d0e1e1da2be472a --- /dev/null +++ b/indoor_house/views/val/r_97.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b81522a34ebac6ae1d9518e769126ca36275c8ed6ab9fd293e8aeee93e12827b +size 837355